Skip to content

Instantly share code, notes, and snippets.

@pabloh
Created September 13, 2014 01:58
Show Gist options
  • Save pabloh/3f8953fc2985bdfb3af2 to your computer and use it in GitHub Desktop.
Save pabloh/3f8953fc2985bdfb3af2 to your computer and use it in GitHub Desktop.
enums
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