Guest User

Untitled

a guest
Feb 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. def method_stack
  2. @method_stack ||= []
  3. end
  4.  
  5. def method_missing(sym, *args)
  6. method_stack << [sym, args]
  7. self
  8. end
Add Comment
Please, Sign In to add comment