vote up 32 vote down star
57

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

flag

27 Answers

vote up 27 vote down

Peter Cooper has a good list of Ruby tricks. Perhaps my favorite of his is allowing both single items and collections to be enumerated. (That is, treat a non-collection object as a collection containing just that object.) It looks like this:

[*items].each do |item|
  # ...
end
link|flag
i love this one :) – banister Aug 3 at 20:41
vote up 19 vote down

One trick I like it to use the splat(*) expander on objects other than Arrays. Here's an example on a regular expression match:

match, text, number = *"Something 981".match(/([A-z]*) ([0-9]*)/)

Other examples include:

a, b, c = *('A'..'Z')

Job = Struct.new(:name, :occupation)
tom = Job.new("Tom", "Developer")
name, occupation = *tom
link|flag
2  
Incidentally, for the curious, this works by implicitly calling to_a on the target of the splat. – Bob Aman Jun 22 at 11:43
vote up 16 vote down

Don't know how hidden this is, but I've found it useful when needing to make a Hash out of a one-dimensional array:

fruit = ["apple","red","banana","yellow"]
=> ["apple", "red", "banana", "yellow"]

Hash[*fruit]    
=> {"apple"=>"red", "banana"=>"yellow"}
link|flag
vote up 13 vote down

From Ruby 1.9 Proc#=== is an alias to Proc#call, which means Proc objects can be used in case statements like so:

def multiple_of(factor)
  Proc.new{|product| product.modulo(factor).zero?}
end

case number
  when multiple_of(3): puts "Multiple of 3"
  when multiple_of(7): puts "Multuple of 7"
end
link|flag
vote up 11 vote down

Another tiny feature - convert a Fixnum into any base up to 36:

>> 1234567890.to_s(2)
=> "1001001100101100000001011010010"

>> 1234567890.to_s(8)
=> "11145401322"

>> 1234567890.to_s(16)
=> "499602d2"

>> 1234567890.to_s(24)
=> "6b1230i"

>> 1234567890.to_s(36)
=> "kf12oi"
link|flag
vote up 10 vote down

Download Ruby 1.9 source, and issue make golf, then you can do things like this:

make golf

./goruby -e 'h'
# => Hello, world!

./goruby -e 'p St'
# => StandardError

./goruby -e 'p 1.tf'
# => 1.0

./goruby19 -e 'p Fil.exp(".")'
"/home/manveru/pkgbuilds/ruby-svn/src/trunk"

Read the golf_prelude.c for more neat things hiding away.

link|flag
vote up 10 vote down

module_function

Module methods that are declared as *module_function* will create copies of themselves as private instance methods in the class that includes the Module:

module M
  def not!
    'not!'
  end
  module_function :not!
end

class C
  include M

  def fun
    not!
  end
end

M.not!     # => 'not!
C.new.fun  # => 'not!'
C.new.not! # => NoMethodError: private method `not!' called for #<C:0x1261a00>

If you use *module_function* without any arguments, then any module methods that comes after the module_function statement will automatically become module_functions themselves.

module M
  module_function

  def not!
    'not!'
  end

  def yea!
    'yea!'
  end
end


class C
  include M

  def fun
    not! + ' ' + yea!
  end
end
M.not!     # => 'not!'
M.yea!     # => 'yea!'
C.new.fun  # => 'not! yea!'
link|flag
If you just want to declare private methods in modules, just use the private keyword. In addition to making the method private in classes that include the module, module_function copies the method to the module instance. In most cases this is not what you want. – tomafro Apr 3 at 8:24
I know you can just use private. But this is a question on Ruby's hidden features. And, I think most people have never heard of module_function (myself included) until they see it in the doc and start to play around with it. – newtonapple Apr 7 at 18:43
vote up 8 vote down

Warning: this item was voted #1 Most Horrendous Hack of 2008, so use with care. Actually, avoid it like the plague, but it is most certainly Hidden Ruby.

Superators Add New Operators to Ruby

Ever want a super-secret handshake operator for some unique operation in your code? Like playing code golf? Try operators like -~+~- or <--- That last one is used in the examples for reversing the order of an item.

I have nothing to do with the Superators Project beyond admiring it.

link|flag
2  
Ha ha ha, proper hack! – Iraimbilanja Mar 18 at 8:17
vote up 7 vote down

Another fun addition in 1.9 Proc functionality is Proc#curry which allows you to turn a Proc accepting n arguments into one accepting n-1. Here it is combined with the Proc#=== tip I mentioned above:

it_is_day_of_week = lambda{ |day_of_week, date| date.wday == day_of_week }
it_is_saturday = it_is_day_of_week.curry[6]
it_is_sunday = it_is_day_of_week.curry[0]

case Time.now
when it_is_saturday
  puts "Saturday!"
