DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Build A Hash Tree From Array Of File Names In Ruby
["a", "a/b", "a/b/c", "b/c", "b/d"].inject({}) {|h,i| t = h; i.split("/").each {|n| t[n] ||= {}; t = t[n]}; h}
=> {"a"=>{"b"=>{"c"=>{}}}, "b"=>{"c"=>{}, "d"=>{}}}





