# File lib/backports/rails/hash.rb, line 13
  def symbolize_keys
    Hash[map{|key,value| [(key.to_sym rescue key) || key, value] }]
  end