Skip to content

Instantly share code, notes, and snippets.

@josevalim
Forked from joshk/gist:1012154
Created June 7, 2011 12:48
Show Gist options
  • Save josevalim/1012168 to your computer and use it in GitHub Desktop.
Save josevalim/1012168 to your computer and use it in GitHub Desktop.
module UnicornPowers
def fire_super_ray_beam
self.ray_beam_power
end
end
module TomCruise
mixin UnicornPowers
def ray_beam_power
"bang"
end
end
TomCruise.fire_super_ray_beam % => "bang"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment