Ruby Introduction for C# Devs - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T14:06:53Zhttp://stackoverflow.com/feeds/question/36952http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs7Ruby Introduction for C# DevsCraig2008-08-31T16:49:06Z2008-09-27T16:26:06Z
<p>I am curious about Ruby. Up to this point I have been following the whole C/C++/C# path and feel the need to branch out. Are there any references on how to get started and how it differs from other languages?</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/36954#369541Answer by John for Ruby Introduction for C# DevsJohn2008-08-31T16:51:01Z2008-08-31T16:51:01Z<p>This <a href="http://tryruby.hobix.com/" rel="nofollow">try ruby in your browser</a> demo is a little bit on the basic side, but it's good for a nice quick introduction to the language for someone that hasn't used it or read much about it already</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/36965#369651Answer by Craig Walker for Ruby Introduction for C# DevsCraig Walker2008-08-31T17:04:59Z2008-08-31T17:04:59Z<p>Since C# is close to Java, you could probably piggyback on the several "Ruby for Java programmers" articles out there; <a href="http://www.javaworld.com/javaworld/jw-07-2006/jw-0717-ruby.html" rel="nofollow">this JavaWorld article seems pretty good</a>.</p>
<p>I'm also in your boat (Java and C#, starting up with Ruby), and I just started reading the Pickaxe book ("Programming Ruby: The Pragmatic Programmer's Guide"). That was good enough to get me started with the language. However, I'd been eying Ruby from a distance for a few years, and knew a bit about what to expect; if you're brand new to the language then you might have a harder time with it.</p>
<p>In my view, there's only 4 things that are <em>really</em> different in Ruby compared to Java/C#: </p>
<ol>
<li>Blocks/closures (and that's only new to Java; C# has delegates which are the same thing)</li>
<li>Dynamic/Duck typing</li>
<li>On-the-fly definition of classes</li>
<li>"Keywords" are typically methods/functions, and can be redefined for interesting results (especially when defining classes)</li>
</ol>
<p>The rest was fairly standard Object-Oriented Programming practices, and learning a completely new standard library.</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/36969#369694Answer by Rob Bazinet for Ruby Introduction for C# DevsRob Bazinet2008-08-31T17:08:38Z2008-08-31T17:08:38Z<p>Check out the series at CodeThinked about <a href="http://www.codethinked.com/?tag=/ruby" rel="nofollow">programming Ruby from a C# perspective</a>. It is a really good series and I recommend it for any C# developer looking to learn Ruby</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/36971#369710Answer by Adam Hughes for Ruby Introduction for C# DevsAdam Hughes2008-08-31T17:11:20Z2008-08-31T17:11:20Z<p>I like <a href="http://poignantguide.net/ruby/" rel="nofollow">Why's (Poignant) Guide to Ruby</a>, but you have to like his kind of humor.</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/36980#369800Answer by Sören Kuklau for Ruby Introduction for C# DevsSören Kuklau2008-08-31T17:18:36Z2008-08-31T17:18:36Z<p>Kanook: I would add to your list that classes, integers, nil just about <em>anything</em> are full-fledged objects, which particularly in combination with your mentioned blocks makes for some rather unusual (and arguably clever) constructs like <code>5.times</code> or <code>1.upto(10) do {|x| puts x}</code>.</p>
<p>Playing with <code>irb</code> also helps a great deal with learning by trying out code.</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/37047#370472Answer by salt.racer for Ruby Introduction for C# Devssalt.racer2008-08-31T19:33:37Z2008-08-31T19:33:37Z<p>There are many things that were different for me. I came from C/C++ (no C#) and some Java. The blocks was the biggest thing that gave me issues (and to some extent still does). The other big thing for me is something that I haven't really seen mentioned, and perhaps it's because I'm slower than most, but the "#{some_var}" construct. The #{} operator assists variables in translating to strings, but what used to throw me off was the '#' making me think that there were comments strewn about all over the code I was reading.</p>
<p>Also check out: <a href="http://www.ruby-lang.org/en/documentation/ruby-from-other-languages/" rel="nofollow">http://www.ruby-lang.org/en/documentation/ruby-from-other-languages/</a></p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/37380#373801Answer by McKenzieG1 for Ruby Introduction for C# DevsMcKenzieG12008-09-01T02:17:40Z2008-09-01T02:17:40Z<p>If you like a "learning by doing" approach, you should take a look at Brian Marick's <a href="http://rads.stackoverflow.com/amzn/click/0977616614" rel="nofollow">Everyday Scripting with Ruby: For Teams, Testers, and You </a>. It combines well-written reference material with four useful and illustrative projects. (See the table of contents <a href="http://media.pragprog.com/titles/bmsft/toc.pdf" rel="nofollow">here</a>.)</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/42351#423510Answer by Brad Tutterow for Ruby Introduction for C# DevsBrad Tutterow2008-09-03T19:26:04Z2008-09-03T19:26:04Z<p>As a CSharper, I found <a href="http://rads.stackoverflow.com/amzn/click/0321480791" rel="nofollow">RailsSpace</a> to be an incredible tutorial. The only assumption is that you know something about web development. The book is a completely hands-on experience and covers all the basics on more. Even better, it has you up and writing code in just a matter of minutes.</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/143545#1435450Answer by domgblackwell for Ruby Introduction for C# Devsdomgblackwell2008-09-27T12:26:45Z2008-09-27T12:26:45Z<p>If you want to play with Rails - good resources for people coming from the Microsoft world are:</p>
<p><a href="http://www.softiesonrails.com/" rel="nofollow">Softies on rails and <a href="http://afreshcup.com" rel="nofollow">A Fresh Cup</a>. Whether or not you are moving permanently to the Ruby world or just experimenting, a lot of the 'cultural differences' are explained here. </p>
<p>But make sure you learn to write <em>Ruby</em> - if you write C# in Ruby you won't get to the best stuff like blocks, metaprogramming, open classes and so on. If you eventually need a dead tree book The Ruby Way</a> has good coverage of the range of things you can do with Ruby.</p>
http://stackoverflow.com/questions/36952/ruby-introduction-for-c-devs/143940#1439400Answer by webmat for Ruby Introduction for C# Devswebmat2008-09-27T16:26:06Z2008-09-27T16:26:06Z<p><a href="http://antoniocangiano.com/2008/08/05/ruby-on-rails-for-microsoft-developers-available-for-pre-order/" rel="nofollow">Ruby on Rails for Microsoft Developers</a> by Antonio Cangiano might also address your situation very well. I guess it depends on whether you want to learn Rails. I'm pretty sure there's a good intro to Ruby in the book, however.</p>