20

If I define a method in IRB, is there any way to review its source later in the session?

> def my_method
>   puts "hi"
> end

Several screens of output later I'd like to be able to write something like

> source my_method

and get back:

=> def my_method; puts "hi"; end;

Is this possible?

djb
  • 5,591
  • 5
  • 41
  • 47

4 Answers4

19

Not in IRB but in Pry this feature is built-in.

Behold:

pry(main)> def hello
pry(main)*   puts "hello my friend, it's a strange world we live in"
pry(main)*   puts "yes! the rich give their mistresses tiny, illuminated dying things"
pry(main)*   puts "and life is neither sacred, nor noble, nor good"
pry(main)* end
=> nil
pry(main)> show-method hello

From: (pry) @ line 1:
Number of lines: 5

def hello
  puts "hello my friend, it's a strange world we live in"
  puts "yes! the rich give their mistresses tiny, illuminated dying things"
  puts "and life is neither sacred, nor noble, nor good"
end
pry(main)> 
horseyguy
  • 29,455
  • 20
  • 103
  • 145
17

Try pry. There is a railscast about it (released this same week!) and it shows you how to show the code by using show-method.

Mischa
  • 42,876
  • 8
  • 99
  • 111
Serabe
  • 3,834
  • 19
  • 24
5

If you use Ruby 1.9.2 and a newer version of the sourcify gem than available on Rubygems.org (e.g. build the source from GitHub), you can do this:

>> require 'sourcify'
=> true
>> 
..   class MyMath
..     def self.sum(x, y)
..         x + y # (blah)
..       end
..   end
=> nil
>> 
..   MyMath.method(:sum).to_source
=> "def sum(x, y)\n  (x + y)\nend"
>> MyMath.method(:sum).to_raw_source
=> "def sum(x, y)\n    x + y # (blah)\n  end"

Edit: also check out method_source, which is what pry uses internally.

Michael Kohl
  • 66,324
  • 14
  • 138
  • 158
  • 1
    As I said you need Ruby 1.9.2 and a version of `sourcify` that's newer than the one currently available on Rubygems.org (I built mine from the Git repo). I updated my post to make this more clear. – Michael Kohl Aug 29 '11 at 07:50
4

What I use is method_source I have method code which is basically my wrapper for this gem. Add method_source in Gemfile for Rails apps. And create initializer with following code.

  # Takes instance/class, method and displays source code and comments
  def code(ints_or_clazz, method)
    method = method.to_sym
    clazz = ints_or_clazz.is_a?(Class) ? ints_or_clazz : ints_or_clazz.class
    puts "** Comments: "
    clazz.instance_method(method).comment.display
    puts "** Source:"
    clazz.instance_method(method).source.display
  end

Usage is:

code Foo, :bar

or with instance

code foo_instance, :bar

Better approach is to have class with in /lib folder with your irb extension, than you just require it in one of initializers (or create your own)

Haris Krajina
  • 14,824
  • 12
  • 64
  • 81