Skip to content

Instantly share code, notes, and snippets.

@michaelklishin
Created August 20, 2008 10:08
Show Gist options
  • Save michaelklishin/6354 to your computer and use it in GitHub Desktop.
Save michaelklishin/6354 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
module Fabulous
def name
"Fabulous"
end
end
class Migzy
def name
"Migzy"
end
end
Migzy.send(:include, Fabulous)
m = Migzy.new
puts m.name
# => Migzy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment