Skip to content

Instantly share code, notes, and snippets.

/.rb Secret

Created July 27, 2015 00:17
Show Gist options
  • Save anonymous/985585f267ada2398a6e to your computer and use it in GitHub Desktop.
Save anonymous/985585f267ada2398a6e to your computer and use it in GitHub Desktop.
def method_namer
"called from #{__method__}"
end
def foobar
method_namer #=> "called from foobar"
end
def bazbing
method_namer #=> "called from bazbing"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment