Rake list tasks

Sunday, August 3rd, 2008

I can never remember the exact name of a rake task, so I use this all the time: > rake -T You can also filter the list of tasks that's shown. For instance, if you only want to see the database tasks: > rake -T db The -T option is handy when you just ...