vote up 9 vote down star
2

We recently had a problem where, after a series of commits had occurred, a backend process failed to run. Now, we were good little boys and girls and ran rake test after every check-in but due to some oddities in Rails' library loading, it only occurred when you ran it directly from mongrel in production mode.

Tracked the bug down and it was due to a new Rails gem overwriting a method in the String class in a way that broke one narrow use in runtime Rails code.

Anyway, long story short -- is there a way to, at runtime, ask Ruby where a method has been defined? Something like whereami( :foo ) that returned /path/to/some/file.rb line #45 (in this case, telling me that is was defined in class String would be unhelpful, because it was overloaded by some library) ? I cannot guarantee the source lives in my project, so grepping for 'def foo' won't necessarily give me what I need (not to mention if I have many def foo's, sometimes I don't know until runtime which one I may be using).

Thanks!!

flag

6 Answers

vote up 4 vote down check

This is really late, but here's how you can find where a method is defined:

http://gist.github.com/76951

# How to find out where a method comes from.
# Learned this from Dave Thomas while teaching Advanced Ruby Studio
# Makes the case for separating method definitions into
# modules, especially when enhancing built-in classes.
module Perpetrator
  def crime
  end
end

class Fixnum
  include Perpetrator
end

p 2.method(:crime)
#<Method: Fixnum(Perpetrator)#crime>
link|flag
vote up 1 vote down

This may help but you would have to code it yourself. Pasted from the blog:

Ruby provides a method_added() callback that is invoked every time a method is added or redefined within a class. It’s part of the Module class, and every Class is a Module. There are also two related callbacks called method_removed() and method_undefined().

http://scie.nti.st/2008/9/17/making-methods-immutable-in-ruby

link|flag
vote up 2 vote down

If you can crash the method, you'll get a backtrace which will tell you exactly where it is.

Unfortunately, if you can't crash it then you can't find out where it has been defined. If you attempt to monkey with the method by overwriting it or overriding it, then any crash will come from your overwritten or overridden method, and it won't be any use.

Useful ways of crashing methods:

  1. Pass nil where it forbids it - a lot of the time the method will raise an ArgumentError or the ever-present NoMethodError on nilclass

  2. If you have inside knowledge of the method, and you know that the method in turn calls some other method, then you can overrwrite the other method, and raise inside that.

link|flag
vote up 1 vote down

You might be able to do something like this:

foo_finder.rb:

 class String
   def String.method_added(name)
     if (name==:foo)
        puts "defining #{name} in:\n\t"
        puts caller.join("\n\t")
     end
   end
 end

Then ensure foo_finder is loaded first with something like

ruby -r foo_finder.rb railsapp

(I've only messed with rails, so I don't know exactly, but I imagine there's a way to start it sort of like this.)

This will show you all the re-definitions of String#foo. With a little meta-programming, you could generalize it for whatever function you want. But it does need to be loaded BEFORE the file that actually does the re-definition.

link|flag
vote up 1 vote down

You can always get a backtrace of where you are by using caller().

link|flag
vote up 1 vote down

I'm interested to know if you got this working.

I was trying to trace how the ActiveSupport::CoreExtensions::Float::Rounding module was giving us the "round_with_precision()" method...

require 'rubygems' 
require 'active_support'

print 1.12345678.round_with_precision(5)

Alas, no cigar. Any ideas?

link|flag

Your Answer

Get an OpenID
or

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