Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/locomotive/steam/core_ext/hash.rb

Instance Method Summary collapse

Instance Method Details

#underscore_keysObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/locomotive/steam/core_ext/hash.rb', line 3

def underscore_keys
  new_hash = {}

  self.each_pair do |key, value|
    if value.respond_to?(:collect!) # Array
      value.collect do |item|
        if item.respond_to?(:each_pair) # Hash item within
          item.underscore_keys
        else
          item
        end
      end
    elsif value.respond_to?(:each_pair) # Hash
      value = value.underscore_keys
    end

    new_key = key.is_a?(String) ? key.underscore : key # only String keys

    new_hash[new_key] = value
  end

  self.replace(new_hash)
end