class Bake::Base

def recipe_for(name)

@parameter name [String] The instance method to look up.

Look up a recipe with a specific name.
def recipe_for(name)
	Recipe.new(self, name)
end