namespace fail
fail
Raises internal failure condition.
Usage
Use this function within your own ruby tasks to raise errors during the execution.
desc 'run_unit_tests'
task :run_unit_tests do
fail 'not implemented'
endOutput
The output will be the provided errors.
The deployment will be aborted.