Re: [MacRuby-devel] MacRuby promise delivered

2011-11-25 Thread Michael Johnston
Thanks Andy, I'll have a look Sent from my iPhone On 2011-11-25, at 5:35, Andy Park wrote: > I've been hacking on a fork of Interactive-MacRuby since a month or so ago, > and as I now think I won't be able to find the time to distill my experience > to a more presentable form any time soon, I

Re: [MacRuby-devel] MacRuby promise delivered

2011-11-25 Thread Andy Park
I've been hacking on a fork of Interactive-MacRuby since a month or so ago, and as I now think I won't be able to find the time to distill my experience to a more presentable form any time soon, I'll just share my not-so-tidy work in progress and my current repl-based workflow in case others may

Re: [MacRuby-devel] MacRuby promise delivered

2011-11-24 Thread Jordan K. Hubbard
On Nov 24, 2011, at 4:28 PM, Michael Johnston wrote: > I think the first step to using it would be to make a target to compile as a > framework and make it cocoa pod-able. Then wiring up so can launch in app > terminals with the app delegate or a particular window controller as top > level obj

Re: [MacRuby-devel] MacRuby promise delivered

2011-11-24 Thread Michael Johnston
Thanks Eloy. I was playing with Interactive-MacRuby a bit last night. I think the first step to using it would be to make a target to compile as a framework and make it cocoa pod-able. Then wiring up so can launch in app terminals with the app delegate or a particular window controller as top le

Re: [MacRuby-devel] MacRuby promise delivered

2011-11-24 Thread Eloy Duran
And an ‘example’ of what it looks like :) http://www.ustream.tv/recorded/16057682/highlight/188706 On 24 nov. 2011, at 02:52, Michael Johnston wrote: > I added basic fsevents reloading in my fork > (https://github.com/lastobelus/MacRubyReload) > > Should change to check an environment var firs

Re: [MacRuby-devel] MacRuby promise delivered

2011-11-24 Thread Eloy Duran
Here’s a GUI approach to using macirb: https://github.com/alloy/Interactive-MacRuby I didn’t have time to finish it yet, but it might still be useful. On 24 nov. 2011, at 02:52, Michael Johnston wrote: > I added basic fsevents reloading in my fork > (https://github.com/lastobelus/MacRubyReload

Re: [MacRuby-devel] MacRuby promise delivered

2011-11-23 Thread Michael Johnston
I added basic fsevents reloading in my fork (https://github.com/lastobelus/MacRubyReload) Should change to check an environment var first for list of directories to watch, and otherwise use project root. For now I just grabbed the dir of the rb_main.loc.txt entry. I'm curious to experiment wit

Re: [MacRuby-devel] MacRuby promise delivered

2011-11-15 Thread Matt Aimonetti
This is great Jean-Denis, thanks a lot. A few notes, if you look at: https://github.com/jdmuys/MacRubyReload/blob/master/MacRubyReload/AppDelegate.rb#L17-18 You don't need to end your lines of code by a semi colon and when using puts, a return carriage is automatically used (use print if you don't

[MacRuby-devel] MacRuby promise delivered

2011-11-15 Thread Jean-Denis MUYS
Following up on my Friday suggestion, I am happy to announce that I implemented a first version a Xcode MacRuby projects that dynamically reloads Ruby source code into a running application, allowing for a very dynamic incremental programming style. go to https://github.com/jdmuys/MacRubyReload