Skip to content

Instantly share code, notes, and snippets.

@darrencauthon
Forked from jmeirow/gist:3709453
Created September 12, 2012 20:09
Show Gist options
  • Save darrencauthon/3709530 to your computer and use it in GitHub Desktop.
Save darrencauthon/3709530 to your computer and use it in GitHub Desktop.
Ruby-style enums
class DataType
[:STRING, :DATE, :UNKNOWN, :NUMERIC].each do |type|
self.instance_eval "def self.#{type};:#{type};end"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment