module MyLib
  refine Object do
  	def log
  	  123
    end
  end
end

begin
  puts 1.log
rescue => e
  p e
end

using MyLib

puts 1.log