While beeing used to using Rakefile, Cakefile and Jakefile, they all had some convenient way of listing the available tasks.
Like
jake -T
jake db:dump # Dump the database
jake db:load # Populate the database
..etc.
or even filtering "jake -T dum", to only show "the "jake db:dump" task.
So, is there a way to do the same using grunt? I was thinking of maybe creating a default task that iterates the entire grunt config object and write it to stdout via console.log, but does someone know a better way?
Thanks.