Ruby and Ruby on Rails crash course syllabus - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T17:02:06Z http://stackoverflow.com/feeds/question/560163 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/560163/ruby-and-ruby-on-rails-crash-course-syllabus 2 Ruby and Ruby on Rails crash course syllabus Chirantan 2009-02-18T07:33:18Z 2009-02-19T10:02:26Z <p>I intend to design an induction plan or you can say a crash course syllabus for developers starting to learn Ruby and Ruby on rails. I am not sure about number of topics to be covered (And the depth of coverage) as this is a 3 day course (24 to 27 hours). Also, newbies tend to compare ruby with existing object oriented programming veterans like C++, Java or C#. But since Ruby is pretty different (Absence of abstract classes, interfaces, virtual keyword etc and presence of concepts like modules, mixins etc), how should the course be designed so that newbies start <strong>"thinking" in ruby</strong>? Because, I believe that once they start doing that, those experienced in C++, Java or C# can pick it up quickly. </p> <p>Could I get some tips or possibly an abstract of ruby/rails course which you might be using already from experienced ruby/rails instructors?</p> <p>The intend is to make newbies, the developers of production ruby/rails applications as soon as possible.</p> <p>The course can be extended to be of up to 5 days (40 to 45 hours) if needed.</p> http://stackoverflow.com/questions/560163/ruby-and-ruby-on-rails-crash-course-syllabus/560195#560195 2 Answer by Commander Keen for Ruby and Ruby on Rails crash course syllabus Commander Keen 2009-02-18T07:56:24Z 2009-02-18T07:56:24Z <p>I like to show people code to illustrate the differences. How about you start with a simple loop: </p> <blockquote> <p>10.times do |x| ...</p> </blockquote> <p>Showing that even a fixed number is an object should wake them up.</p> <p>You could also show that it's never too late to modify a class:</p> <pre><code>class Fixnum attr_accessor :foo end &gt;&gt; 10.foo = "bar" =&gt; "bar" </code></pre> <p>A quick look on Ruby in Twenty Minutes could give some ideas too: <a href="http://www.ruby-lang.org/en/documentation/quickstart/" rel="nofollow">http://www.ruby-lang.org/en/documentation/quickstart/</a> </p> http://stackoverflow.com/questions/560163/ruby-and-ruby-on-rails-crash-course-syllabus/560324#560324 1 Answer by Chirantan for Ruby and Ruby on Rails crash course syllabus Chirantan 2009-02-18T09:06:17Z 2009-02-18T09:06:17Z <p>I found this <a href="http://www.bignerdranch.com/classes/ruby_ruby_on_rails.shtml" rel="nofollow">here</a>. They also have an <a href="http://www.bignerdranch.com/classes/advanced_ruby_on_rails.shtml" rel="nofollow">advanced course on rails</a>. However, both are 7 whole day courses. Need to compress/cut some things.</p> <p><img src="http://www.freeimagehosting.net/uploads/deb9ba083a.png" alt="alt text" /></p> http://stackoverflow.com/questions/560163/ruby-and-ruby-on-rails-crash-course-syllabus/564606#564606 0 Answer by Akshay for Ruby and Ruby on Rails crash course syllabus Akshay 2009-02-19T10:02:26Z 2009-02-19T10:02:26Z <p>I think this excellent tutorial will help to get started with rails real quick: <a href="http://www.onlamp.com/pub/a/onlamp/2006/12/14/revisiting-ruby-on-rails-revisited.html" rel="nofollow">http://www.onlamp.com/pub/a/onlamp/2006/12/14/revisiting-ruby-on-rails-revisited.html</a><br /> It demonstrates how you go about building a simple rails app and i think thats the best way to show people how its different. and once you've got their attention, throw in other things like mixins etc.</p>