I have a hash like:
h = {\'name\' => \'sayuj\', \'age\' => 22, \'project\' => {\'project_name\' => \'abc\', \'dur
Here's how you make deep copies in Ruby
d = Marshal.load( Marshal.dump(h) )