Class: Hashie::Mash
- Inherits:
-
Object
- Object
- Hashie::Mash
- Defined in:
- lib/twitter.rb
Instance Method Summary collapse
-
#rubyify_keys! ⇒ Object
Converts all of the keys to strings, optionally formatting key name.
Instance Method Details
#rubyify_keys! ⇒ Object
Converts all of the keys to strings, optionally formatting key name
126 127 128 129 130 131 132 133 134 135 |
# File 'lib/twitter.rb', line 126 def rubyify_keys! keys.each{|k| v = delete(k) new_key = k.to_s.underscore self[new_key] = v v.rubyify_keys! if v.is_a?(Hash) v.each{|p| p.rubyify_keys! if p.is_a?(Hash)} if v.is_a?(Array) } self end |