Possible Duplicate:
Why is rake db:migrate:reset not listed in rake -T?
Inside my Rails (3.1.3) application, I can run rake db:test:prepare
. But when I run rake -T [db]
, that task (and many others I can use) does not show up.
How do I get a complete list of tasks, or why is it incomplete in the first place?
E.g. http://mindspill.net/computing/cross-platform-notes/ruby-on-rails/how-to-list-rake-tasks/ shows that the 'db:test:prepare' task got listed for an older Rails version when running rails -T
.