Sha256: 17a6672a324bdfcb4899c535f68ba8c9ec1a93976a3fc8ca415a0c42cbeaea01
Contents?: true
Size: 338 Bytes
Versions: 26
Compression:
Stored size: 338 Bytes
Contents
# This file is part of the "Utopia Framework" project, and is licensed under the GNU AGPLv3. # Copyright 2010 Samuel Williams. All rights reserved. # See <utopia.rb> for licensing details. class Hash def symbolize_keys inject({}) do |options, (key, value)| options[(key.to_sym rescue key) || key] = value options end end end
Version data entries
26 entries across 26 versions & 1 rubygems