How to find where a ruby method is defined (at runtime)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T05:18:20Zhttp://stackoverflow.com/feeds/question/175655http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/175655/how-to-find-where-a-ruby-method-is-defined-at-runtime9How to find where a ruby method is defined (at runtime)?Matt Rogish2008-10-06T18:44:24Z2009-03-18T21:12:44Z
<p>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.</p>
<p>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.</p>
<p>Anyway, long story short -- is there a way to, at runtime, ask Ruby <strong>where</strong> 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 <em>many</em> def foo's, sometimes I don't know until runtime which one I may be using).</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/175655/how-to-find-where-a-ruby-method-is-defined-at-runtime/175946#1759461Answer by Ken for How to find where a ruby method is defined (at runtime)?Ken2008-10-06T20:01:29Z2008-10-06T20:01:29Z<p>This may help but you would have to code it yourself. Pasted from the blog:</p>
<blockquote>
<p>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().</p>
</blockquote>
<p><a href="http://scie.nti.st/2008/9/17/making-methods-immutable-in-ruby" rel="nofollow">http://scie.nti.st/2008/9/17/making-methods-immutable-in-ruby</a></p>
http://stackoverflow.com/questions/175655/how-to-find-where-a-ruby-method-is-defined-at-runtime/175947#1759472Answer by Orion Edwards for How to find where a ruby method is defined (at runtime)?Orion Edwards2008-10-06T20:01:50Z2008-10-06T20:01:50Z<p>If you can crash the method, you'll get a backtrace which will tell you exactly where it is.</p>
<p>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.</p>
<p>Useful ways of crashing methods:</p>
<ol>
<li><p>Pass <code>nil</code> where it forbids it - a lot of the time the method will raise an <code>ArgumentError</code> or the ever-present <code>NoMethodError</code> on nilclass</p></li>
<li><p>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.</p></li>
</ol>
http://stackoverflow.com/questions/175655/how-to-find-where-a-ruby-method-is-defined-at-runtime/176006#1760061Answer by AShelly for How to find where a ruby method is defined (at runtime)?AShelly2008-10-06T20:16:47Z2008-10-06T20:16:47Z<p>You might be able to do something like this:</p>
<p>foo_finder.rb:</p>
<pre><code> class String
def String.method_added(name)
if (name==:foo)
puts "defining #{name} in:\n\t"
puts caller.join("\n\t")
end
end
end
</code></pre>
<p>Then ensure foo_finder is loaded first with something like </p>
<pre><code>ruby -r foo_finder.rb railsapp
</code></pre>
<p>(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.)</p>
<p>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.</p>
http://stackoverflow.com/questions/175655/how-to-find-where-a-ruby-method-is-defined-at-runtime/177285#1772851Answer by Garry for How to find where a ruby method is defined (at runtime)?Garry2008-10-07T05:07:14Z2008-10-07T05:07:14Z<p>You can always get a backtrace of where you are by using caller().</p>
http://stackoverflow.com/questions/175655/how-to-find-where-a-ruby-method-is-defined-at-runtime/363546#3635461Answer by GlennR for How to find where a ruby method is defined (at runtime)?GlennR2008-12-12T17:37:25Z2008-12-12T17:37:25Z<p>I'm interested to know if you got this working.</p>
<p>I was trying to trace how the ActiveSupport::CoreExtensions::Float::Rounding module was giving us the "round_with_precision()" method...</p>
<pre><code>require 'rubygems'
require 'active_support'
print 1.12345678.round_with_precision(5)
</code></pre>
<p>Alas, no cigar. Any ideas?</p>
http://stackoverflow.com/questions/175655/how-to-find-where-a-ruby-method-is-defined-at-runtime/660129#6601294Answer by wesgarrison for How to find where a ruby method is defined (at runtime)?wesgarrison2009-03-18T21:12:44Z2009-03-18T21:12:44Z<p>This is really late, but here's how you can find where a method is defined:</p>
<p><a href="http://gist.github.com/76951" rel="nofollow">http://gist.github.com/76951</a></p>
<pre><code># 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>
</code></pre>