# File lib/webby/core_ext/hash.rb, line 15
  def stringify_keys
    h = {}
    self.each {|k,v| h[k.to_s] = v}
    return h
  end