Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/ecpay/core_ext/hash.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#stringify_keys ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/ecpay/core_ext/hash.rb', line 3 def stringify_keys result = self.class.new each_key do |key| result[key.to_s] = self[key] end result end |