I have:
def outer_method() called_method() end def called_method() puts "name of outer_method" end Is it possible for the called_method to get the name of the outer_method without assigning __method__ in the outer_method and then using it as an argument of called_method?