Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Joshua Ballanco
On Thu, Jan 20, 2011 at 10:58 AM, Martin Hawkins wrote: > Back to Grand Central Dispatch which was really the topic of the post > - Dispatch and Dispatch::Group are available from macirb, but > Dispatch::Job is not, so I suppose I'm really saying that in trying to > discover what is available re G

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Matt Aimonetti
Since i'm writing the book in asciidoc and convert it to docbook, I can do a simple diff of the svn revisions and post it somewhere. I'll make sure to do that for next release and also make sure to add a link to it in the email send from O'Reilly. Thanks for your feedback guys. - Matt On Thu, Ja

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Martin Hawkins
Matt, I don't think that there's anything more anyone could reasonably expect you to do! I'm now following you on Twitter so I'll catch any future announcements that way. A diff would be an excellent offering. On Jan 20, 7:12 pm, Arron Mabrey wrote: > Matt, > > I would really love to see a diff

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Arron Mabrey
Matt, I would really love to see a diff put up form now on if that is passible. I have tried doing my own diffs previously with other books and the results where pretty nasty to say the least. :-) Arron Mabrey Sent from my iPhone On Jan 20, 2011, at 12:56 PM, Matt Aimonetti wrote: > O'Reill

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Matt Aimonetti
O'Reilly sent an email about the update yesterday (a bit late but still), I posted an update on my blog: http://merbist.com and on twitter via @merbist which was retweeted by @macruby not sure what more I could do ;) Suggestions welcome tho. I'd like to make sure people know when I push an update

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Joel Reymont
I bought from O'Reilly and got an email about an update just yesterday. I bought the electronic version, though. On Jan 20, 2011, at 5:48 PM, Martin Hawkins wrote: > Thanks, Matt; so I see. I must be one of the few people who have paid > the full price for the book, expecting O'Reilly to let me

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Martin Hawkins
Thanks, Matt; so I see. I must be one of the few people who have paid the full price for the book, expecting O'Reilly to let me know when updates were available, like The Pragmatic Bookshelf people do. Apparently not! Very helpful book nonetheless ! On Jan 20, 5:27 pm, Matt Aimonetti wrote: > No

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Matt Aimonetti
Note that I also updated the book to reflect the change. - Matt Sent from my iPhone On Jan 20, 2011, at 8:07, "Ernest N. Prabhakar, Ph.D." wrote: > Hi Martin, > > On Jan 20, 2011, at 7:58 AM, Martin Hawkins wrote: >> The Ruby programming Language - David Flanagan and Yukihiro Matsumoto >> Th

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Ernest N. Prabhakar, Ph.D.
Hi Martin, On Jan 20, 2011, at 7:58 AM, Martin Hawkins wrote: > The Ruby programming Language - David Flanagan and Yukihiro Matsumoto > The Well-Grounded Rubyist - David A. Black > Programming Ruby - Dave Thomas > > None of the above are focussed on the web. > Back to Grand Central Dispatch which

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Martin Hawkins
The Ruby programming Language - David Flanagan and Yukihiro Matsumoto The Well-Grounded Rubyist - David A. Black Programming Ruby - Dave Thomas None of the above are focussed on the web. Back to Grand Central Dispatch which was really the topic of the post - Dispatch and Dispatch::Group are availa

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Johannes Fahrenkrug
Hi David, I always thought the official tutorial on the Ruby site is pretty good: http://www.ruby-lang.org/en/documentation/quickstart/ It is also normal practice to keep non-standard ruby functionality out of core and distribute is as a gem. That should not discourage you from using MacRuby o

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Caio Chassot
> platform for Mac development. So I'm trying to wrap my head around why > people would use it (Ruby) instead of C/C++/Objective C or Python for that > matter. I guess we all have our reasons, but: Over Obj C: succinctness + ruby std libary Over Python: First class cocoa citizen, not a bridge

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread David Frantz
Ok, forgive me for this question as I'm not a practicing Ruby programmer but why would Dispatch not be part of Mac Ruby? For those wondering why I've been hanging out here for the last couple of months it is due to the thought that Mac Ruby might become an officially supported platform for Mac

Re: [MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Mark Rada
The dispatch library was removed from the core just before the 0.8 release. Someone is maintaining it as a gem. I thought the dispatch library only had the Enumerable module extensions, but I guess it had the Job class as well since I also don't have it (using a 0.9 nightly build). Someone who

[MacRuby-devel] What's happened to Dispatch::Job?

2011-01-20 Thread Martin Hawkins
I was looking at the short intro to GCD in Matt's book 'Macruby - The Definitive Guide' I have macruby 0.8 and I come across an immediate problem macirb --simple-prompt >> require 'dispatch' LoadError: no such file to load -- dispatch However, it knows about Dispatch: macirb --simple-prom