In Ruby is there a way to tell where a method is defined? I'm going through the ruby-guides and there is a line of code that reads Post.all How can I tell where all is defined?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
If you want to know the file and line where the method is defined, use
It will give you |
||||
|
|
|
A method can be used via a Method object. Which at that point as an
That will tell you the module/class that defines the method. |
|||