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. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
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 ~*~*~*~*~*~*~*~*~*~*~*~*~*~ -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
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 Biedenharn http://agileconsultingllc.com Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
This is what I was looking for On Feb 21, 9:47 pm, Rob Biedenharn <R...-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org> wrote:> 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 Biedenharn http://agileconsultingllc.com > R...-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---