Skip to content

Instantly share code, notes, and snippets.

@kwstannard
Created August 27, 2012 20:49
Show Gist options
  • Save kwstannard/3492093 to your computer and use it in GitHub Desktop.
Save kwstannard/3492093 to your computer and use it in GitHub Desktop.
Refinements polymorphism?
module Animal
end
module Runner
refine Animal do
puts "I have #{legs} and I'm running!"
end
end
Dog.include Animal
Cat.include Animal
class Race
Animal.using Runner
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment