Are there any really good books on rails 3 that don't just talk about the basics (it's easy to learn that very quickly by watching screen-casts, etc.)? For example, is there a book that basically takes you through one of all the types of things you'd ever want to do? Or one of every type of problem you are likely to run into?

And not just designing the application, but testing as well. I find a lot of the time, I have questions like, "What is the best way to test this?" In that area, I find myself spending a lot of time just trying to derive the most concise testing code to express what I need to test, but I often think to myself, "Hasn't 100,000 people figured this out before?"

I'd like to read a book that isn't going to teach programming, or teach what an mvc architecture is - I know that. I just find myself wanting to know the differences between ruby and rails compared to other things I know well (like java or scala). So basically I know the concepts really well, just don't know the practice. It'd be neat to have a book that basically shows, "Here is one good example for each really important thing you'd ever want to do in a ruby/rails application"

Does that make sense? ;)

If such a book didn't exist, would it be worth writing one, compiling all of the best practices and examples on how to achieve 1 of everything? Seems pretty common sense to me. What a value it would be ;)

Thanks

link|improve this question

74% accept rate
1  
You might want to read the SO thread Learning Ruby on Rails as it covers this well. – the Tin Man May 10 '11 at 6:12
feedback

4 Answers

up vote 2 down vote accepted

Loads of books that discuss certain aspect of Rails have come into the market lately. But one book that made the difference, for me, is The Rails 3 Way.

According to me, as opposed to books, trying to figure out yourself is the best way to learn and excel at anything as you're doing it already. Then discussing that particular solution of yours for a problem with peers or blogging about it and getting appreciated / criticised would be a very good motivator to learn and try new things.

And of course, there is Railscasts, Stackoverflow and loads of other resources.

link|improve this answer
The rails 3 way looks like it might be the right book. I agree that playing with it myself is also very helpful - I totally agree. Sometimes it's hard to make decisions in some areas though and it would be nice to just see how the experienced users do it. I can probably just follow along since it will be the same as Java (it often is, just different and simpler... but still the same). I will give this book a try. – egervari May 14 '11 at 22:51
feedback

In my opinion the best book about Rails is Agile Web Development With Rails: http://www.amazon.com/Agile-Web-Development-Rails-Third/dp/1934356166

After you read it, I strongly recommend watching the Rails Casts: http://railscasts.com/

link|improve this answer
I've watched lots of railcasts. I'm not sure this book will be for me. It seems a little basic and the reviews basically said it did not give indepth concepts on anything. I actually know a lot of the basics, so I think I will pass on this book. Thanks for the recommendation though! – egervari May 14 '11 at 22:50
feedback

My opinion about books on Rails 3 is the following.

For the basics you can look online especially at Railscasts with the new spectacular layout! Thanks Ryan!

After the basics (which are also well covered by Pragmatic Programmers book Agile Web Development with Rails) you can dig into ruby and rails secrets with these two awesome books:

  1. Eloquent Ruby
  2. Crafting Rails Applications

The latter is especially useful because it explores Rails behind the scenes inner working the first is necessary to grasp why Rails is working as it is! Russ Olsen (Eloquent Ruby) has also written another great book which helps explore Design Patterns in Ruby (you can find important differences with other programming languages)

Also Rails 3 Tutorial is interesting for its TDD approach.

link|improve this answer
feedback

A deep understanding of Ruby will help you understand Rails better. I recommend

Metaprogramming Ruby

It's got a few chapters on Rails, diving into ActiveRecord. Don't skip through, read it from start to beginning, Ruby is a powerful language. I find this more useful than the "standard" rails novice books. When building Rails apps most of what you do is find the best gems to use with it. There's so much to choose from, which is a luxurious problem :)

link|improve this answer
"read it from start to beginning" - would that be a circular process? Or some new linear approach through the Z-axis? ;-) – Meltemi May 10 '11 at 12:29
I'm gonna pretend I wrote it on purpose and stubbornly claim I have aliased "beginning" to mean "end" with a call to grab_beer after end. – oma May 10 '11 at 12:37
feedback

Your Answer

 
or
required, but never shown

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