Guest User

Untitled

a guest
Feb 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class Foo
  2. def proxy_method(*args, &proc)
  3. bar(*args,&proc)
  4. end
  5.  
  6. def bar(*args, &proc)
  7. p args, proc
  8. end
  9. # test revision
  10. end
Add Comment
Please, Sign In to add comment