Guest User

Untitled

a guest
Jun 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Testt.instance_eval do
  2. def foo
  3. "I'll be available as class method"
  4. end
  5.  
  6. def self.bar
  7. "I'll be available as class method"
  8. end
  9. end
  10.  
  11. Testt.foo
  12. =>"I'll be available as class method"
  13. Testt.bar
  14. =>"I'll be available as class method"
Add Comment
Please, Sign In to add comment