# File lib/puppet/network/client/dipper.rb, line 9
 9:     def initialize(hash = {})
10:         if hash.include?(:Path)
11:             bucket = self.class.handler.new(:Path => hash[:Path])
12:             hash.delete(:Path)
13:             hash[:Bucket] = bucket
14:         end
15: 
16:         super(hash)
17:     end