class Bake::Registry::Aggregate

def initialize

Initialize an empty array of registry.
def initialize
	# Used to de-duplicated directories:
	@roots = {}
	
	# The ordered list of loaders:
	@ordered = Array.new
end