vote up 10 vote down star
14

One thing I love about ruby is that mostly it is a very readable language (which is great for self-documenting code)

However, inspired by this question: http://stackoverflow.com/questions/609612/ruby-code-explained and the description of how ||= works in ruby, I was thinking about the ruby idioms I don't use, as frankly, I don't fully grok them.

So my question is, similar to the example from the referenced question, what common, but not obvious, ruby idioms do I need to be aware of to be a truly proficient ruby programmer?

By the way, from the referenced question

a ||= b

is equivalent to

if a == nil || a == false
  a = b
end

(Thanks to Ian Terrell for the correction)

Edit: It turns out this point is not totally uncontroversial. The correct expansion is in fact

(a || (a = (b)))

See these links for why:

Thanks to Jörg W Mittag for pointing this out.

flag

77% accept rate
it's often more concisely stated as: foo ||= bar is equivalent to foo || foo = bar – Gareth Mar 5 at 8:43
I think it's more clear to say it's equivalent to foo = foo || bar, in the same way that foo *= bar is equivalent to foo = foo * bar. – Chuck Mar 5 at 8:51
Chuck - except that's not true. The difference is in cases like obj.foo ||= bar If it was obj.foo = obj.foo || bar then obj.foo= would be called even if obj.foo was falseish (and obj.foo= might have side effects). But that isn't how it works – Gareth Mar 5 at 10:02
Very readable? Compared to what? I find that Ruby lends itself well to stupid code tricks (35 ways to write a loop! blocks and lambdas and other things) but the idioms make it quite unreadable. However, since there are so many ways to do things, it's always easy to find a way (or several) to do something... – yar May 30 at 9:13

6 Answers

vote up 13 vote down check

The magic if clause that lets the same file serve as a library or a script:

if __FILE__ == $0
  # this library may be run as a standalone script
end

Packing and unpacking arrays:

# put the first two words in a and b and the rest in arr
a,b,*arr = *%w{a dog was following me, but then he decided to chase bob}
# this holds for method definitions to
def catall(first, *rest)
  rest.map { |word| first + rest }
end
catall( 'franken', 'stein', 'berry', 'sense' ) #=> [ 'frankenstein', 'frankenberry', 'frankensense' ]

The syntatical sugar for hashes as method arguments

this(:is => :the, :same => :as)
this({:is => :the, :same => :as})

Hash initializers:

# this
animals = Hash.new { [] }
animals[:dogs] << :Scooby
animals[:dogs] << :Scrappy
animals[:dogs] << :DynoMutt
animals[:squirrels] << :Rocket
animals[:squirrels] << :Secret
animals #=> {}
# is not the same as this
animals = Hash.new { |_animals, type| _animals[type] = [] }
animals[:dogs] << :Scooby
animals[:dogs] << :Scrappy
animals[:dogs] << :DynoMutt
animals[:squirrels] << :Rocket
animals[:squirrels] << :Secret
animals #=> {:squirrels=>[:Rocket, :Secret], :dogs=>[:Scooby, :Scrappy, :DynoMutt]}

metaclass syntax

x = Array.new
y = Array.new
class << x
  # this acts like a class definition, but only applies to x
  def custom_method
     :pow
  end
end
x.custom_method #=> :pow
y.custom_method # raises NoMethodError

class instance variables

class Ticket
  @remaining = 3
  def self.new
    if @remaining > 0
      @remaining -= 1
      super
    else
      "IOU"
    end
  end
end
Ticket.new #=> Ticket
Ticket.new #=> Ticket
Ticket.new #=> Ticket
Ticket.new #=> "IOU"

Blocks, procs, and lambdas. Live and breathe them.

 # know how to pack them into an object
 block = lambda { |e| puts e }
 # unpack them for a method
 %w{ and then what? }.each(&block)
 # create them as needed
 %{ I saw a ghost! }.each { |w| puts w.upcase }
 # and from the method side, how to call them
 def ok
   yield :ok
 end
 # or pack them into a block to give to someone else
 def ok_dokey_ok(&block)
    ok(&block)
    block[:dokey] # same as block.call(:dokey)
    ok(&block)
 end
 # know where the parentheses go when a method takes arguments and a block.
 %w{ a bunch of words }.inject(0) { |size,w| size + 1 } #=> 4
 pusher = lambda { |array, word| array.unshift(word) }
 %w{ eat more fish }.inject([], &pusher) #=> ['fish', 'more', 'eat' ]
