up vote 153 down vote favorite
226
share [g+] share [fb]

Continuing the "Hidden features of ..." meme, let's share the lesser-known but useful features of Ruby programming language.

Try to limit this discussion with core Ruby, without any Ruby on Rails stuff.

See also:

(Please, just one hidden feature per answer.)

Thank you

link|improve this question
show 1 more comment
feedback

45 Answers

1 2
private unless Rails.env == 'test'
# e.g. a bundle of methods you want to test directly

Looks like a cool and (in some cases) nice/useful hack/feature of Ruby.

link|improve this answer
feedback

I find this useful in some scripts. It makes it possible to use environment variables directly, like in shell scripts and Makefiles. Environment variables are used as fall-back for undefined Ruby constants.

>> class <<Object
>>  alias :old_const_missing :const_missing
>>  def const_missing(sym)
>>   ENV[sym.to_s] || old_const_missing(sym)
>>  end
>> end
=> nil

>> puts SHELL
/bin/zsh
=> nil
>> TERM == 'xterm'
=> true
link|improve this answer
feedback

How about opening a file based on ARGV[0]?

readfile.rb:

$<.each_line{|l| puts l}

ruby readfile.rb testfile.txt

It's a great shortcut for writing one-off scripts. There's a whole mess of pre-defined variables that most people don't know about. Use them wisely (read: don't litter a code base you plan to maintain with them, it can get messy).

link|improve this answer
7  
ARGF is a little more memorable than $<, IMHO. – Benjamin Oakes Oct 9 '09 at 14:59
feedback

To combine multiple regexes with |, you can use

Regexp.union /Ruby\d/, /test/i, "cheat"

to create a Regexp similar to:

/(Ruby\d|[tT][eE][sS][tT]|cheat)/
link|improve this answer
feedback

I'm a fan of:

%w{An Array of strings} #=> ["An", "Array", "of", "Strings"]

It's sort of funny how often that's useful.

link|improve this answer
7  
I use it a fair bit as well. You can use a delimiter %w{A two\ word example} if you need to avoid splitting on a certain space. – Andrew Grimm Oct 1 '10 at 0:03
feedback

Multiple return values

def getCostAndMpg
    cost = 30000  # some fancy db calls go here
    mpg = 30
    return cost,mpg
end
AltimaCost, AltimaMpg = getCostAndMpg
puts "AltimaCost = #{AltimaCost}, AltimaMpg = #{AltimaMpg}"

Parallel Assignment

i = 0
j = 1
puts "i = #{i}, j=#{j}"
i,j = j,i
puts "i = #{i}, j=#{j}"

Virtual Attributes

class Employee < Person
  def initialize(fname, lname, position)
    super(fname,lname)
    @position = position
  end
  def to_s
     super + ", #@position"
  end
  attr_writer :position
  def etype
     if @position == "CEO" || @position == "CFO"
         "executive"
     else
         "staff"
     end
  end
end
employee = Employee.new("Augustus","Bondi","CFO")
employee.position = "CEO"
puts employee.etype    =>  executive
employee.position = "Engineer"
puts employee.etype    =>  staff

method_missing - a wonderful idea

(In most languages when a method cannot be found and error is thrown and your program stops. In ruby you can actually catch those errors and perhaps do something intelligent with the situation)

class MathWiz
  def add(a,b) 
    return a+b
  end
  def method_missing(name, *args)
    puts "I don't know the method #{name}"
  end
end
mathwiz = MathWiz.new
puts mathwiz.add(1,4)
puts mathwiz.subtract(4,2)

5

I don't know the method subtract

nil

link|improve this answer
show 1 more comment
feedback

James A. Rosen's tip is cool ([*items].each), but I find that it destroys hashes:

irb(main):001:0> h = {:name => "Bob"}
=> {:name=>"Bob"}
irb(main):002:0> [*h]
=> [[:name, "Bob"]]

I prefer this way of handling the case when I accept a list of things to process but am lenient and allow the caller to supply one:

irb(main):003:0> h = {:name => "Bob"}
=> {:name=>"Bob"}
irb(main):004:0> [h].flatten
=> [{:name=>"Bob"}]

This can be combined with a method signature like so nicely:

def process(*entries)
  [entries].flatten.each do |e|
    # do something with e
  end
end
link|improve this answer
feedback

I just love the inline keyword rescue like this:
EDITED EXAMPLE:

@user #=> nil (but I did't know)
@user.name rescue "Unknown"
link_to( d.user.name, url_user( d.user.id, d.user.name)) rescue 'Account removed'

This avoid breaking my App and is way better than the feature released at Rails .try()

link|improve this answer
8  
a good way to hide bugs – Alexey Apr 20 '10 at 19:15
4  
Yep, also a great way to silently break the app.. one must be really careful using! – Fabiano PS Apr 22 '10 at 14:53
show 4 more comments
feedback

Calling a method defined anywhere in the inheritance chain, even if overridden

ActiveSupport's objects sometimes masquerade as built-in objects.

require 'active_support'
days = 5.days
days.class  #=> Fixnum
days.is_a?(Fixnum)  #=> true
Fixnum === days  #=> false (huh? what are you really?)
Object.instance_method(:class).bind(days).call  #=> ActiveSupport::Duration (aha!)
ActiveSupport::Duration === days  #=> true

The above, of course, relies on the fact that active_support doesn't redefine Object#instance_method, in which case we'd really be up a creek. Then again, we could always save the return value of Object.instance_method(:class) before any 3rd party library is loaded.

