Skip to content

Instantly share code, notes, and snippets.

@eric1234
Created October 4, 2016 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eric1234/af0cd73e69527ad6426c28db58e5e414 to your computer and use it in GitHub Desktop.
Save eric1234/af0cd73e69527ad6426c28db58e5e414 to your computer and use it in GitHub Desktop.
Define multiple methods with the same defination
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