Sha256: 2846828bb656d59abf4f43044090ad47788a158457f8ca16867f774fe289500e
Contents?: true
Size: 266 Bytes
Versions: 13
Compression:
Stored size: 266 Bytes
Contents
class Hash # :nodoc: # Turn all our keys into strings. Good for our @stores as they use # strings from keys seeing as anything coming from JSON has strings for # keys def stringify_keys! keys.each do |key| self[key.to_s] = delete(key) end self end end
Version data entries
13 entries across 13 versions & 1 rubygems