link|flag
+1 - Thanks, this is a great post. Can you expand for me on what the '&' represents in '&block' ? – DanSingerman Mar 5 at 10:48
The & means that block is a proc parameter. – Martinho Fernandes Mar 5 at 11:27
it depends. & as the prefix to the final argument to a method CALL means to take the Proc object in that variable and unpack it into a block to pass to the method. – rampion Mar 5 at 13:33
[continued] & as the prefix to the final argument to a method DEFINITION means pack the block passed to that method into an object, and assign it to that variable – rampion Mar 5 at 13:34
vote up 1 vote down

I like this:

str = "Something evil this way comes!"
regexp = /(\w[aeiou])/

str[regexp, 1] # <- This

Which is (roughly) equivalent to:

str_match = str.match(regexp)
str_match[1] unless str_match.nil?

Or at least that's what I've used to replace such blocks.

link|flag
vote up 3 vote down

This slideshow is quite complete on the main Ruby idioms, as in:

  • Swap two values:

    x, y = y, x

  • Parameters that, if not specified, take on some default value

    def somemethod(x, y=nil)

  • Batches up extraneous parameters into an array

    def substitute(re, str, *rest)

And so on...

link|flag
vote up 3 vote down

I would suggest reading through the code of popular and well designed plugins or gems from people you admire and respect.

Some examples I've run into:

if params[:controller] == 'discussions' or params[:controller] == 'account'
  # do something here
end

corresponding to

if ['account', 'discussions'].include? params[:controller]
  # do something here
end

which later would be refactored to

if ALLOWED_CONTROLLERS.include? params[:controller]
  # do something here
end
link|flag
vote up 2 vote down

Here's a few, culled from various sources:

use "unless" and "until" instead of "if not" and "while not". Try not to use "unless" when an "else" condition exists, though.

Remember you can assign multiple variables at once:

a,b,c = 1,2,3

and even swap variable without a temp:

a,b = b,a

Use trailing conditionals where appropriate, e.g.

do_something_interesting unless want_to_be_bored?

Be aware of a commonly-used but not instantly obvious (to me at least) way of defining class methods:

class Animal
  class<<self
    def class_method
      puts "call me using Animal.class_method"
    end
  end
end

Some references:

link|flag
vote up 1 vote down

By the way, from the referenced question

a ||= b

is equivalent to

if a == nil   
  a = b 
end

That's subtly incorrect, and is a source of bugs in newcomers' Ruby applications.

Since both (and only) nil and false evaluate to a boolean false, a ||= b is actually (almost*) equivalent to:

if a == nil || a == false
  a = b
end

Or, to rewrite it with another Ruby idiom:

a = b unless a

(*Since every statement has a value, these are not technically equivalent to a ||= b. But if you're not relying on the value of the statement, you won't see a difference.)

link|flag
Thanks - I will edit my question to reflect this – DanSingerman Mar 5 at 15:26
I'm sorry, but your examples are wrong. This has been discussed numerous times on pretty much every mailinglist, newsgroup, forum and blog imaginable and the "best" answer (at least so far, until somebody finds yet another counterexample) is: a ||= b is equivalent to (a || (a = (b))) – Jörg W Mittag Mar 5 at 18:57
See DABlog.RubyPAL.Com/2008/3/… , DABlog.RubyPAL.Com/2008/3/… and ProcNew.Com/ruby-short-circuit-edge-case-response… for a discussion which shows that even Ruby luminaries like David Alan Black get it wrong. – Jörg W Mittag Mar 5 at 19:00
No need to be sorry. My true point is that people forget that if you're working with booleans your false value can get overwritten. My examples aren't (in spirit) about rephrasing the idiom; they're about making it as expressive as possible so that people remember not just the nil case, but false. – Ian Terrell Mar 5 at 20:32

Your Answer

Get an OpenID
or

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