Which ones are the best books to learn ruby and rails?

link|improve this question
2  
this question should be community wiky – eKek0 Sep 6 '09 at 19:29
as requested :) – dotty Sep 6 '09 at 19:38
2  
Closing request as "subjective and argumentative" ? Could you explain why? There are tons of totally legitimate questions up on SO about "best" books stackoverflow.com/questions/1711/… – marcgg Sep 6 '09 at 19:40
I hope someone sees this new comment! : On amazon, it lists "The Ruby Programming Language" book as being first edition, published January 25, 2008. But the description says it covers ruby 1.9 which was released in 2010?? I'm confused - please help. – Zabba Aug 26 '10 at 7:41
2  
Dear answerers; please submit one answer per book so we can upvote them separately. – edgerunner Nov 25 '10 at 11:33
show 1 more comment
feedback

closed as not constructive by Jeremy Banks, Bill the Lizard Sep 17 '11 at 21:58

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

11 Answers

up vote 12 down vote accepted

RAILS

Agile Web Development with Rails, third edition: I learned rails reading the first edition. This is definitively what you want to read if you want to start coding with ruby on rails.

The Rails Way: is my reference for every day programming

Rails Recipe: Nice examples. I prefer the advanced one but if you start this one should be good for you.


RUBY

Design Patterns in Ruby: Helped me understand ruby a bit more. There is a nice introduction explaining ruby 101, and then it gets into more advanced and interesting stuff

The Ruby Way: a good reference

link|improve this answer
2  
Nice list, but I can't belive you haven't mentioned the pick axe. Back when the first edition of Agile Web Development with Rails was out it was the only english ruby book out there. – vise Sep 6 '09 at 22:25
feedback

Ruby

why's (poignant) guide to Ruby

best book i've ever read on a programming language and it's free!

Rails

Simply Rails 2

link|improve this answer
feedback

Agile Web Development with Rails, 3rd Edition. The only one you’ll need. (You can also get it at Amazon, but I recommend buying it directly from Pragmatic Programmers for the PDF version.)

link|improve this answer
feedback

I'm a big fan of David Black's books. He writes clearly, and appears to know every nook and crany of Ruby. Ruby for Rails is a bit outdated, but The Well-Grounded Rubyist is an excellent way to get to know Ruby 1.9 well.

I second the recommendation of Design Patterns in Ruby, and I would also mention Ruby Best Practices.

Finally, it's hard to argue with The Ruby Programming Language as a reference since Matz is a co-author.

link|improve this answer
The Well-Grounded Rubyist is awesome. Mr Black knows his stuff. – Andy Gaskell Sep 6 '09 at 21:35
feedback

I vote for Metaprogramming Ruby. It gives a thorough explanation of Ruby's object system including the mystical Eigenclass, whilst still being an entertaining read.

link|improve this answer
feedback

I would say the best books I have read for Ruby are:

  1. Programming Ruby is both great language guide and yet reference book.

  2. Beginning Ruby: From Novice to Professional, Second Edition is great language guide packed with good examples.

The best Rails book is:

Agile Web Development with Rails, Third Edition I love this book, it is example driven book about the Rails framework and you will start with making a basic on-line shooping chart site from scratch. It includes the whole development process with the agile methodology.

link|improve this answer
feedback

Another vote for The Well Grounded Rubyist. I was introduced to it recently by a friend and it was as good as advertised. Well written and a great introduction to Ruby 1.9

link|improve this answer
feedback

IMO best books are: * The Rails Way * The Ruby Way * Designs Patterns in Ruby * Agile Web Development (but i'm not sure)

I haven't read Programming Ruby 1.9 but I suppose it is good book.

link|improve this answer
feedback

To learn Rails, "Ruby on Rails Tutorial" by Michael Hartl is the best. To learn Rbuy, "The Ruby Programming Language" is good.

link|improve this answer
feedback

I would check out Simply Rails if you're starting from scratch. It is simple and straight-forward, it really just gives you a taste of what's possible. A lot of the other posts I see listed are great books too and better in many ways, but for beginning, this one can't be beat.

Another great place to jump off is railscasts

link|improve this answer
feedback

Beginning Ruby From Novice to Professional 2nd Edition Jul 2009.

A very good book for beginners who don't know anything about ruby and it teaches right from how to install and also makes you practice things!

link|improve this answer
feedback

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