I need to create a select box from the values available in a Hash.
For instance, I have a \'thing\' and the \'thing\' has a variety of status fields:
1 =
you could do something like
select "foo", "bar", @hash_object
or
select "foo", "bar", @hash_object.map { |h| [h.key, h.value] }
I'd probably invert your hash first to make the key point to the value