Posts tagged rake
How to list all rake tasks
rake -T -AThis 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.
rake -T -AThis 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.