I already have a deploy.rb that can deploy my app on my production server.
My app contains a custom rake task (a .rake file in the lib/tasks directory).
I'd like to create a cap task that will remotely run that rake task.
|
1
|
I already have a deploy.rb that can deploy my app on my production server. My app contains a custom rake task (a .rake file in the lib/tasks directory). I'd like to create a cap task that will remotely run that rake task.
|
||
|
|
|
|
If the Rake task requires user interaction, it will not work |
||
|
|
|
|
I have no idea how capistrano works, but just for the record -- this is the syntax to invoke a rake task from Ruby:
|
||
|
|
|
|
run("cd #{deploy_to}/current; /usr/bin/rake Found it with Google -- http://ananelson.com/said/on/2007/12/30/remote-rake-tasks-with-capistrano/ The RAILS_ENV=production was a gotcha -- I didn't think of it at first and couldn't figure out why the task wasn't doing anything. |
||||
|