Is there a standard help command for individual rake tasks?
rake -h
displays the options for rake.
rake -D
describes the rake tasks.
rake mytask
runs mytask.
Is there something like rake -h mytask
that would describe mytask, and list its optional and/or required arguments?
For example, the following code will run an individual test in rails:
rake test TEST=path_to_test
How do I discover that TEST=path_to_test is an optional argument to rake test?