vote up 12 vote down star
1

What's a good book for learning Ruby?

flag

0% accept rate

14 Answers

vote up 0 vote down

Learning Ruby

Learning Ruby

link|flag
vote up 1 vote down

The Pragmatic Programmer's collection contains a lot of great books on Ruby, including the previously mentioned "Pickaxe book".

-John

link|flag
vote up 2 vote down

It depends what you already know. I've been doing Java heavily for some years now, and knew a little Ruby. I was looking for a short primer, just enough to get me started, figuring to learn the rest along the way. Design Patterns in Ruby was helpful for me. It consists of two basic parts, both of which were very useful. The first part is the primer, and it goes through features pretty quickly, which is what I wanted. The next part is the design patterns part. There, it goes through several common patterns one at a time. For each pattern, it codes it in Ruby, but as though thinking in Java, then it shows how to do the pattern "the Ruby way." This was very, very helpful. It exposes the nooks and crannies of ruby objects, and shows how to leverage the special features of Ruby, and in the process, teaches how thinking in Ruby is different from thinking in Java.

link|flag
vote up 2 vote down

I highly recommend this book, Beginning Ruby: From Novice to Professional.

link|flag
vote up 1 vote down

There's quite a comprehensive list at http://blog.mrneighborly.com/2007/10/ruby-and-rails-bibliography-of-sorts.html.

link|flag
vote up 0 vote down

Hi,

I suggest "Teach Yourself Ruby In 21 Days"... very good book that teach you all the basics!

Regards,

Lennie

link|flag
vote up 1 vote down

It is not a book but a site: RubyLearning

link|flag
vote up 0 vote down

In the context of learning Ruby in a web application, I'd look at Agile Web Development with Rails. I found that I was able to pick up Ruby pretty easily in the context of their examples. I also zipped over to the Ruby Documentation web site pretty frequently to look up stuff (just like I do with MSDN).

link|flag
vote up 1 vote down

In addition to all the good suggestions above, I would recommend checking out the Ruby Quiz

It's well moderated, and has lots of code examples and snippets.

link|flag
vote up 8 vote down

The Pickaxe book is a must-have, and the Poignant Guide is perhaps the best technical book ever written, but I would also include David Black's Ruby for Rails, especially for understanding Ruby's metaprogramming capabilities. It's really misnamed, as it's quite valuable whether you use Rails or not.

link|flag
vote up 3 vote down

+1 for the Ruby Programming Language - you can't really go wrong when one of the authors is Matx himself!

The Ruby Way is also a good book, loads of examples for pretty much everything, from metaprogramming to reading RSS feeds etc.

The Pickaxe book is ok, but I found the examples a bit tedious and the ongoing karaoke "project" just didn't grab my attention. Still explains a lot though.

link|flag
vote up 4 vote down

I've heard a lot of good things about Why's (Poignant) Guide To Ruby also.

Note: probably not the best choice if you can only pick one book, but certainly as a supplement to one or more of the other books mentioned in other answers :-)

link|flag
Doh! I was posting this answer when S/O decided to stop responding. Disclaimer: I've never written a line of ruby, but if I were to, it would be because of this book. – I Have the Hat Feb 14 at 17:45
i like why´s guide, but as the name says, it´s just a guide and you´ll need a book to go with it/read after it. – LDomagala Feb 14 at 17:49
vote up 4 vote down

In addition to "The Ruby Programming Language", it's useful to get a copy of the Ruby Cookbook for all kinds of practical examples.

link|flag
vote up 16 vote down

The Ruby Programming Language

Its a great book which i used to learn Ruby. It´s written similiar to K&R´s classic "The C Programming Language" and starts with everything you need to know, then goes into the deep end. It helps you understand the language structure, the idioms and everthing you will ever need to know. Metaprogramming is covered pretty deeply at the end too. Although Metaprogramming is such an integral part of ruby that it really is everywhere.

Other then that its a nice refrence book too and i guess you heard about its co-author Yukihiro Matsumoto who created the language in the first palce:)

Also have a look at Apidock which is a really great way to look through the Ruby/Rails api with comments and tips. I always have it open in a second Firefox window.

Oh and if you want to you can read it at Safari which is only around 10$ per month for 5 books...

link|flag
+1 This book has the best pedagogical layout for learning a language. At first, I was a little annoyed, but then I realized I was learning the language faster and better than through any other method - mind you, this is also do to Ruby's 'Principle of Least Surprise'. – bias Oct 4 at 16:06
I've found this book singularly brutal as a way to learn the language. I'm slightly more than halfway through, and I still don't feel I could actually acheieve anythign at all in the language. – lil_cain Oct 18 at 16:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.