I\'d like to replace each value in a hash with value.some_method.
value
value.some_method
For example, for given a simple hash:
{\"a\" => \"b\",
You can collect the values, and convert it from Array to Hash again.
Like this:
config = Hash[ config.collect {|k,v| [k, v.upcase] } ]