Advertisement
Guest User

Untitled

a guest
May 16th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.14 KB | None | 0 0
  1. Object.class_eval do
  2.     def foo
  3.         puts "bar"
  4.     end
  5. end
  6.  
  7. Object.class_eval do
  8.     class << self
  9.         def foo
  10.             puts "bar"
  11.         end
  12.     end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement