class Bake::Recipe

def arity

The method's arity, the required number of positional arguments.
def arity
	if @arity.nil?
		@arity = method.parameters.count{|type, name| type == :req}
	end
	
	return @arity
end