Class: Hashie::Mash

Inherits:
Object
  • Object
show all
Defined in:
lib/twitter.rb

Instance Method Summary collapse

Instance Method Details

#rubyify_keys!Object

Converts all of the keys to strings, optionally formatting key name



134
135
136
137
138
139
140
141
142
143
# File 'lib/twitter.rb', line 134

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