Turn CSV delimited text string into hash
# tested on Ruby 1.9.3 CSV.parse(response.body, { :headers => true, header_converters: :symbol, converters: :all }).collect { |row| Hash[row.collect { |c,r| [c,r] }] }