This is probably for those who have read Foundation Rails 2. I have ordered it and looking forward to reading up on it. I believe it is for Rails 2 and not Rails 3.

I have recently gotten a webby(account) from webbynode, and have a workable Rails 3 installation. ReadyStacks is having a problem with 2.3.*

Would Foundations Rails 2 be a good book to read? A more important question is how much difference would I expect from a book on Rails 2 while I'm playing with a Rails 3 installation?

Related Questions

I have listed related questions above but I am more specific in the book I want to ask about.

UPDATE: I must probably say that I am working in a ruby on rails shop and most of them are rails 2 and they are recommending I stay with rails 2 because I could get a lot of support from them and online than going on straight to rails 3.

link|improve this question

why is there a vote to close? My questions in unlike theirs. – Thorpe Obazee Dec 10 '10 at 15:47
feedback

2 Answers

up vote 4 down vote accepted

First, just a bit of advice and speaking from experience.. if I had to redo the way I learned Rails, I would have definitely read 2 Ruby books before I even looked at Rails. Read a general Ruby book first and then read one on meta-programming. If you are coming from another language (especially a statically typed language like Java), then alot of Ruby concepts will probably be new and eye-opening. It is good to have a grasp of what Ruby can do before you start coding Rails apps. Rails is basically a domain specific language for web development using Ruby. You can miss alot of important things if you only learn the DSL first. I know I did.

I would forget about learning Rails 2 and start with Rails 3. As Ariejan said, Rails moves fast and IMO Rails 3 is much, much better than Rails 2. Lots of changes were introduced and I think it would probably confuse you if you started with a Rails 2 book while you were using a Rails 3 app. The only thing you may run into is old code and tutorials on the web that use Rails 2, but there are alot of people writing about Rails 3 now as well.

I like the books sold at The Pragmatic Bookshelf.

I would recommend these books:

Ruby

Programming Ruby 1.9 - This covers about everything you need to know

Metaprogramming Ruby: Program Like the Ruby Pros - My favorite Ruby book by far. Well written and this is a total eye-opener if you are not familiar with dynamic languages and metaprogramming. Alot of metaprogramming was used to create Rails, so it is very useful to know what it is

Rails

Agile Web Development with Rails (4th edition) - I read the previous version which covered Rails 2, but I am sure they have done an excellent job of explaining Rails 3. Another well-written, easy to understand book. Probably the most popular Rails book out there.

And of course, the Rails Guides are extremely helpful as well:

http://guides.rubyonrails.org/

link|improve this answer
cowboycoded, how did you learn rails? – Thorpe Obazee Dec 10 '10 at 16:06
I was using PHP and Java prior to switching to Rails. I read a few online tutorials one rails 1 book (can't remember which one now) back in 2006. Then I started hacking away while still in a PHP & Java frame of mind. I was able to make it do what I wanted, but it was all quite hackish, as I didn't understand Ruby and its best practices. My code was horrible and this lead me to 2 separate giant refactorings in 2008 and again in July 2010. At the beginning of 2010 I really focused on learning Ruby and read quite a few books. Then I focused on learning Rails 3 and learning best practices. – cowboycoded Dec 10 '10 at 16:18
1  
In hindsight, I should have understood Ruby and its dynamic language features before I even looked at one line of Rails-specific code. Learn from my mistakes. Have a good understanding of Ruby before you learn Rails. It may take you a month to read a few books, but trust me, it will save you alot of pain and refactoring time in the long run, if Rails is something you want to commit to long-term. A few more tips: Learn how to do Test Driven Development with Cucumber & Rspec. Learn how to write modular code with gems and Railties/Engines. Learn Rake. Learn meta-programming with Ruby. – cowboycoded Dec 10 '10 at 16:23
1  
I largely agree with cowboycoded. If I had to do it again, I'd start with Programming Ruby 1.9, then the Agile book. – coder_tim Dec 11 '10 at 0:51
feedback

Rails is a relatively fast-moving platform. You should get on board with Rails 3 as soon as possible.

Having said that it answers your question: Pick up a Rails 3 book instead. There's no point in learning Rails 2 first and then having to relearn large parts of that knowledge again for Rails 3. There are quite some fundamental differences between Rails 2 and 3. Especially when you're new to Rails, bumping into Rails 2-3 differences is not pleasant and might even want you to run away from Rails.

link|improve this answer
3  
I agree. There are so many changes to the query api, routes, plugins, etc.. I would start with Rails 3. – cowboycoded Dec 10 '10 at 14:49
feedback

Your Answer

 
or
required, but never shown

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