Skip to content

Instantly share code, notes, and snippets.

@ashmoran
Created February 8, 2010 20:06
Show Gist options
  • Save ashmoran/298526 to your computer and use it in GitHub Desktop.
Save ashmoran/298526 to your computer and use it in GitHub Desktop.
module MyModule
def foo
puts "bar"
end
end
module Kernel
include MyModule
end
foo
module MyModule
def foo
puts "bar"
end
end
module Kernel
include MyModule
end
class Object2
include Kernel
end
Object2.new.foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment