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 Enum | |
def self.included(base) | |
#TODO: learn difference between extend and include (send :include, ) | |
base.extend ClassMethods | |
super | |
end | |
module ClassMethods | |
def enum(args) | |
# Constants |
NewerOlder