Skip to content

Instantly share code, notes, and snippets.

@riffraff
Created September 20, 2013 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save riffraff/6634793 to your computer and use it in GitHub Desktop.
Save riffraff/6634793 to your computer and use it in GitHub Desktop.
def stuff
magic!
puts "ciao"
end
def magic
at_caller_method_exit { puts "magic!" }
end
stuff() # -> "ciao\nmagic!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment