Should I start with Ruby or Ruby On Rails? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T16:39:01Z http://stackoverflow.com/feeds/question/129991 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails 13 Should I start with Ruby or Ruby On Rails? Chris Pietschmann 2008-09-24T21:07:40Z 2009-11-17T03:12:35Z <p>I've been wanting to learn Ruby for a long time since there seems to be alot of buzz about it the last couple years. From what I've seen/read there have been a few Ruby'esk things that have been brought over the .NET too.</p> <p>Should I start with learning the Ruby language and just focus on writing simple command-line apps first? Or, should I start with Ruby On Rails to do Web Development first since that is what I really want to learn Ruby for?</p> <p>Also, would you recommend any books on the topic?</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130003#130003 3 Answer by ryw for Should I start with Ruby or Ruby On Rails? ryw 2008-09-24T21:09:50Z 2008-09-24T21:29:58Z <p>Start with Rails. </p> <p><a href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">Agile Web Development with Rails</a> is now in 3rd edition in beta form, so you can buy beta PDF right now for $24 and be coding late into the night tonight :)</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130007#130007 13 Answer by MattC for Should I start with Ruby or Ruby On Rails? MattC 2008-09-24T21:10:07Z 2009-11-17T03:12:35Z <p>Ruby is extremely fast to pick up so I would suggest just diving into Rails if that's your endgame, especially if you already have some idea of general programming and web application concepts.</p> <p>edit: I'd like to address the .NET kool-aid guy a few posts down. Rails is just fine for larger apps if you design and implement your app correctly.</p> <p>And yes, I learned using the Agile Development With Rails book back in the Rails 1.2 days, it's a great book!</p> <p>edit 2: I learned Ruby by doing a Rails project, so I have personal experience skipping the "lets learn the language first" methodology. It's fine.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130013#130013 3 Answer by Clinton R. Nixon for Should I start with Ruby or Ruby On Rails? Clinton R. Nixon 2008-09-24T21:10:45Z 2008-09-24T21:10:45Z <p>If you want to learn Ruby in order to develop web apps, you should learn the Ruby on Rails framework first. But - Ruby is a beautiful and powerful thing on its own, and you should make sure to learn it as you learn RoR. You'll need its power, and RoR isn't the only web framework for Ruby, so a deep knowledge of Ruby will help you no matter what framework you use.</p> <p>Although it's a bit dated, <a href="http://www.manning.com/black/" rel="nofollow">Ruby for Rails</a> is a good resource for the Rails developer who wants to improve his or her Ruby skills.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130018#130018 6 Answer by Eli Courtwright for Should I start with Ruby or Ruby On Rails? Eli Courtwright 2008-09-24T21:11:13Z 2008-09-24T21:11:13Z <p>In my experience, the best way to learn a language is to do a real project with it. With that being said, writing some command line apps with Ruby would be simpler and easier than diving right into Rails.</p> <p>So if you have some command line programs you've really been itching to write that you'd really find useful and want to experiment with and extend, then I'd start with that. On the other hand, if it's a choice between some simple teach-me-the-language command line programs or a real website that's a serious project, then I'd start with Rails.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130030#130030 1 Answer by Purfideas for Should I start with Ruby or Ruby On Rails? Purfideas 2008-09-24T21:14:16Z 2008-09-24T21:14:16Z <p>If you have a project on which to use ruby, I'd recommend starting with that. Ruby on Rails adds a bunch of things to ruby like</p> <pre><code> 8.minutes.ago cattr_accessor </code></pre> <p>and it's a good discipline good know where ruby ends and rails begins</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130141#130141 1 Answer by Paul Wicks for Should I start with Ruby or Ruby On Rails? Paul Wicks 2008-09-24T21:40:05Z 2008-09-24T21:40:05Z <p>This is exactly what I did. I started learning ruby and ROR at the same time and it was no problem. I might even suggest that it is better because the fact the you are working on a real project in rails really pushes you to learn ruby better. </p> <p>Also, Agile Web Development with Rails is a really awesome book, but you'll definitely want to go for the 3rd edition, with the way that ROR is moving and changing.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130160#130160 0 Answer by Joe Pineda for Should I start with Ruby or Ruby On Rails? Joe Pineda 2008-09-24T21:43:55Z 2008-09-25T08:16:02Z <p>With all due respect, you can reformat your question as "Should I learn C# first, or go directly to learn the .NET framework?". Or the same regarding Java/Hibernate, etc.</p> <p>The answer to the above question is exactly the same as yours. You can of course go directly trying to understand a framework without mastering the language first. And with a language as easy, simple and logical as Ruby, probably much more so than with Java/C#/etc.</p> <p>But then you'll be losing a very big part of what the language is capable of. Furthermore, some usages or constructs used within the framework (or in sample applications of it) will baffle you for you've not mastered the language first.</p> <p>If you'd like an über-simple tutorial on Ruby, try <a href="http://poignantguide.net/ruby/index.html" rel="nofollow" title="Why's Poignant Guide to Ruby">Why's Poignant's Guide to Ruby</a>. You'll learn more about Ruby in 5 minutes than you'd thought possible!!! From the same author, you can then use website <a href="http://tryruby.hobix.com/" rel="nofollow">Try Ruby!</a> to test simple Ruby constructs on your browser, without having to download a Ruby compiler/interpreter.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130182#130182 0 Answer by hectorsq for Should I start with Ruby or Ruby On Rails? hectorsq 2008-09-24T21:49:04Z 2008-09-24T21:49:04Z <p>I have been programming in the Windows environment for more than a decade. About a year ago I started to learn Ruby on Rails. </p> <p>It really felt like fresh air. </p> <p>Even if you are not to going to work in real projects in Rails it will make you a better programmer.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130259#130259 3 Answer by Alfons for Should I start with Ruby or Ruby On Rails? Alfons 2008-09-24T22:08:11Z 2008-09-24T22:08:11Z <p>If you feel Rails to daunting, try one of the little Ruby web frameworks, like Ramaze. </p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/132101#132101 0 Answer by BigD for Should I start with Ruby or Ruby On Rails? BigD 2008-09-25T08:21:52Z 2008-09-25T08:21:52Z <p>An interesting, albeit different, approach would be to start learning it with <a href="http://shoooes.net/" rel="nofollow">Ruby Shoes</a>. It's a cross-plattform GUI toolkit packaged as complete Ruby distribution, and has a lot of interesting concepts - very Web-like. Easy to install and you learn Ruby without all the conventions RoR comes with. </p> <p>AND: Documentation is availlable as PDF-Comic book :-)</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/132964#132964 1 Answer by MatthewFord for Should I start with Ruby or Ruby On Rails? MatthewFord 2008-09-25T12:21:40Z 2008-09-25T13:09:47Z <p>Hi Chris, </p> <p>Firsly Ruby/Rails support on Windows is woeful, if you only have a windows pc get vmware and install an ubuntu virtual machine, you will save yourself a world of unnecessary pain.</p> <p>Then you might want just take a few days to learn Ruby first, there are plenty of good Ruby books and tutorials about.</p> <p>Learning Rails can be tricky the majority of content out there is outdated, so make sure the version of Rails they use is 2.0 +. Peepcode.com video tutorials are extremely useful when starting out (but not free) and also check out RailsCasts as they are free.</p> <p>The majority of Ruby/Rails projects have migrated to Git, so if you're unfamiliar with it you'll need to learn that too although if you have used SVN, that shouldn't be a problem. Checkout a few opensource Rails projects on github.com and see how they do things if you get stuck.</p> <p>Good Luck</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/133205#133205 0 Answer by webmat for Should I start with Ruby or Ruby On Rails? webmat 2008-09-25T13:06:53Z 2008-09-25T13:06:53Z <p>If you find you don't have the time to dive into Ruby and/or Ruby on Rails enough for your liking, make sure you at least install Ruby and do your little admin tasks with it. Also, if you're a full-time .Net guy, do know that you can install MS IronRuby, which runs on the .Net platform, to write tests and to generally interact with .Net code.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/170715#170715 2 Answer by Theo for Should I start with Ruby or Ruby On Rails? Theo 2008-10-04T17:33:14Z 2008-10-04T17:33:14Z <p>I started programming Ruby when I got fed up with the Ant build tool and found Rake. Rake seems like a good enough reason as any to learn Ruby. I've found all sorts of use for it, and more and more for Ruby in general too.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/199674#199674 0 Answer by Chris Pietschmann for Should I start with Ruby or Ruby On Rails? Chris Pietschmann 2008-10-14T01:07:04Z 2008-10-14T01:07:04Z <p><a href="http://rads.stackoverflow.com/amzn/click/1590597664" rel="nofollow">Beginning Buby: From Novice to Professional</a> covers both the Ruby language and Rails.</p> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/1139618#1139618 0 Answer by Corban Brook for Should I start with Ruby or Ruby On Rails? Corban Brook 2009-07-16T18:59:45Z 2009-07-16T18:59:45Z <p>It is always difficult to jump into a new subject unless you already have a clear use for it. I think about high school math class, learning about trigonometry. I didn't have a use for it at the time so had difficulty learning it and didn't retain it very long after. That was until I got into some OpenGL 3D proccessing, suddenly had a use for it and all those formulas suddenly made a whole hell of a lot of sense.</p> <p>I would suggest diving right into to Ruby on Rails and learning Ruby as you go. You will retain a lot more of the ruby you learn this way, a lot better then working through some unrelated code examples.</p>