Created
November 14, 2017 16:46
-
-
Save btaitelb/86329143093f7cd9f68121c8f7fa89b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Omnomnivore | |
def omnomname(name_extension) | |
define_method "name" do | |
@name + name_extension | |
end | |
end | |
end | |
## | |
# Usage: | |
# | |
# require './omnomnivore' | |
# class Panda < Animal | |
# extend omnomnivore | |
# omnomname " nom nom" | |
# end | |
# | |
## |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment