Class: Hash

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

Overview

Hash

Instance Method Summary collapse

Instance Method Details

#underscore_keysObject

:nodoc



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/locomotive/core_ext.rb', line 39

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