when it_is_sunday
  puts "Sunday!"
else
  puts "Not the weekend"
end
link|flag
vote up 6 vote down

One final one - in ruby you can use any character you want to delimit strings. Take the following code:

message = "My message"
contrived_example = "<div id=\"contrived\">#{message}</div>"

If you don't want to escape the double-quotes within the string, you can simply use a different delimiter:

contrived_example = %{<div id="contrived-example">#{message}</div>}
contrived_example = %[<div id="contrived-example">#{message}</div>]

As well as avoiding having to escape delimiters, you can use these delimiters for nicer multiline strings:

sql = %{
    SELECT strings 
    FROM complicated_table
    WHERE complicated_condition = '1'
}
link|flag
vote up 5 vote down

The send() method is a general-purpose method that can be used on any Class or Object in Ruby. If not overridden, send() accepts a string and calls the name of the method whose string it is passed. For example, if the user clicks the “Clr” button, the ‘press_clear’ string will be sent to the send() method and the ‘press_clear’ method will be called. The send() method allows for a fun and dynamic way to call functions in Ruby.

 %w(7 8 9 / 4 5 6 * 1 2 3 - 0 Clr = +).each do |btn|
    button btn, :width => 46, :height => 46 do
      method = case btn
        when /[0-9]/: 'press_'+btn
        when 'Clr': 'press_clear'
        when '=': 'press_equals'
        when '+': 'press_add'
        when '-': 'press_sub'
        when '*': 'press_times'
        when '/': 'press_div'
      end

      number.send(method)
      number_field.replace strong(number)
    end
  end

I talk more about this feature in Blogging Shoes: The Simple-Calc Application

link|flag
Sounds like a great way to open a security hole. – mP Apr 2 at 13:31
vote up 5 vote down

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|flag
ARGF is a little more memorable than $<, IMHO. – Benjamin Oakes Oct 9 at 14:59
vote up 4 vote down

I find using the define_method command to dynamically generate methods to be quite interesting and not as well known. For example:

((0..9).each do |n|
    define_method "press_#{n}" do
      @number = @number.to_i * 10 + n
    end
  end

The above code uses the 'define_method' command to dynamically create the methods "press1" through "press9." Rather then typing all 10 methods which essentailly contain the same code, the define method command is used to generate these methods on the fly as needed.

link|flag
vote up 4 vote down

A lot of the magic you see in Rubyland has to do with metaprogramming, which is simply writing code that writes code for you. Ruby's attr_accessor, attr_reader, and attr_writer are all simple metaprogramming, in that they create two methods in one line, following a standard pattern. Rails does a whole lot of metaprogramming with their relationship-management methods like has_one and belongs_to.

But it's pretty simple to create your own metaprogramming tricks using class_eval to execute dynamically-written code.

The following example allows a wrapper object to forwards certain methods along to an internal object:

class Wrapper
  attr_accessor :internal

  def self.forwards(*methods)
    [*methods].each do |method|
      class_eval("
        def #{method}(*args, &blk)
          self.internal.send(#{method.to_sym.inspect}, *args, &blk)
        end
      ")
    end
  end

  forwards :to_i, :length, :split
end

w = Wrapper.new
w.internal = "12 13 14"
puts w.to_i
puts w.length
puts w.split('1')

Note the use of [*methods] (pointed out elsewhere in this thread) to enumerate over the arguments given. Then, for each of those given, we use class_eval to create a new method whose job it is to send the message along, including all arguments and blocks.

A great resource for metaprogramming issues is Why the Lucky Stuff's "Seeing Metaprogramming Clearly".

link|flag
I wish to dive head first into metaprogramming in ruby. Could you provide some references to get started with it (Other than the given link)? Books will do too. Thanks. – Chirantan May 5 at 9:05
PragProg's videocasting serie "The Ruby Object Model and Metaprogramming" its a good introduction to meta programming using ruby: pragprog.com/screencasts/v-dtrubyom/… – caffo Jun 22 at 7:38
vote up 3 vote down

Fool some class or module telling it has required something that it really hasn't required:

$" << "something"

This is useful for example when requiring A that in turns requires B but we don't need B in our code (and A won't use it either through our code):

For example, Backgroundrb's bdrb_test_helper requires 'test/spec', but you don't use it at all, so in your code:

$" << "test/spec"
require File.join(File.dirname(__FILE__) + "/../bdrb_test_helper")
link|flag
vote up 3 vote down

use anything that responds to ===(obj) for case comparisons:

case foo
when /baz/
  do_something_with_the_string_matching_baz
when 12..15
  do_something_with_the_integer_between_12_and_15
when lambda { |x| x % 5 == 0 }
  # only works in Ruby 1.9 or if you alias Proc#call as Proc#===
  do_something_with_the_integer_that_is_a_multiple_of_5
when Bar
  do_something_with_the_instance_of_Bar
when some_object
  do_something_with_the_thing_that_matches_some_object
end

Module (and thus Class), Regexp, Date, and many other classes define an instance method :===(other), and can all be used.

Thanks to Farrel for the reminder of Proc#call being aliased as Proc#=== in Ruby 1.9.

link|flag
vote up 3 vote down

The Symbol#to_proc function that Rails provides is really cool.

Instead of

Employee.collect { |emp| emp.name }

You can write:

Employee.collect(&:name)
link|flag
This is, apparently, an "order of magnitude slower" than using a block. igvita.com/2008/07/… – Charles Roper Sep 20 '08 at 15:51
I just tried it out, and found there was no significant difference between the two. I'm not sure where this "order of magnitude" stuff came from. (Using Ruby 1.8.7) – Matt Grande Apr 13 at 19:54
Doing this outside of Rails is also handy and can be done with require 'activesupport' since that's actually where most of these helpers are from. – thenduks Jun 22 at 14:23
vote up 3 vote down

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|flag
vote up 3 vote down

One of the cool things about ruby is that you can call methods and run code in places other languages would frown upon, such as in method or class definitions.

For instance, to create a class that has an unknown superclass until run time, i.e. is random, you could do the following:

class RandomSubclass < [Array, Hash, String, Fixnum, Float, TrueClass].rand

end

RandomSubclass.superclass # could output one of 6 different classes.

This assumes you have an Array#rand method (such as provided in Rails), and the example is pretty contrived but you can see the power here.

Another cool example is the ability to put default parameter values that are non fixed (like other languages often demand):

def do_something_at(something, at = Time.now)
   # ...
end

Of course the problem with the first example is that it is evaluated at definition time, not call time. So, once a superclass has been chosen, it stays that superclass for the remainder of the program.

However, in the second example, each time you call do_something_at, the at variable will be the time that the method was called (well, very very close to it)

link|flag
Note: Array#rand is provided by ActiveSupport which you can use outside of Rails as easily as require 'activesupport' – thenduks Jun 22 at 14:27
insanity! thank you, – squadette Jul 20 at 19:54
vote up 2 vote down

Class.new()

Create a new class at run time. The argument can be a class to derive from, and the block is the class body. You might also want to look at const_set/const_get/const_defined? to get your new class properly registered, so that inspect prints out a name instead of a number.

Not something you need every day, but quite handy when you do.

link|flag
vote up 2 vote down

Hashes with default values! An array in this case.

parties = Hash.new {|hash, key| hash[key] = [] }
parties["Summer party"]
# => []

parties["Summer party"] << "Joe"
parties["Other party"] << "Jane"

Very useful in metaprogramming.

link|flag
vote up 1 vote down

Interpolation is faster than concatenation

This seems slightly counter intuitive, but it's true. See Chris Blackburn's great blog post: Ruby Performance :: Use Double Quotes vs. Single Quotes

link|flag
That post appears to have been removed. – thenduks Jul 11 at 15:26
vote up 1 vote down

Short inject, like such:

Sum of range:

(1..10).inject(:+)
=> 55
link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

create an array of consecutive numbers:

x = [*0..5]

sets x to [0, 1, 2, 3, 4, 5]

link|flag
vote up 0 vote down

Not sure if this is a feature or a bug. I consider it to be a bug.

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'

Shocking isn't it? Discussions on forums indicate that this bug will be removed from Ruby 1.9 onwards.

link|flag
you can also use instance_eval to get to private methods and variables. – Demi Jun 4 at 23:06
Right. But the question is, should it be allowed? It completely violates the principle of encapsulation. – Chirantan Jun 6 at 9:52
Never knew about this :) – Ed Jun 22 at 10:49
1  
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. – thenduks Jun 22 at 14:29
1  
Visibility rules in most languages are meant to protect you from mistakes, not fraud, as Stroustrop said. – JasonTrue Jun 29 at 23:46
show 2 more comments
vote up 0 vote down

I'm late to the party, but:

You can easily take two equal-length arrays and turn them into a hash with one array supplying the keys and the other the values:

a = [:x, :y, :z]
b = [123, 456, 789]

Hash[a.zip(b)]
# => { :x => 123, :y => 456, :z => 789 }

(This works because Array#zip "zips" up the values from the two arrays:

a.zip(b)  # => [[:x, 123], [:y, 456], [:z, 789]]

And Hash[] can take just such an array. I've seen people do this as well:

Hash[*a.zip(b).flatten]  # unnecessary!

Which yields the same result, but the splat and flatten are wholly unnecessary--perhaps they weren't in the past?)

link|flag

Your Answer

Get an OpenID
or

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