On Aug 14, 3:53 pm, agib <[EMAIL PROTECTED]> wrote: > Ah... I see... thank you so much for pointing that out. > > Does capistrano have deploy.rb built in or do I have to get in > manually? Does "capify" create it?
In case you didn't figure it out, or others require some info. Cap2 doesn't have the deploy tasks loaded by default. capify (when run in a rails directory) will create a Capfile with the following content: load 'deploy' if respond_to?(:namespace) # cap2 differentiator load 'config/deploy' That will load up the deploy tasks and then load your config/ deploy.rb. This emulates the old Cap1.4 behaviour. Cheers, Tim --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
