tags:

views:

289

answers:

7

Possible Duplicate:
What is the best way to learn Ruby?

There's tutorials on Rails but it's hard to find good on-line tutorials for Ruby.

What's your favorite one?

+1  A: 

Ruby in twenty Minutes, try the interactive console tutorial also.

http://www.ruby-lang.org/en/documentation/quickstart/

Egg
+1  A: 

I'm a fan of http://poignantguide.net/ruby/ but I don't do a lot of ruby coding, so take that with a grain of salt.

Rebthor
+1  A: 

There's nothing better to start than Try Ruby! (in your browser) you don't even need to install it to start learning it, in my opinion the site is an amazing concept

victor hugo
+1  A: 

Why's (Poignant) Guide To Ruby of course!

jpeacock
A: 

I second Egg's proposal of Ruby in Twenty Minutes. It's a great overview, even for people who already know the language. For a bit more depth, Programming Ruby is online in it's entirety. Also, here's a quick reference guide that's quite helpful for constructs and syntax. And the API documentation is indispensible once you get rolling.

Evan Meagher
A: 

Why's Poignant Guide was my favorite as well. Programming Ruby is pretty good, and I bought a copy of The Ruby Way after I had a grasp on the language. Although the relevance of a lot of the scripts in that book has faded, it was an instrumental resource in learning how to do things in an idiomatic Ruby fashion, rather than simply repeating algorithms from other, more verbose and cluttered languages in Ruby. If you're familiar with the term pythonic, you'll know what I mean.

Andrew Noyes
A: 

My favourites are:

molf