What's the best resource for learning Rails for a raw beginner? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T04:41:53Zhttp://stackoverflow.com/feeds/question/517795http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner7What's the best resource for learning Rails for a raw beginner?Ethan2009-02-05T20:34:16Z2009-02-18T04:13:47Z
<p>I want to tell someone what to look at to learn Ruby and Rails. He knows PHP and is a smart guy.</p>
<p>For Ruby, I recommended David Black's <em>Ruby for Rails,</em> warning him that the Rails chapters are outdated.</p>
<p>What do I recommend for Rails?</p>
<p>Perhaps the <a href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">"beta book" version of AWDR, third edition?</a> I'm wondering whether it's close to being a complete and coherent book, or if there are still a lot of blank areas.</p>
<p>What's the best resource for someone starting from zero after they've gotten some comfort with Ruby?</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/517804#5178042Answer by Bramha Ghosh for What's the best resource for learning Rails for a raw beginner?Bramha Ghosh2009-02-05T20:36:17Z2009-02-05T20:36:17Z<p>I've been playing around with these set of <a href="http://github.com/edgecase/ruby_koans/tree/master" rel="nofollow">Ruby Koans from EdgeCase</a>.</p>
<p>They supplement some of the more traditional learning resources nicely if you're in the mind set to do some TDD.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/517814#51781414Answer by Owen for What's the best resource for learning Rails for a raw beginner?Owen2009-02-05T20:40:16Z2009-02-05T21:27:41Z<p>I've been teaching myself using <a href="http://railscasts.com/" rel="nofollow">Railscasts</a>. I really like his screencast. They cover a wide variety of subjects, are short, and are easy to follow.</p>
<p>I also use the beta third edition of AWDWR. If you buy the beta version, you can "update" your copy as they do.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/517885#5178854Answer by jackberry for What's the best resource for learning Rails for a raw beginner?jackberry2009-02-05T20:59:58Z2009-02-05T20:59:58Z<p>The Rails Way (Addison-Wesley Professional Ruby Series)</p>
<p>this is the book you want, explains what you need to know in depth. about $30 at amazon.... will save you tonnes of time jumping around tonnes of sites.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/517933#5179331Answer by Typeoneerror for What's the best resource for learning Rails for a raw beginner?Typeoneerror2009-02-05T21:12:03Z2009-02-05T21:12:03Z<p>I highly recommend <a href="http://www.pragprog.com/titles/ndphpr/rails-for-php-developers" rel="nofollow">Rails For PHP Developers</a>. Provides side-by-side PHP/Ruby code and is overall a great introduction to Ruby. Following this you might suggest one of the more advanced Pragmatic books, Agile Web Development With Rails.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/518022#51802212Answer by Ryan Bigg for What's the best resource for learning Rails for a raw beginner?Ryan Bigg2009-02-05T21:26:54Z2009-02-06T03:03:10Z<p>I reccommend reading the <a href="http://guides.rubyonrails.org/getting_started_with_rails.html" rel="nofollow">Getting Started</a> guide on <a href="http://guides.rubyonrails.com" rel="nofollow">http://guides.rubyonrails.com</a></p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/518121#5181213Answer by wulfovitch for What's the best resource for learning Rails for a raw beginner?wulfovitch2009-02-05T21:52:53Z2009-02-05T21:52:53Z<p>My book recommendation for rails is "Agile Web Development with Rails" (Pragmatic Programmers) written by David Thomas and David Heinemeier Hansson (the creator of rails). This book tells you all the things that you will need to know when you are starting to write rails applications. But beware the second edition of this book is the current edition, but in the middle of march the third edition will be released. Perhaps it will be wise to wait for this edition, because the second edition is a little bit outdated (it covers the rails version 1.2.3, the current rails version is 2.3). But on the website of the pragmatic programmers (pragprog.com) you can buy a beta version as a pdf of the third edition if you wish to get it as early as possible.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/518715#5187151Answer by gbc for What's the best resource for learning Rails for a raw beginner?gbc2009-02-06T01:03:08Z2009-02-06T01:03:08Z<p>The beta book of AWDR is complete, in fact I think it's going to press soon. I bought the PDF a couple months back and even then it was very close to complete.</p>
<p>I would highly recommend the <a href="http://peepcode.com" rel="nofollow">PeepCode</a> screencasts. He has some excellent material and all very well produced.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/518809#5188091Answer by Oliver Kiel for What's the best resource for learning Rails for a raw beginner?Oliver Kiel2009-02-06T01:52:05Z2009-02-06T01:52:05Z<p>Someone already mentioned "Agile web development with rails" and that a new version is coming out soon, but you can actually buy the Beta-PDF now and start using it.
I have it and it's really useful. There is a new version every few weeks that you can just download. It is up to date with the latest release version of Rails as well.
I think it is by far the best way to get started because it is well written and up to date.
Here is a link:
<a href="http://pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">Agile Web Development with Rails, Third Edition</a></p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/518832#5188324Answer by Scott Miller for What's the best resource for learning Rails for a raw beginner?Scott Miller2009-02-06T02:01:03Z2009-02-06T02:01:03Z<p>I cannot recommend enough "Simply Rails 2" (<a href="http://sitepoint.com/books/rails2" rel="nofollow">http://sitepoint.com/books/rails2</a>). This is how I got started (actually it was the first edition of the book), and love the approach of the book and how the author presents everything. The book explains many of the basics of ruby and rails, and then goes through building a simple "Digg" clone, complete with ajax and I think an API.</p>
<p>At the time I was still evaluating Rails as a possible direction I wanted to go, and this book not only got me going in the right direction, but it also showed me the tremendous power of the framework and I could see how much time I was gonna save by learning it fully.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/519023#5190231Answer by Todd for What's the best resource for learning Rails for a raw beginner?Todd2009-02-06T03:53:45Z2009-02-06T03:53:45Z<p><a href="http://www.buildingwebapps.com/podcasts" rel="nofollow">Learning Rails Podcasts.</a>
There are 23 of them to date; the first 8 are audio only and the remainder are screencasts. Michael Slater and Chris Haupt are both Rails "converts" that take you from square zero covering the essence of MVC into more advanced concepts such as Web Services. You can subscribe to get an email for these, as they are adding new episodes each week.</p>
<p>Also, I would be remiss if I didn't ditto the nod to Pragmatic Rubyist Dave Thomas' <a href="http://www.pragprog.com/titles/rails2/agile-web-development-with-rails" rel="nofollow">Agile Development With Rails (Skateboard Book).</a></p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/519095#5190957Answer by jaaronfarr for What's the best resource for learning Rails for a raw beginner?jaaronfarr2009-02-06T04:23:16Z2009-02-06T04:23:16Z<p>Sam Ruby is still working on the <a href="http://intertwingly.net/blog/2009/02/04/Rails-2-3-0-RC1" rel="nofollow">latest edition</a> of AWDWR. The beta book should be decent, the but the current speed of Rails development means most anything will be slightly out of date right now. That's not going to be too important for an absolute beginner, but always be sure to check which version of Rails any documentation is referring to as the subtle (or sometimes large) differences can trip you up.</p>
<p>In addition to AWDWR, I recommend going through the book <a href="http://railsspace.com/" rel="nofollow">RailsSpace</a> since it takes the reader step by step through creating a full Rails application. You can then add on a reference book like <a href="http://rads.stackoverflow.com/amzn/click/0321445619" rel="nofollow">The Rails Way</a>. Once you're familiar with the basics of Rails, you'll find the official <a href="http://api.rubyonrails.org/" rel="nofollow">Rails API</a> to be indispensable. To keep up with the latest changes in Rails, you should subscribe to <a href="http://ryandaigle.com/" rel="nofollow">Ryan's weblog</a> and the official <a href="http://weblog.rubyonrails.org/" rel="nofollow">Rails weblog</a>.</p>
<p>That's the basics. There are many, many other resources. In fact, one the challenges of learning Rails is that the documents is a bit, well, distributed around the internet. Many of the tutorials and interesting ticks to Rails have been written up in hundreds of different blog posts. In this case, Google is your friend, but again beware which version of Rails any particular post is referring to. Some supplemental reading includes:</p>
<ul>
<li>The <a href="http://wiki.rubyonrails.org/rails" rel="nofollow">Rails Wiki</a> which is notoriously disorganized and often outdated, but there are some efforts to clean it up.</li>
<li><a href="http://railscasts.com/" rel="nofollow">Railscasts</a> for Rails screencasts</li>
<li><a href="http://podcast.rubyonrails.org/" rel="nofollow">Ruby on Rails Podcast</a>, the official one, plus the <a href="http://www.railsenvy.com/" rel="nofollow">Rails Envy</a> podcast</li>
<li><a href="http://www.railsinside.com/" rel="nofollow">Rails Inside</a> for general Rails news, though I prefer</li>
<li><a href="http://www.rubyinside.com" rel="nofollow">Ruby Inside</a> for all things Ruby</li>
<li>David's own <a href="http://www.loudthinking.com/" rel="nofollow">blog</a> is useful as well as Jamis Buck's <a href="http://weblog.jamisbuck.org/" rel="nofollow">blog</a> and <a href="http://nubyonrails.com/" rel="nofollow">Geoffrey Grosenbach's</a>.</li>
</ul>
<p>In fact there are <a href="http://www.l-exp.com/readerp/best_ruby_on_rails_blogs_223" rel="nofollow">dozens</a> of good Rails blogs. Note the ones you find in Google searches and good luck!</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/521740#5217401Answer by kgrad for What's the best resource for learning Rails for a raw beginner?kgrad2009-02-06T19:13:13Z2009-02-06T19:13:13Z<p>I have to highly recommend the book <a href="http://railsspace.com/" rel="nofollow">RailsSpace: Building a Social Networking Website with Ruby on Rails</a>. It assumes no Rails or Ruby experience and takes you through building a production site. It is comprehensive and in depth and shows how you would actually refactor your code if you were doing it yourself. I also found it to be a very interesting read and it's one of the programming books I truly enjoyed reading.</p>
<p>I always find that practical examples are way more effective to learn from than reference books. I also own <a href="http://www.pragprog.com/titles/rails2/agile-web-development-with-rails" rel="nofollow">Agile Web Development with Rails: Second Edition</a> which is an excellent reference. </p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/522345#5223451Answer by Mase for What's the best resource for learning Rails for a raw beginner?Mase2009-02-06T21:53:46Z2009-02-06T21:53:46Z<p>I would stay far away from RailsSpace.</p>
<p>If you're already proficient in Ruby, I would highly recommend <a href="http://rads.stackoverflow.com/amzn/click/0321445619" rel="nofollow" title="The Rails Way">The Rails Way</a>. The current edition is a little behind the latest release, but it goes a long way in giving you a firm understanding of "the magic" that takes place beneath the abstraction - especially useful if you're looking to become a Rails guru. If you just want to start hacking, I'd recommend <a href="http://rads.stackoverflow.com/amzn/click/097669400X" rel="nofollow">Agile Web Development with Rails</a>.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/522598#5225981Answer by Digitalsleep for What's the best resource for learning Rails for a raw beginner?Digitalsleep2009-02-06T22:58:02Z2009-02-06T22:58:02Z<p>I really like the videos from Lynda.com, the Ruby on <a href="http://movielibrary.lynda.com/html/modPage.asp?ID=324" rel="nofollow">Rails training</a> videos were broken up nicely and were quick and easy to learn.</p>
http://stackoverflow.com/questions/517795/whats-the-best-resource-for-learning-rails-for-a-raw-beginner/559812#5598120Answer by railsninja for What's the best resource for learning Rails for a raw beginner?railsninja2009-02-18T04:13:47Z2009-02-18T04:13:47Z<p>Railscasts.com has already been mentioned are fantastic. Another great screencast resource is Peepcode.com, they aren't free, but are will worth the $9 per screencast, saved me tons of time when learning some stuff.</p>