How to list all rake tasks
rake -T -A
This command will print out all available rake
tasks. You can use it with Rails’ Rakefile
, or with a custom Rakefile
. N.B.: not all tasks have descriptions, and that is okay.
JJ Gangi
rake -T -A
This command will print out all available rake
tasks. You can use it with Rails’ Rakefile
, or with a custom Rakefile
. N.B.: not all tasks have descriptions, and that is okay.