-
-
Save pabloh/3f8953fc2985bdfb3af2 to your computer and use it in GitHub Desktop.
enums
This file contains 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
class Module | |
def def_enum(name, &body) | |
define_method(name) do |*args, &blk| | |
block_given? ? body.call(*args, &blk) : to_enum(name) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment