What's a good book to start with for Ruby on Rails and Ruby together.

I'm a novice, but I have good understanding of OO programming.

Please let me know a book that helps me to get up and running on Rails and Ruby.

link|improve this question
possible duplicate of Learning Ruby on Rails – the Tin Man Jun 15 '11 at 20:54
Would this be off-topic if instead the question was "What are good books for Ruby on Rails?". I understand the need to exclude some questions, but this question definitely IS related to programming and software development and I naturally think to check this site to answer this or similar questions, i.e. what are the good resources for learning something related to programming or software development. – Kenny Evitt Feb 10 at 17:13
feedback

closed as off topic by Robert Harvey Oct 9 '11 at 4:35

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

8 Answers

up vote 13 down vote accepted

Agile Web Development with Rails seems by far the most recommended text for starting Rails. It's also the most updated text. As far as I know, it's the only Rails book you can order at the moment that covers Rails 3, through Pragmatic Programmers' beta book program. All other Rails 3 books are still in preorder.

That said, I didn't enjoy reading it terribly because its approach is to throw a lot at you at once without explaining things thoroughly. After the first half, I had a working shopping website with all the bells and whistles, but I still didn't understand fully why things worked (all the explanations are in the 2nd half). If you don't like this style, Foundation Rails is a book that addresses AWDR's problems. The only issue is that it covers Rails 2, and so much has changed as to make much of the book unreliable for Rails 3.

link|improve this answer
Beginning Rails 3 is the only Rails 3 book out right now. – ryeguy Dec 10 '10 at 20:19
Thanks for the link - shouldn't have assumed information I gathered 1.5 months ago is still true :) – Anita Dec 10 '10 at 20:20
Rails 3 in Action and the new version of AWDR are both in MEAP/beta respectively. I prefer AWDR. – revdrjrr Dec 10 '10 at 20:25
I have the Agile beta in PDF form, it is good and pretty much finished, and it covers Rails 3. – coder_tim Dec 11 '10 at 0:55
i have agile 3rd edition and it's rails 2. Where do you get the rails 3 version? – kinet Dec 18 '10 at 22:23
show 1 more comment
feedback

Rails 3 in Action is a book I'm writing with Yehuda Katz which covers using the same practices that people use in the real world to develop an application from the ground up, covering things such as RSpec, Cucumber as well as common gems and practices.

The book, as of this writing, is still in progress but you can get a copy at the above link and receive updates as they become available.

link|improve this answer
I just went through the first chapter. Looks like a good book. – the Tin Man Dec 11 '10 at 4:11
I read some chapters. It's BDD focused. I like this better than. Well written. This is how all newbies and all pro's should write. – kgpdeveloper Dec 19 '10 at 15:38
feedback

Because Rails has grown so fast, print publications grow dated quickly. There is certainly valuable info in many print resources, like Agile, but the most recent stuff hasn't made it off the web into print yet. While Agile Web Development with Rails is the quintessential read on Ruby on Rails, I'd really recommend checking out this Rails tutorial/book online, http://railstutorial.org/. One of the best out there for a broad overview. For specific functions, Ryan Bates provides a free screencast at railscasts.com with over 200 videos. Hope this helps!

link|improve this answer
+1 Rails changes so fast it's hard to find good documentation because it's always out of date. – the Tin Man Dec 11 '10 at 2:55
I learned from Agile Rails (1st edition) but these days I recommend Rails Tutorial, too--it explains Rails as well as several key related technologies like RSpec for testing and Heroku for deployment. – ruralocity Dec 13 '10 at 15:59
The AWDWR books get updated regularly and is often available in BETA form. You will get notifications of when the book has been updated so you can download the latest version from pragprog.com – jamesw Jul 28 '11 at 18:43
feedback

The Rails 3 Way.

link|improve this answer
feedback

Rails for Zombies was very helpful for me starting out and is fun. http://railsforzombies.org/

link|improve this answer
feedback

For beginners "Ruby on Rails Tutorial Learn Rails by Example" is preferred and it's free too. Also, "Agile Web Development with Rails" is recommended for the people who know had gone through the first book. I would recommend "Rails 3 Way" who wants to be master on the subject.

link|improve this answer
feedback

For Rails, online resources are generally better than books (and free). I 'd recommend http://guides.rubyonrails.org/ and http://railscasts.com/ (also available as http://asciicasts.com/).

Ruby doesn't age so fast as Rails, so I'd pick some book about ruby instead: Programming Ruby (also available online) or The Ruby Way.

link|improve this answer
feedback

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