Method: Chop::Create#underscore_keys

Defined in:
lib/chop/create.rb

#underscore_keysObject



109
110
111
112
113
114
115
# File 'lib/chop/create.rb', line 109

def underscore_keys
  transformation do |attributes|
    attributes.reduce(HashWithIndifferentAccess.new) do |hash, (key, value)|
      hash.merge key.parameterize.underscore => value
    end
  end
end