This is just a tip, may be you guys are already aware of it.
Sometimes I wonder why my custom rake task doesn’t appear in rake -T list, however it runs well. I just noticed that if I do not specify description for a task then that particular rake task does not appear in the task list.
This was frustrating me a little too, but I found that you can use “rake -P” to view all tasks and their prerequisites (even if they don’t have a description).
Ah, both great tips.
Ran into this problem myself. Nice one guys.
Thanks a lot, was breaking my head!