I would like to merge a nested hash.
a = {:book=> [{:title=>\"Hamlet\", :author=>\"William Shakespeare\" }]} b = {:book=> [{
a[:book] = a[:book] + b[:book]
Or
a[:book] << b[:book].first