Cap VERSION question

I have an old app that was setup using Capistrano 1.4. I upgraded to
2.1 and remember having to use a specific command that would use the
1.4 gem instead of 2.0, something like

cap deploy VERSION=1.4

or something. Does anyone know the exact command? 15 minutes in Google
and I can’t find it, though I remember finding it via google before.

Capistrano 2.x

capify .
cap deploy:setup
cap deploy:cold
cap deploy
cap deploy:migrations
cap deploy:rollback

Capistrano 1.4.x

cap --apply-to .
cap setup
cap cold_deploy
cap deploy
cap deploy_with_migrations
cap rollback

you can try : cap --help

~~~~~~~~~~~~~~
Reinhart Ariando
YM: Booking2Heaven
WEB: teapoci.blogspot.com
~
~~~~~~~~~~~~~

On Feb 21, 2008, at 9:04 PM, yaphi wrote:

I have an old app that was setup using Capistrano 1.4. I upgraded to
2.1 and remember having to use a specific command that would use the
1.4 gem instead of 2.0, something like

cap deploy VERSION=1.4

or something. Does anyone know the exact command? 15 minutes in Google
and I can’t find it, though I remember finding it via google before.

Any gem can be run as:

cap 1.4.1 deploy

From my Mac with Leopard, the paths changed, too, so I run:

env PATH=/opt/local/bin:$PATH cap 1.4.1 deploy

for one old client.

-Rob

Rob B. http://agileconsultingllc.com
[email protected]

This is what I was looking for

On Feb 21, 9:47 pm, Rob B. [email protected]