Object.instance_method(...) returns an UnboundMethod which you can then bind to an instance of that class. In this case, you can bind it to any instance of Object (subclasses included).

If an object's class includes modules, you can also use the UnboundMethod from those modules.

module Mod
  def var_add(more); @var+more; end
end
class Cla
  include Mod
  def initialize(var); @var=var; end
  # override
  def var_add(more); @var+more+more; end
end
cla = Cla.new('abcdef')
cla.var_add('ghi')  #=> "abcdefghighi"
Mod.instance_method(:var_add).bind(cla).call('ghi')  #=> "abcdefghi"

This even works for singleton methods that override an instance method of the class the object belongs to.

class Foo
  def mymethod; 'original'; end
end
foo = Foo.new
foo.mymethod  #=> 'original'
def foo.mymethod; 'singleton'; end
foo.mymethod  #=> 'singleton'
Foo.instance_method(:mymethod).bind(foo).call  #=> 'original'

# You can also call #instance method on singleton classes:
class << foo; self; end.instance_method(:mymethod).bind(foo).call  #=> 'singleton'
link|improve this answer
feedback

each_with_index method for any enumarable object ( array,hash,etc.) perhaps?

myarray = ["la", "li", "lu"]
myarray.each_with_index{|v,idx| puts "#{idx} -> #{v}"}

#result:
#0 -> la
#1 -> li
#2 -> lu

Maybe it's more well known than other answers but not that well known for all ruby programmers :)

link|improve this answer
6  
With 1.9, you get #with_index on every Enumerator, aka myarray.each.with_index or even myarray.map.with_index. – Tass Oct 24 '10 at 14:52
feedback

There are some aspects of symbol literals that people should know. One case solved by special symbol literals is when you need to create a symbol whose name causes a syntax error for some reason with the normal symbol literal syntax:

:'class'

You can also do symbol interpolation. In the context of an accessor, for example:

define_method :"#{name}=" do |value|
  instance_variable_set :"@#{name}", value
end
link|improve this answer
feedback
class A

  private

  def my_private_method
    puts 'private method called'
  end
end

a = A.new
a.my_private_method # Raises exception saying private method was called
a.send :my_private_method # Calls my_private_method and prints private method called'
link|improve this answer
2  
The purpose of private methods is to hide them from general use so that if/when they change, code doesn't break. If you know what you are doing - go ahead and call a private method. The fact that Ruby forces you to use the quite different looking call (with .send) makes it obvious that this call is special. Most dynamic languages let you circumvent private method definitions because sometimes it's handy. – rfunduk Jun 22 '09 at 14:29
4  
Visibility rules in most languages are meant to protect you from mistakes, not fraud, as Stroustrop said. – JasonTrue Jun 29 '09 at 23:46
2  
Add this to "Ruby Worst Practices" list. – macek Mar 18 '10 at 4:34
1  
@everyone who hates this: its obviously a hack. you shouldn't use it except as a last resort, just like all other hacks, but when you do need it, you will be pretty glad its there, again, just like all other hacks. – Matt Briggs Jun 30 '10 at 3:11
2  
@rogerdpack: There's send_public if you only want to send it to a public method. There don't seem to be equivalents for private or protected though... – Andrew Grimm Oct 1 '10 at 0:06
show 7 more comments
feedback
@user #=> nil (but I did't know)
@user.name rescue "Unknown"
link|improve this answer
1  
I prefer andand for this use case. andand.rubyforge.org – Joe Martinez Jul 27 '10 at 14:11
show 1 more comment
feedback

Ruby has a call/cc mechanism allowing one to freely hop up and down the stack.

Simple example follows. This is certainly not how one would multiply a sequence in ruby, but it demonstrates how one might use call/cc to reach up the stack to short-circuit an algorithm. In this case, we're recursively multiplying a list of numbers until we either have seen every number or we see zero (the two cases where we know the answer). In the zero case, we can be arbitrarily deep in the list and terminate.

#!/usr/bin/env ruby

def rprod(k, rv, current, *nums)
  puts "#{rv} * #{current}"
  k.call(0) if current == 0 || rv == 0
  nums.empty? ? (rv * current) : rprod(k, rv * current, *nums)
end

def prod(first, *rest)
  callcc { |k| rprod(k, first, *rest) }
end

puts "Seq 1:  #{prod(1, 2, 3, 4, 5, 6)}"
puts ""
puts "Seq 2:  #{prod(1, 2, 0, 3, 4, 5, 6)}"

You can see the output here:

http://codepad.org/Oh8ddh9e

For a more complex example featuring continuations moving the other direction on the stack, read the source to Generator.

link|improve this answer
4  
One shouldn't use callcc. From Matz' book: Implementation difficulties prevent other implementations of Ruby (such as JRuby, the Java-based implementation) from supporting continuations. Because they are no longer well supported, continuations should be considered a curiosity, and new Ruby code should not use them. – Marc-André Lafortune Dec 4 '09 at 14:49
feedback

I just read all the answers... one notable omission was destructuring assignment:

> (a,b),c = [[1,2],3]
=> [[1,2],3]
> a
=> 1

It also works for block parameters. This is useful when you have nested arrays, each element of which represents something distinct. Instead of writing code like "array[0][1]", you can break that nested array down and give a descriptive name to each element, in a single line of code.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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