I wanted to know what would be the best way to achieve this:
my_hash_1 = { fruits: { red: 'apple' }, vegetables: { green: 'spinach' } }
my_hash_2 = { fruits: { green: 'grapes' } }
expected_output = { fruits: { red: 'apple', green: 'grapes' }, vegetables: { green: 'spinach' } }
I have looked into using merge! but that gives me with output:
{:fruits=>{:green=>"grapes"}, :vegetables=>{:green=>"spinach"}}