vote up 17 vote down star
20

What's your favourite IRB tip or trick? It could be a handy shortcut within the IRB console itself or maybe a .irbrc customization.

I really like that you can type an underscore to retrieve the result of the last expression.

flag

17 Answers

vote up 15 vote down check

IRB subsessions let you try things without ending or affecting any of your existing subsessions. The commands to work with subsessions are:

  • irb start a new subsession
  • jobs list subsessions
  • fg # switch to a subsession
  • kill # kill a subsession
>> my_string = "foo"
=> "foo"
>> irb
>> my_string
NameError: undefined local variable or method `my_string' for main:Object
    from (irb#1):1
>> jobs
=> #0->irb on main (#: stop)
#1->irb#1 on main (#: running)
>> fg 0
=> #, @signal_status=:IN_EVAL, @scanner=#>
>> my_string
=> "foo"
link|flag
Accepted because this is my favourite of the tips given! – John Topley Sep 25 '08 at 14:23
In Ruby 1.9.1 the behavior has changed a bit. It looks like you are now required to specify a name for the session, i.e irb 'temp'. Other than that everything seems to behave the same, though there may be other new features I'm unaware of. – Peter Wagenet Oct 4 at 22:39
vote up 14 vote down

I really like Wirble, it adds color coding and persistent history and even tab completion.

link|flag
.... dow. you beat me to it. – Kent Fredric Sep 23 '08 at 20:13
vote up 9 vote down

I like to have a quick way to benchmark a piece of code. This was inspired by one of the Rubinius devs:

# Quick benchmarking
# Based on rue's irbrc => http://pastie.org/179534
def quick(repetitions=100, &block)
  require 'benchmark'

  Benchmark.bmbm do |b|
    b.report {repetitions.times &block} 
  end
  nil
end

Can be used like this for the default 100 executions:

quick { rand }

Or like this for more:

quick(10000) { rand }
link|flag
vote up 9 vote down

The ability to assign from the last expression after the fact:

>> 1 + 2 + 3
=> 6
>> x = _
=> 6
>> x
=> 6
>>

Saves a lot of typing when you forget that you really wanted to assign that last expresion to a variable.

link|flag
this one is a huge timesaver :) – Darth Oct 18 at 16:43
vote up 8 vote down

Funny coming back to an old question I contributed to :-)

Here's another tool I added to my IRB config. Very practical for exploring unfamiliar classes and apis:

class Object
  # Return only the methods not present on basic objects
  def interesting_methods
    (self.methods - Object.new.methods).sort
  end
end

This lets me see only non trivial methods in a sane order on any class or instance I'm exploring.

link|flag
Ooh, I like that! – John Topley May 18 at 10:47
Seconded - this is a really need trick! – Chris Adams Sep 25 at 8:17
vote up 5 vote down

I like utility belt. Particularly the editor integration is nice as is the ability to google straight from irb. Also it includes Wirble and has some nice tricks for Mac OS X clipboard interaction.

link|flag
vote up 5 vote down

I wrote up a comprehensive tutorial on irb commands like fg and jobs.

link|flag
vote up 5 vote down

Returning nil after a command like this. Example from Rails:

people = Person.all
#=> screenfuls of people and their attributes as the command returns an array of people

Avoid screenfuls like this:

people = Person.all; nil #=> nil

Simple.

link|flag
I sometimes to this too. However, I think there's an option to turn it off if it's a big enough nuisance. – Andrew Grimm Dec 12 at 11:07
vote up 4 vote down

The simplest of my tips is simply to always have a hash and an array pre-defined. That way I don't have to whip up something when I'm messing around trying out Enumerable, Array or Hash methods.

HASH = { 
  :bob => 'Marley', :mom => 'Barley', 
  :gods => 'Harley', :chris => 'Farley'} unless defined?(HASH)
ARRAY = HASH.keys unless defined?(ARRAY)
link|flag
vote up 3 vote down

I install wirble

Enables Colourisation and gets the readline support for completion/scrollback going without having to remember a bunch of incantations

$cat ~/.irbrc 
require "rubygems"
require "wirble"
Wirble.init
Wirble.colorize

$irb
>> [1,2,3]
=> [1, 2, 3]
>> [1,2,3].<TAB>
Display all 118 possibilities? (y or n)

[1,2,3].empty?                           [1,2,3].inspect                        
[1,2,3].po                               [1,2,3].send
[1,2,3].__id__                           [1,2,3].entries                          
[1,2,3].instance_eval                    [1,2,3].poc

<snip>

link|flag
vote up 3 vote down

I love this one. You can fetch documentation inline by prepending ri_ to any method.

It gives you inline documentation like this:

irb(main):002:0> ['a','b'].ri_each
------------------------------------------------------------- Array#each
     array.each {|item| block }   ->   array
------------------------------------------------------------------------
     Calls block once for each element in self, passing that element as 
     a parameter.

        a = [ "a", "b", "c" ]
        a.each {|x| print x, " -- " }

     produces:

        a -- b -- c --
link|flag
The 'this one' link is broken. I can't find a link either because when I finally found the article through search there was a link to every other article on the site but not one to 'self'. Anyway, the following may work for a while... eigenclass.org/hiki.rb?cmd=view&p=irb+ri+comp… – Samuel Danielson Oct 21 at 17:24
vote up 2 vote down

A while ago, I messed around with jruby and rubinius regularly. Since I had a slightly pimped up irbrc, I always had problems with dependencies, like gems who didn't work or weren't installed on a given runtime.

So I concocted a require for runtime tramps :-) It accepts a block, which is executed if a library is successfully loaded. Otherwise a simple message is printed.

def tramp_require(what, &block)
  loaded, require_result = false, nil

  begin
    require_result = require what
    loaded = true

  rescue Exception => ex
    puts "** Unable to require '#{what}'"
    puts "--> #{ex.class}: #{ex.message}"
  end

  yield if loaded and block_given?

  require_result
end

This then lets me require straightforward stuff:

tramp_require 'pp'

Or Stuff requiring configuration

tramp_require('wirble') do
  Wirble.init(:skip_prompt=>true)
  Wirble.colorize
end
link|flag
vote up 2 vote down

I have customized the color scheme for wirble behind a white-background terminal.

# load libraries
require 'rubygems'
require 'wirble'

colors = Wirble::Colorize.colors.merge({
  :object_class => :black,
  :class        => :dark_gray,
  :symbol       => :red,
  :symbol_prefix=> :blue,
})

# start wirble (with color)
# set the colors used by Wirble
Wirble::Colorize.colors = colors

Wirble.init

Wirble.colorize
~ $
link|flag
vote up 1 vote down

Different twist on Wirble color customization:

require 'wirble'
# blue is hard to see on black, so replace all blues with purple
Wirble::Colorize::Color::COLORS.merge!({
  :blue => '0;35'
})
Wirble.init
Wirble.colorize
link|flag
vote up 1 vote down

I use this trick sometimes when reading other peoples code, You can find out who defines a method using this approach:

object.method(:method_name)

p 2.method(:odd?)
<Method: Fixnum#odd?>
p User.method(:acts_as_commentable)
<Method: Class(Juixe::Acts::Commentable::ClassMethods)#acts_as_commentable>

These are some simple examples, it can be really handy when you are tracking down functionality in a plugin or gem.

I found this originally here

link|flag
vote up 0 vote down

I have these to help keep output manageable:

  class Array
    alias :__orig_inspect :inspect
    def inspect
      (length > 20) ? "[ ... #{length} elements ... ]" : __orig_inspect
    end
  end

  class Hash
    alias :__orig_inspect :inspect
    def inspect
      (length > 20) ? "{ ... #{length} keys ... }" : __orig_inspect
    end
  end

Instead of a screen full of results it returns [ ... 22 elements ... ] if there are more than 20 elements returned. Got it off a website so attribution to them (I've forgotten the specific site).

link|flag
vote up 0 vote down

I like starting irb as a poor-mans debugger when the objects I would like to inspect are too complicated to print.

... your script here ...
$myvar = myvar
require 'irb'; require 'irb/completion'
IRB.start

On a side-note, I tend to just use irb/completion, which is bundled with ruby instead of wirble.

link|flag

Your Answer

Get an OpenID
or

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