vote up 5 vote down star
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.

flag

3 Answers

vote up 0 vote down

If the Rake task requires user interaction, it will not work

link|flag
vote up 0 vote down

I have no idea how capistrano works, but just for the record -- this is the syntax to invoke a rake task from Ruby:

Rake::Task["task:name"].invoke
link|flag
vote up 9 vote down check

run("cd #{deploy_to}/current; /usr/bin/rake <rake_task_name> RAILS_ENV=production")

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.

link|flag
1  
A minor improvement: if you replace the semicolon with && then the second statement (running the rake task) will not run if the first statement (changing the directory) fails. – Teflon Ted May 12 at 15:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.