vote up 0 vote down star

Duplicate: How To Find Where A Ruby Method Is Defined At Runtime


With a given object, is it possible to find out where each method was defined?

flag

stackoverflow.com/questions/175655/… – Milan Novota Dec 21 '08 at 1:23
huh why is nobody closing it? – Johannes Schaub - litb Dec 21 '08 at 2:27
I don't have the power, as it were. Vote me up, in 100 more points I will (grin). – George Stocker Dec 21 '08 at 2:35
I swear I searched before posting the question! – troelskn Dec 21 '08 at 19:14

closed as exact duplicate by Mitch Wheat Dec 21 '08 at 3:26

1 Answer

vote up 0 vote down check

After the fact, it will be pretty tough, but you can use a hook method to observe the line numbers where a method is defined.

class X < Object

  def X.method_added(symbol)
    puts "adding method #{symbol} to class X from #{caller(0)"
  end

end


class X
  def a_method
  end
end
link|flag

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