up vote 4 down vote favorite
8
share [g+] share [fb]

What are some good online tutorials/quick starts/screencasts to get up to speed on Ruby development? I recently read Brad Wilson's Ruby article in the Sep/Oct 2008 issue of CoDe magazine and would like to continue down the Ruby/IronRuby path.

(My background is mainly C# and .NET.)

link|improve this question
feedback

closed as not constructive by Will Nov 22 '11 at 16:40

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

10 Answers

up vote 9 down vote accepted

Ruby is one of my favorite languages, here's a few places to start.

Why's Poignant Guide To Ruby is pretty hilarious and educational.

Ruby Documentation has lots of links.

Programming Ruby is a free, online version of one of the best Ruby books out there.

link|improve this answer
Programming Ruby is much too haphazard in the presentation of material. Either "The Ruby Programming Language" or "The Well Grounded Rubyist" are much better choices for getting into the language. – Pinochle Aug 24 '09 at 12:40
feedback

You should read Why's (Poignant) Guide to Ruby

And if you are too old, read

alt text

As you have .NET background, also try

alt text

link|improve this answer
feedback

You should check out The Ruby Way by Hal Fulton. It is one of the best Ruby books out there. It should be able to answer most of your Ruby questions when starting out.

link|improve this answer
feedback

Huw Collingbourne's Book Of Ruby is a work-in-progress but quite decent as far as it goes.

Otherwise, grab the One-Click Installer (assuming you're on Windows) and have a go. Digging around the ruby-lang.org Documentation page will get you more stuff than you can probably stand.

If you're behind a proxy server and want to try out some of the goodness that is rubygems (easy-to-download libraries, very cool), you may need extra authentication help from RubySSPI without which the gem library can struggle to get to the interwebs.

link|improve this answer
feedback

You buy the Programming Ruby - Pickaxe book
OR for a non-orthodox entry Why's Poignant guide to Ruby

link|improve this answer
feedback

Don't forget to simply Try Ruby In Your Browser.

link|improve this answer
Due to _why's quiting the community this site is no longer available, a reasonable alternative is codepad.org – Davy Landman Aug 24 '09 at 12:27
Andrew McElroy and David Miani took the project over - changed link. – philippe Sep 11 '11 at 8:45
feedback

I'd highly recommend why's (poignant) guide to ruby. It's both informative, funny, and nothing like any programming book you've ever read. Oh and it's free. :)

Also great to read is Agile Web Development with Rails

link|improve this answer
feedback

Mr. Neighborly's Humble Little Ruby Book is a nice introduction to the language. It's well-written with a chatty, witty style.

link|improve this answer
feedback

As I fellow .NET dev I would recommend this book. It explains the Ruby language syntax with comparisons to C#, then takes a dive into rails.

link|improve this answer
feedback

You should checkout "Interactive Programming Books" from http://roorky.com. The interactive books(iPUBs) can be a very good start to learn new language like Ruby and Python. They have a reader which can be used to execute code snippets while reading the book itself.

-- PK

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.