I think I'm sold on getting the Rails 3 Way. It seems like while the book may not be perfect, it's going to have a lot of in-depth information that will probably save me a lot a lot of time.

I'm curious though, if you had to buy 2 books about Ruby/Rails... which ones and why?

Assumptions:

  1. You are not a novice developer. In the Java world, you are considered master-level

  2. You don't want to be talked down to, learning what an "MVC framework is", or ORM, or what CSS is, etc. Essentially, execution and real-world solutions are more important than general web-development concepts. However, in-depth information about Rails specifically would be appreciated (Which I think Rails 3 Way might provide).

  3. You don't want just want "basic examples" - but really in-depth stuff, info on common "gotchas" in complex applications... as well as examples to "exceptions to the rule".

  4. You want up-to-date information. You want to avoid googling for things (sadly, there's more inaccurate information than accurate information about Rails right now... there's a massive pollution of info on Rails online that often leads people astray and making mistakes than helping).

  5. You already write really clean and refactored code

  6. You already understand the merits of testing and have 10 years experience testing with junit/scalatest/dbunit/mocking... but you don't know how to test well in Ruby/Rails yet (I find myself googling "how to test X" a lot, which has been a time sink")

link|improve this question
feedback

6 Answers

up vote 2 down vote accepted

Ruby-only I'd buy

  • Eloquent Ruby
  • Ruby Best Practices

For books about/including Rails

  • Metaprogramming Ruby (although I hate the style, but the content is good)
  • The Rails 3 Way (there's also an older edition for Rails 2)

Since you are already pretty sold on the "Rails 3 Way" I'll throw "Rails Antipatterns" into the mix too, we have it in the office and it's solid.

link|improve this answer
wow, seems like so many books that 2 is not enough. LOL. I'm really having a hard time picking 2! Maybe 3? – Fire Emblem May 23 '11 at 12:55
It's hard. If you really only want 2, I'd say Ruby Best Practices and Rails 3 Way would be a good combination for your requirements. – Michael Kohl May 23 '11 at 13:41
Thanks! I ordered Ruby Best Practices, Rails 3 Way and Rails Antipatterns. Got for under $100 with the shipping included ;) I hope I will get a lot out of them. – Fire Emblem May 24 '11 at 11:25
feedback
  • Metaprogramming Ruby
  • Advanced rails recipes

And maybe also a good Rspec book.

link|improve this answer
feedback

RailsTutorial.org is a pretty classic example of an in-depth tutorial that assumes that developers have some degree of programming skill. It will explain MVC to some degree, I believe, but it's relatively easy to skip basic information. I used it moving from ASP.NET MVC (where I would consider myself an expert) to Rails, and it was an enjoyable day or two of reading, although I did skim some sections.

In terms of actual books, two excellent ones I've read lately are:

  • Design Patterns in Ruby - If you're familiar with design patterns, this book does an excellent job of showing how Ruby can be leveraged to implement common design patterns in a way that suits the Ruby language. It's a great intro to the power of Ruby, and how idiomatic code should be developed.
  • Crafting Rails Applications - Great book on Rails best practices and how to structure applications, along with most of the pitfalls that newer Rails developers tend to fall into.

One small piece of advice - don't be afraid to "waste" a bit of time re-learning something that you already consider yourself an expert in. While many of the concepts in Ruby are similar to those of Java, .NET, etc. idiomatic and well-written Ruby can be quite different, and an extremely common problem with Java or .NET developers switching to Ruby is that they tend to write "Java-like" Ruby code that fails to leverage the strengths of the framework they are working in.

link|improve this answer
Good point about being a java developer. I am really, really good at Java (and Spring, hibernate, etc.). I've been known to outproduce 5 or 10 average Java developers on many occasions (boy, I wish my salary actually reflected that! lol). So I often become a tad impatient when I want specific info on something that is really familiar but new... and probably want to rush the process. – Fire Emblem May 23 '11 at 12:42
Which is better, "Design Patterns in Ruby" or "Ruby best practices"? Do they overlap? – Fire Emblem May 23 '11 at 12:59
feedback

I'd head to:

  • Crafting Rails applications

  • Rails anti patterns

link|improve this answer
feedback

http://pragprog.com/titles/rails4/agile-web-development-with-rails

I consider myself a "Java master" and I easily dived into the Rails world with that book. It covers everything, from a quick "Hello World" to more in depth aspects.

link|improve this answer
feedback

I'd buy "The Ruby Programming Language" and "Ruby on Rails 3 Tutorial". The RoR 3 tutorial is available for free online so you might end up buying just one book in the end.

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.