# File lib/configatron/store.rb, line 7
    def initialize(root_store, name='configatron', attributes={}, path=[])
      @root_store = root_store
      @name = name
      @attributes = attributes

      # We could derive @name from @path, though this would break
      # backwards-compatibility.
      @path = path

      @cow = root_store.__cow
    end