vote up 14 vote down star
11

I'm looking for a Ruby's equivalent of Code Like a Pythonista: Idiomatic Python

Desirable features:

  • easy to read
  • single document which covers all topics: tips, tricks, guidelines, caveats, and pitfalls
  • size less than a book
  • idioms should work out of the box for the standard distribution (% sudo apt-get install ruby irb rdoc)

Please, put one tutorial per answer if possible, with an example code from the tutorial and its meaning.

UPDATE:

These are the most closest to the above description resources I've encountered:

flag

poignantguide.net - but even that won't measure up to your standards for instant-learning I think. – Gishu Sep 17 '08 at 18:15
@Gishu: the direction is right, but I'd prefer something terser. – J.F. Sebastian Sep 17 '08 at 18:32

8 Answers

vote up 6 vote down check

Ruby Idioms (originally from RubyGarden) is my usual reference for idioms. It's clearly organized and fairly complete. As the author says, these are from RubyGarden, which used to be really cool (thanks Wayback Machine). But now seems to be offline.

link|flag
vote up 3 vote down

While not directly a tutorial, here is a blog that you'll find on topic

http://its.arubything.com/

link|flag
vote up 8 vote down

Here's a slideshow: Idiomatic Ruby.

Excerpt:

'until' works like 'while not'

  x = x * 2 until x > 100
link|flag
vote up 3 vote down

How about Mr. Neigborly's Humble Little Ruby Book

Excerpt:

IO.foreach("textfile.txt") {|line| puts line }
link|flag
The level of the book is a complete beginner at programming. – J.F. Sebastian Jan 28 at 12:36
vote up 7 vote down

I would suggest the perennial classic: Why's Poignant guide

It's both an introduction to Ruby and an investigation into the Ruby Way.

link|flag
I would too, +1. Unfortunately, the OP ruled it out in the comments to the question. – Gordon Wilson Jan 28 at 3:56
vote up 1 vote down

An executable guide to understanding Ruby's closures, closures-in-ruby.rb.

link|flag
vote up 1 vote down

Check out The Ruby Way and The Rails Way, they aren't tutorials but I think they will cover what you're looking for.

link|flag
"The Ruby Way" is worth reading. – J.F. Sebastian Feb 3 at 17:56
vote up 1 vote down

I found this blog recently. Haven't really got into it yet and the couple of posts I have read were a bit beginner focussed. YMMV

http://blog.rubybestpractices.com/

link|flag

Your Answer

Get an OpenID
or

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