Skip to content

Instantly share code, notes, and snippets.

/.rb Secret

Created July 27, 2015 00:16
Show Gist options
  • Save anonymous/448b10c7462567438ea9 to your computer and use it in GitHub Desktop.
Save anonymous/448b10c7462567438ea9 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 foobar"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment