class Bake::Recipe

def output?

@returns [Boolean] Whether this recipe produces output.
If a recipe produces output, we do not need to invoke the default output command.
def output?
	@instance.output?(self)
end