Make rake tasks of a plugin accessible to the app?

Rails automatically loads vendor/plugins/my-plugin/lib/tasks/.rake (following Rake’s auto-loading of lib/tasks/.rake)

So put the tasks you want showing up in a .rake file and you’re good to go.

Jason