module Bake::Scope

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, self.instance_method(name))
end