Ruby Tips

deep_stringify_keys

Convert the keys of a hash into strings

hash = { :apple=> 'red', :banana => 'yellow' }

hash.deep_stringify_keys
=> { 'apple' => 'red, 'banana' => 'yellow' }

Ruby Tips - a simple ruby tip generator RubyTips.dev

Refresh the page to generate a new tip. Or just click here