clay richardson

Results 2 issues of clay richardson

``` ruby require 'yaml' merge_error = IO.read('spiff-merge-error') def flat_keys_to_nested(hash) hash.each_with_object({}) do |(key,value), all| key_parts = key.split('.') leaf = key_parts[0...-1].inject(all) { |h, k| h[k] ||= {} } leaf[key_parts.last] = value end...

This value seems to be ignored: https://github.com/MyMedsAndMe/spell/blob/master/lib/spell.ex#L125