I just want to know the best way to emulate a C# style enumeration in Ruby.
|
2
|
|||||
|
|
|
If you need the enumerations to map to values (eg, you need minimized to equal 0, maximised to equal 100, etc) I'd use a hash of symbols to values, like this:
The freeze (like nate says) stops you from breaking things in future by accident. You can check if something is valid by doing this
Alternatively, if you don't need any values, and just need to check 'membership' then an array is fine
Use it like this
If your keys are going to be strings (like for example a 'state' field in a RoR app), then you can use an array of strings. I do this ALL THE TIME in many of our rails apps.
This is pretty much what rails Personal Note:I don't like typing include? all the time, so I have this (it's only complicated because of the .in?(1, 2, 3) case:
This lets you type
|
||
|
|
|
I don't think Ruby supports true enums -- though, there are still solutions available. |
||
|
|
|
|
The easiest way to define an Enum in ruby to use a class with constant variables.
|
||
|
|
|
|
It's not quite the same, but I'll often build a hash for this kind of thing:
Freezing the hash keeps me from accidentally modifying its contents. Moreover, if you want to raise an error when accessing something that doesn't exist, you can use a defualt Proc to do this:
|
|||
|
|
|
|
Making a class or hash as others have said will work. However, the Ruby thing to do is to use symbols. Symbols in Ruby start with a colon and look like this:
They are kind of like objects that consist only of a name. |
||
|
|
