I am just reading through Chris Pine's Learn to Program (The Ruby Series) 2nd Edition and it is one of the best programming books I have ever come across.

Unfortunately, he hasn't written (or I can't find) a book for Rails.

Does anyone know of any books that are of the same calibre and quality as Chris Pine's writing for Rails?

Thanks.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

I have developed in other languages but have recently begun learning Rails. I picked up a copy of Agile Web Development with Rails and have found it to be a good balance between introductory and advanced. Some of the other books I looked at seemed too basic or too oriented towards building a widget app rather than teaching.

The first part of the book goes through making a shopping cart and quickly goes through the various areas of Rails while the remaining sections go into each area in greater depth.

Agile Web Development with Rails

You may also check out some of the screencasts at Peepcode and Railscasts to fill in the few gaps.

link|improve this answer
I learned Ruby with this book, and went to it after "Learn to Program" . . . When I tried "The Rails Way" I wasn't ready for it yet. Not to mention I still use this book as my bible, big +1 for beginners – BushyMark Sep 8 '09 at 0:00
This book helped me so much when I was learning how Rails worked. It will teach you a lot about what goes where and how they all work together. Recommended. – nitecoder Sep 8 '09 at 0:21
feedback

For Rails I'd recommend The Art of Rails, followed by The Rails Way.

The first one will introduce you to the idea of frameworks and how Rails fills that niche, and how it does.

It will also give you a good overview on how things work.

The Rails Way is more in-depth view on the topic, with some snippets of Rails code, going through a more technical inspection. Could be a bit overbearing at first, but Obie's style is quite clear and easy to grasp.

I'd recommend too Ruby for Rails as a parallel read, which helps bridge some Ruby topics for Rails programmers.

link|improve this answer
+1 on Ruby for Rails, good book to explain the inter-relation between Ruby and Rails. – rogeriopvl Sep 7 '09 at 23:38
feedback

Why don't you try http://ruby.railstutorial.org/ by Michael Hartl? I followed his tutorial (religiously) and was able to run the project on my laptop with ease.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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