[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Ruby Language in Depth

Michael Trier

4/4/2006 2:16:00 PM

I'm looking for something akin to Stroustrup's C++ Programming
Language or The Design and Evolution of C++ for Ruby. I love
Programming Ruby and it's a great resource, but not quiet deep enough
on all of the internals. There's Matz's book Ruby in a Nutshell. I
don't have that one, but I also heard that it's also somewhat an
overview. I'm making my way through Ruby Hacking Guide, and
appreciate all the work everyone is doing on that, but it's not done
and the machine translation is just too tough to get my head around.

Does anyone have any suggestions for the best resource at the moment?

Thanks,

Michael


2 Answers

pat eyler

4/4/2006 2:23:00 PM

0

On 4/4/06, Michael Trier <mtrier@gmail.com> wrote:
> I'm looking for something akin to Stroustrup's C++ Programming
> Language or The Design and Evolution of C++ for Ruby. I love
> Programming Ruby and it's a great resource, but not quiet deep enough
> on all of the internals. There's Matz's book Ruby in a Nutshell. I
> don't have that one, but I also heard that it's also somewhat an
> overview. I'm making my way through Ruby Hacking Guide, and
> appreciate all the work everyone is doing on that, but it's not done
> and the machine translation is just too tough to get my head around.
>
> Does anyone have any suggestions for the best resource at the moment?


While it still might not be deep enough for you, I'm really enjoying
Ruby for Rails -- http://www.manning.com/b...

I've not started chapter 17 yet, but it promises to be a guide to reading
Rails internals. I'd think that would help with reading Ruby internals
(to a degree).

Another great way to learn more is to look at ParseTree --
http://rubyforge.org/projects/...

Sean Carley's post about checkr and ParseTree is a good indicator
of what you can learn --
http://sean-carley.blogspot.com/2006/04/debugging-parsetree-or-walki...
>
> Thanks,
>
> Michael
>
>


--
thanks,
-pate
-------------------------


Michael Trier

4/4/2006 2:55:00 PM

0

Excellent, thanks. I'll check both of those out. Actually I started
looking at ParseTree after looking at your article. Thanks again.

Michael