Learning Ruby on Rails - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T23:41:33Z http://stackoverflow.com/feeds/question/55574 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/55574/learning-ruby-on-rails 41 Learning Ruby on Rails Ethan Gunderson 2008-09-11T00:50:59Z 2009-11-20T13:01:35Z <p>As it stands now I'm a Java and C# developer, but the more and more I look at Ruby on Rails, the more I really want to learn it. What have you found to be the best route to learn RoR? Would it be easier to develop on Windows, or should I just run a virtual machine with linux? Is there an ide that can match the robustness of Visual Studio? Any programs to develop that give a good overhead of what to do? Any good books? Seriously, any tips/tricks/rants would be awesome.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/55589#55589 8 Answer by binil for Learning Ruby on Rails binil 2008-09-11T01:00:07Z 2008-09-11T01:00:07Z <pre> IDE: NetBeans Book: <a href="http://www.pragprog.com/titles/rails2/agile-web-development-with-rails" rel="nofollow">Agile Web Development With Rails</a> Installation: <a href="http://instantrails.rubyforge.org/wiki/wiki.pl" rel="nofollow">Instant Rails</a> </pre> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/55590#55590 3 Answer by Kevin Pang for Learning Ruby on Rails Kevin Pang 2008-09-11T01:00:15Z 2008-09-11T01:00:15Z <p>There's a very solid <a href="http://nettuts.com/misc/learn-ruby-on-rails-from-scratch-week-1/" rel="nofollow">ongoing series on NETTUTS</a> right now that you may be interested in.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/55610#55610 34 Answer by Jason Navarrete for Learning Ruby on Rails Jason Navarrete 2008-09-11T01:11:52Z 2008-09-12T19:30:22Z <p>I've been moving from C# in my professional career to looking at Ruby and RoR in my personal life, and I've found linux to be slightly more appealing personally for development. Particularly now that I've started using git, the implementation is cleaner on linux.</p> <p>Currently I'm dual booting and getting closer to running Ubuntu full time. I'm using gedit with various plugins for the development environment.</p> <p>A large amount of the Rails developers are using (gasp) Macs, which has actually got me thinking in that direction.</p> <p>Although I haven't tried it, <a href="http://www.sapphiresteel.com/" rel="nofollow">Ruby in Steel</a> gives you a Ruby IDE inside the Visual Studio world, and <a href="http://www.ironruby.net/" rel="nofollow">IronRuby</a> is the .NET flavor of Ruby, if you're interested.</p> <p>As far as books are concerned, the <em><a href="http://pragprog.com/titles/ruby3/programming-ruby-3" rel="nofollow">Programming Ruby</a></em> (also known as the Picaxe) book from the Pragmatic Programmers is the de-facto for learning Ruby. I bit the bullet and purchased that book and <em><a href="http://pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">Agile Web Development with Rails</a></em>; both books have been excellent.</p> <p><a href="http://peepcode.com/" rel="nofollow">Peepcode</a> screencasts and PDF books have also been great for getting started; at $9 per screencast it's hard to go wrong. I actually bought a 5-pack.</p> <p>Also check out the following:</p> <ul> <li><a href="http://podcast.rubyonrails.org/" rel="nofollow">Rails Podcast</a></li> <li><a href="http://railscasts.com/" rel="nofollow">Railscasts</a></li> <li><a href="http://www.softiesonrails.com/" rel="nofollow">Softies on Rails</a> - Ruby on Rails for .NET Developers</li> <li><a href="http://www.railsenvy.com/podcast" rel="nofollow">Rails Envy Podcast</a></li> </ul> <p>I've burned through the backlog of Rails and Rails Envy podcasts in the past month and they have provided wonderful insight into lots of topics, even regarding software development in general.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/55631#55631 0 Answer by please delete me for Learning Ruby on Rails please delete me 2008-09-11T01:22:34Z 2008-09-11T01:22:34Z <p>The ubber source for anything Rails is <a href="http://www.rubyonrails.org/" rel="nofollow">http://www.rubyonrails.org/</a> if they don't have it on the site you probably don't need it.</p> <p>A quick cookbook is Ruby on Rails: Up and Running you can get it from O'Rielly or search Google for a on-line version. They walk you though the conventions of Rails and use Instant Rails which is ok.</p> <p>A better Rails book "Agile Web Development with Rails" This is the soups to nuts of Rails. It walks you though downloading and setting up Rails, Gems, everything.</p> <p>If you want are a Java 'guy' and want a transition book O'Reilly has "Rails for Java Developers" <a href="http://oreilly.com/catalog/9780977616695/?CMP=AFC-ak_book&amp;ATT=Rails+for+Java+Developers" rel="nofollow">http://oreilly.com/catalog/9780977616695/?CMP=AFC-ak_book&amp;ATT=Rails+for+Java+Developers</a></p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/55671#55671 0 Answer by Josh Moore for Learning Ruby on Rails Josh Moore 2008-09-11T02:03:32Z 2008-09-11T02:03:32Z <p>I came from a Java background to Ruby to. I found this tutorial helpful <a href="http://www.ruby-lang.org/en/documentation/ruby-from-other-languages/to-ruby-from-java/" rel="nofollow">http://www.ruby-lang.org/en/documentation/ruby-from-other-languages/to-ruby-from-java/</a>. When it comes to learning rails I cannot say how much I use script\console. It allows you to play with the code and learn how to do things that you are not sure about.</p> <p>The only book I ever bought was Agile Web Development with Rails, Third Edition <a href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">http://www.pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition</a>. It was quite useful and provided a good overview of the Rails framework. In addition to that I regular watch Railscasts(<a href="http://railscasts.com" rel="nofollow">http://railscasts.com</a>), which is a great screen casting blog that covers all kinds of Rails topics.</p> <p>I personally prefer using Linux (because git works better). But, I have also used windows and besides git I do not think the OS choice will impact your programming. </p> <p>I use netbeans for my IDE and occasionally vim (with the rails plugin). I like netbeans but, I find that it can still be a little flaky when it comes to the Rails support (not all the features work all the time).</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/56828#56828 0 Answer by Rob Bazinet for Learning Ruby on Rails Rob Bazinet 2008-09-11T15:09:51Z 2008-09-11T15:09:51Z <p>I think the screencasts and short books from <a href="http://peepcode.com/" rel="nofollow">Peepcode</a> are really good. They have screencasts to get you started and have some as you get more advanced.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/58155#58155 0 Answer by Michael Sepcot for Learning Ruby on Rails Michael Sepcot 2008-09-12T02:00:22Z 2008-09-12T02:00:22Z <p>There is a site called <a href="http://www.softiesonrails.com/" rel="nofollow">Softies on Rails</a> that is written by a couple of ex-.NET developers that may be of some use. They have a book called <a href="http://pragprog.com/titles/cerailn/rails-for-net-developers" rel="nofollow">Rails for .NET Developers</a> coming out in the next few months...</p> <p>I started out on a Windows box using the <a href="http://www.aptana.com/rails" rel="nofollow">RadRails</a> plugin for Eclipse and the <a href="http://rubyweaver.gilluminate.com/" rel="nofollow">RubyWeaver</a> extension for Dreamweaver (back during the 1.x days of Rails). Since then I have moved to a Mac running TextMate and haven't thought of going back.</p> <p>As for books, I started with The Ruby Way and Agile Web Development with Rails. It definately helps to build a background in Ruby as you start to make your way into Rails development.</p> <p>Definately watch the Railscast series by Ryan Bates.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/59822#59822 1 Answer by Swish for Learning Ruby on Rails Swish 2008-09-12T19:54:09Z 2008-09-12T19:54:09Z <p>This looks like a great resource for people like me who are coming from PHP to RoR</p> <p><a href="http://railsforphp.com/" rel="nofollow">http://railsforphp.com/</a> There's also a book <a href="http://www.pragprog.com/titles/ndphpr" rel="nofollow">Rails for PHP Developers</a></p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/62846#62846 30 Answer by srboisvert for Learning Ruby on Rails srboisvert 2008-09-15T13:26:02Z 2008-09-15T13:26:02Z <p>Beware, the rails world is a massively frustrating mess of outdated and inconsistent documentation and examples. It is maybe one of the fastest moving and most faddish development communities there is. By the time you learn something it will already have changed. Even the books are not consistent in which version of rails they are talking about. Documentation by blogging! enough said. </p> <p>I currently do RoR on windows. My advice is to avoid windows if you can. Lots of things don't work and the rails community really really doesn't care about you. The move to Git has really messed me up since it doesn't work very well on windows. A lot of gems will fail because of this (Heroku looks like a cool tool - too bad for me it can't handle window's Git setup). Capistrano is out. It goes on and annoyingly on.</p> <p>Plus, in the back of your mind, you always wonder when something doesn't work "Is it a rails/windows problem?" I am not sure this is solved by using linux because linux brings its own hassles like constantly having to upgrade all those different dependencies, etc...If that's the kind of thing you enjoy it might be an okay choice for you. Those days of enjoying system fiddling are behind me and I just want to get on with doing my work. I am planning on installing ubuntu on a home machine just so i can get familiar with things like capistrano so maybe my opinion will change.</p> <p>I'd highly suggest if you are going to do rails dev for any amount of time you seriously consider getting a Mac. If you value your time and sanity it will pay for itself almost instantly. Depending on how you value your time 10 hours of debugging windows/linux setup problems and you have spend as much as a Mac costs anyway.</p> <p>Rails is a joy compared to what it replaces but it is a bit of a pain in that its proponents skip right past a lot of the boring but important stuff like documentation, compatibility issues and community building. It is way more powerful than other frameworks like Django but I sometimes look over at the Django documentation and community and sigh like a guy with a wild sexy girlfriend looking at his friend's plain but sane and stable wife. But then rails adds a feature and I go "Ohhh shiny!"</p> <p>IMO the Rails Screencasts are better than the Peepcode screencasts. RubyPlus also has screencasts, mind you, they are bit rough around the edges. BuildingWebApps has a free online course that starts doing screencasts halfway through.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/62966#62966 0 Answer by davidok for Learning Ruby on Rails davidok 2008-09-15T13:41:57Z 2008-09-15T13:41:57Z <p>I have found "The Rails Way" by Obie Fernandez excellent and often found myself referring to it when Agile Web Development with Rails didn't seem to go far enough. Obie Fernandez has a decent <a href="http://obiefernandez.com/" rel="nofollow">blog</a> too.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/63019#63019 0 Answer by Andrei Savu for Learning Ruby on Rails Andrei Savu 2008-09-15T13:47:30Z 2008-09-15T13:47:30Z <p>Another IDE you could try is <a href="http://www.aptana.com/rails" rel="nofollow">Aptana</a>. </p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/63457#63457 1 Answer by srboisvert for Learning Ruby on Rails srboisvert 2008-09-15T14:35:12Z 2008-09-15T14:35:12Z <p>Oh I almost forgot. Here are a few more Ruby screencast resources:</p> <p><a href="http://podcast.sdruby.com/" rel="nofollow">SD Ruby</a> - the have a bunch of videos online - I found their Rest talks SD9 and SD10 to be among the best of the intros. Other rest talks assume you know everything. These ones are very introductory and to the point.</p> <p><a href="http://www.infoq.com/presentations/fernandez-restful-rails-apps" rel="nofollow">Obie Fernandez</a> on InfoQ - Restful Rails. I've also read his Rails Way book and found it informative but really long winded and meandering and the quality is a bit inconsistent. I learned a lot from this book but felt it was a bit punishing to have to read through the repetition and irrelevant stuff to get to the good bits. </p> <p>Netbeans is a nice hand holding IDE that can teach you a lot of language tricks if you have the patience to wait for its tooltips (it is a painfully slow IDE even on a really fast machine) and you can use the IDE to graphically browse through the available generators and stuff like that. Get the latest builds and you even have Rspec test running built in.</p> <p><a href="http://jimneath.org/2008/09/09/bort-base-rails-application/" rel="nofollow">Bort</a> is a prebuilt base app with a lot of the standard plugins already plugged in. If you download it and play with it and figure out how it is setup you are about halfway to creating your own full featured apps.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/63981#63981 1 Answer by scottru for Learning Ruby on Rails scottru 2008-09-15T15:32:15Z 2008-09-15T15:32:15Z <p>My suggestion is just to start - pick a small project that you would generally use to learn an MVC-style language (i.e. something with a database, maybe some basic workflow), and then as you need to learn a concept, use one (or both!) of</p> <p>Agile Web Development with Rails or The Rails Way</p> <p>to learn about how it works, and then try it.</p> <p>The problems with Agile Web Development are that it's outdated, and that the scenario runs on too long for you really to want to build it once; The Rails Way can be hard to follow as it bounces from reference to learning, but when it's good, it's better than Agile Web Development. </p> <p>But overall they're both good books, and they're both good for learning, but neither of them provide an "education" path that you'll want to follow. So I read a few chapters of the former (enough to get the basic concepts and learn how to bootstrap the first app - there are some online articles that help with this as well) and then just got started, and then every few days I read about something new or I use the books to understand something.</p> <p>One more thing: both books are much more Rails books than they are Ruby books, and if you're going to write clean code, it's worth spending a day learning Ruby syntax as early as possible. Why's Guide to Ruby is a good one, there are others as well. </p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/64120#64120 3 Answer by Carlos Gil for Learning Ruby on Rails Carlos Gil 2008-09-15T15:48:40Z 2008-09-15T15:48:40Z <p>As you, I'm a java/C# developer trying to learn more Ruby On Rails.</p> <p>I'm taking the free online course <a href="http://www.javapassion.com/rubyonrails/" rel="nofollow">Ruby on Rails Programming with Passion</a>, is a good introductory course, check it out. </p> <p>We are using <a href="http://www.netbeans.org/" rel="nofollow">NetBeans</a> as IDE (win/mac/linux/solaris), if you are used to Eclipse or Visual Studio, there is a good chance you will like it.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/64218#64218 24 Answer by Adrian Dunston for Learning Ruby on Rails Adrian Dunston 2008-09-15T16:01:41Z 2009-05-18T17:16:47Z <p>Path of least resistance:</p> <ul> <li>Have a simple web project in mind.</li> <li>Go to <strong>rubyonrails.org</strong> and look at their "Blog in 15 minutes" screencast to get excited.</li> <li>Get a copy of O'Reilly Media's <strong>Learning Ruby</strong></li> <li>Get a Mac or Linux box.<br /> (Fewer early Rails frustrations due to the fact that Rails is generally developed on these.)</li> <li>Get a copy of <strong>Agile Web Development with Rails</strong>.</li> <li>Get the version of Ruby and Rails described in that book.</li> <li>Run through that book's first section to get a feel for what it's like.</li> <li>Go to <strong>railscasts.com</strong> and view at the earliest videos for a closer look.</li> <li>Buy <strong>The Rails Way</strong> by Obie Fernandez to get a deeper understanding of Rails and what it's doing.</li> <li>Then upgrade to the newest production version of Rails, and view the latest railscasts.com videos.</li> </ul> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/64235#64235 0 Answer by Adrian Dunston for Learning Ruby on Rails Adrian Dunston 2008-09-15T16:03:18Z 2008-09-15T16:03:18Z <p>Wait a couple of months for <a href="http://oreilly.com/catalog/9780596518776/?CMP=AFC-ak_book&amp;ATT=Learning+Rails" rel="nofollow">Learning Rails by Simon St. Laurent, Edd Dumbill</a> to come out in November. That series of books is stupendous, and this book will cover the latest version of Rails.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/109784#109784 5 Answer by kurious for Learning Ruby on Rails kurious 2008-09-20T23:40:11Z 2008-09-20T23:40:11Z <p>I wrote a post called <a href="http://betterexplained.com/articles/starting-ruby-on-rails-what-i-wish-i-knew/" rel="nofollow">"Getting Started With Rails -- What I wish I knew"</a> that many people found helpful.</p> <p>The basics:</p> <ul> <li>Agile development with Rails (book)</li> <li>InstantRails for quick ruby/rails environment on Windows</li> <li>Aptana as the IDE</li> <li>Subversion for version control</li> </ul> <p>The online tutorials are decent but scattered. Invest $30 in a book for a more comprehensive understanding.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/378999#378999 1 Answer by Søren Spelling Lund for Learning Ruby on Rails Søren Spelling Lund 2008-12-18T19:49:39Z 2008-12-18T19:49:39Z <p>I really enjoy RubyMine from Jetbrains. It's still in beta but it seems like a very full featured IDE something I miss from many of the other alternatives out there. Also for a simple env I enjoy e the text editor. Plain and simple.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/385409#385409 1 Answer by Marcus Ericsson for Learning Ruby on Rails Marcus Ericsson 2008-12-22T02:27:44Z 2008-12-22T02:27:44Z <p>Once you get your environment up and running, this is helpful in giving you a basic app that users can log into.</p> <p>Restful Authentication with all the bells and whistles: <a href="http://railsforum.com/viewtopic.php?id=14216&amp;p=1" rel="nofollow">http://railsforum.com/viewtopic.php?id=14216&amp;p=1</a></p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/436323#436323 1 Answer by Clayton Bellmor for Learning Ruby on Rails Clayton Bellmor 2009-01-12T17:54:38Z 2009-01-12T17:54:38Z <p>I'm currently learning RoR, here's what I've done so far: 1. Read, and followed, SitePoint's "Simply Rails 2.2" 2. Read, and followed, Oreilly's "Rails, Up and Running" 2nd edition.</p> <p>Those two books are very instructive, and take the same approach in different styles; the second book is a little more aggressive, which is good if you have some RoR knowledge. </p> <p>As posted above, be extremely careful when reading resources, there are A LOT of outdated videos and articles.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/1082947#1082947 0 Answer by Rob for Learning Ruby on Rails Rob 2009-07-04T20:47:21Z 2009-07-04T20:47:21Z <p>Ruby: I used Learn to program (in a weekend), Ruby Visual QuickStart (believe it or not this QS book was "off the hook" excellent). This took about a week.</p> <p>Rails: I just went through Learn Rails in one "aggressive" week. Definitely feel I have the nuts and bolts. It's 2009 which I deemed important!</p> <p>Now I plan to combine a more advanced book with a real project. </p> <p>IDE: VIM with rails plugin is great if you're a vim addict. Otherwise, try any suggested above.</p> <p>Of course railscast, etc., are useful for most up to date stuff.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/1268056#1268056 0 Answer by boolean for Learning Ruby on Rails boolean 2009-08-12T18:57:20Z 2009-08-12T18:57:20Z <p>My steps was:</p> <pre><code>* Agile development with Rails (book) * Railscasts - very useful, always learn something new. * And of course the RoR API </code></pre> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/1431273#1431273 0 Answer by unknown (google) for Learning Ruby on Rails unknown (google) 2009-09-16T06:25:08Z 2009-09-16T06:25:08Z <p>Book : The Rails Way by Obie Fernandez IDE : Netbeans or TextMate.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/1681466#1681466 0 Answer by gmoore for Learning Ruby on Rails gmoore 2009-11-05T15:54:52Z 2009-11-05T16:01:58Z <p>0) LEARN RUBY FIRST. This is very important. One huge advantage of Rails is Ruby: a great language that is very powerful but also marvelously easy to misunderstand. Run through a few Ruby tutorials online. When coding challenges come up on Daily WTF, write them in Ruby. You'll pick it up fast.</p> <p>1) Go buy the book "Ruby for Rails"</p> <p>2) Check out a Rails tutorial and subscribe to the <a href="http://weblog.rubyonrails.org/" rel="nofollow">Riding Rails</a> blog.</p> <p>3) Standup an app locally. Don't use scaffolding.</p> <p>4) When you install plugins into your app, go look at the code in that plugin (in your vendor directory) and learn it. It is one of the best ways to learn Ruby and Rails internals. When you don't understand how something works, post it here and 1,000 people will help you.</p> <p>As for your other questions:</p> <p>Yes, you will need a Linux environment to develop in. You <em>can</em> develop Rails on Windows, but that doesn't mean it should be done. Lots of gems aren't up to speed on Windows.</p> <p>NetBeans works well as an IDE. If you're on a Mac, you'll get street cred for using Textmate.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/1770296#1770296 0 Answer by Ankur for Learning Ruby on Rails Ankur 2009-11-20T13:01:35Z 2009-11-20T13:01:35Z <p>Good link for learning Ruby : <a href="http://en.wikibooks.org/wiki/Ruby%5FProgramming" rel="nofollow">http://en.wikibooks.org/wiki/Ruby%5FProgramming</a></p>