class Bake::Context

def initialize(registry, root = nil)

@parameter registry [Registry]
Initialize the context with the specified registry.
def initialize(registry, root = nil)
	@registry = registry
	@root = root
	
	@instances = Hash.new do |hash, key|
		hash[key] = instance_for(key)
	end
	
	@recipes = Hash.new do |hash, key|
		hash[key] = recipe_for(key)
	end
end