Skip to content

Instantly share code, notes, and snippets.

@will
Created September 4, 2008 20:31
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 will/8868 to your computer and use it in GitHub Desktop.
Save will/8868 to your computer and use it in GitHub Desktop.
def method_stack
@method_stack ||= []
end
def method_missing(sym, *args)
method_stack << [sym, args]
self
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment