You can pass the Hash.new function a block that is executed to yield a default value in case the queried value doesn't exist yet:
h = Hash.new { |h, k| h[k] = Hash.new }
Of course, this can be done recursively.
/EDIT: Wow, there's an article answering this very question.
For the sake of completeness, here's the solution from the article for arbitrary depth hashes:
hash = Hash.new(&(p=lambda{|h,k| h[k] = Hash.new(&p)}))
Credits go to Kent from Data Noise.
