class Bake::Registry::Aggregate

def append_from_gems

Enumerate all loaded gems and add them.
def append_from_gems
	::Gem.loaded_specs.each do |name, spec|
		Console.debug(self) {"Checking gem #{name}: #{spec.full_gem_path}..."}
		
		if path = spec.full_gem_path and File.directory?(path)
			append_path(path, name: spec.full_name)
		end
	end
end