Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/rscribd.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#stringify_keys ⇒ Object
Taken from Rails, with appreciation to DHH.
Instance Method Details
#stringify_keys ⇒ Object
Taken from Rails, with appreciation to DHH
14 15 16 17 18 19 |
# File 'lib/rscribd.rb', line 14 def stringify_keys inject({}) do |, (key, value)| [key.to_s] = value end end |