Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/frenchy/core_ext.rb
Instance Method Summary collapse
Instance Method Details
#stringify_keys! ⇒ Object
2 3 4 5 6 7 |
# File 'lib/frenchy/core_ext.rb', line 2 def stringify_keys! keys.each do |key| self[key.to_s] = delete(key) end self end |