Created
October 4, 2016 14:54
-
-
Save eric1234/af0cd73e69527ad6426c28db58e5e414 to your computer and use it in GitHub Desktop.
Define multiple methods with the same defination
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 MultiDef | |
def defs *names, &blk | |
names.each { |name| define_method name, blk } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment