Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/truesenses/hash.rb
Instance Method Summary collapse
Instance Method Details
#stringify_keys ⇒ Object
3 4 5 6 7 8 |
# File 'lib/truesenses/hash.rb', line 3 def stringify_keys inject({}) do |, (key, value)| [key.to_s] = value end end |