I often used Rake tasks that are dependent upon the Rails environment task having loaded. I then interact with Rails Models within the Rake tasks. Can I do this in Capistrano?
|
|
|
|
|
|
|
You can definately use capistrano to fire a rake task.
If you are asking if you can access a rails model from Capistrano, then I would say I don't think so unless you are using some other way that also loads a rails environment, like script/runner. I'd say stick with firing a rake task from Capistrano. |
||
|
|
