Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to get the name of the calling method?

I have a method #foo. That method can be called from many places (scopes). I need #foo to find out where it was called from. But not the stack trace (like what #caller returns), I want the pure name of the method (like what #__callee__ returns). Does a method for this exist in Ruby?

share|improve this question
1  
Not a built-in method, but there's a similar question here: stackoverflow.com/questions/5100299/… – Pete Schlette Aug 25 '12 at 22:28
Yeah, I guess it's not so bad to use it like that. Thanks. – janko-m Aug 25 '12 at 22:48

marked as duplicate by knut, Andrew Marshall, janko-m, Donal Fellows, the Tin Man Aug 27 '12 at 6:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

you can use __method__. Place that in any method body and it should provide the name of the method. And you can always fetch the context by using .class or .class.ancestors.

share|improve this answer
Hmm, it seems like __method__ returns the same as __callee__ (the name of the current scope). I want the previous scope. So, if #bar called #foo, I want a method that I can call from #foo which would return "bar" – janko-m Aug 25 '12 at 22:08

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