David Alan Black wrote:
>  Enumerable#hashify(value)
>
>Description: 
>
>  Return a hash based on iterating through the receiver (an
>  enumerable), either setting every value to the parameter "value" or
>  setting the values via a block.

Seems reasonable, but I wince every time I read 
the word "hashify". I'm not even sure why. Could 
you explain why to_h or to_hash would not be an 
appropriate name?

One other nit: I would prefer that it require 
either a parameter or a block. Initializing all 
the values to true doesn't seem helpful to me.

Kevin