What's the most most ruby-like way of converting from an Array
like [:one, 1, :two, 2]
to a Hash
like {:one => 1, :two => 2}
?
What's the most most ruby-like way of converting from an Array
like [:one, 1, :two, 2]
to a Hash
like {:one => 1, :two => 2}
?