I use to have Heroku managing my Rails application deployment but now that I built my own server with Capistrano, Nginix and Unicorn.
In Heroku, when I want to run a rake task, I do this for example:
heroku run rake:migrate VERSION=0
How can I accomplish the same using Capistrano? I cannot seem to find a clear and easy solution.
Thank you.