class Bake::Recipe

def initialize(instance, name, method = nil)

@parameter method [Method | Nil] The method if already known.
@parameter name [String] The method name.
@parameter instance [Base] The instance this recipe is attached to.

Initialize the recipe.
def initialize(instance, name, method = nil)
	@instance = instance
	@name = name
	@command = nil
	@comments = nil
	@signature = nil
	@documentation = nil
	
	@method = method
	@arity = nil
end