Hi all, Do you know a capistrano-like tool for deploying on the windows platform ? Thanks. Thomas. -- 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 -~----------~----~----~----~------~----~------~--~---
On 11/1/06, Thomas <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Do you know a capistrano-like tool for deploying on the windows platform > ?I have a Rakefile that I wrote to simplify deployment of Rails apps on Windows. It''s provides similar tasks to Capistrano, but runs on the target server, not by executing remote commands via ssh - as such it''s only really suitable for single server deployments. Let me know if you''d find this useful and I''ll send it to you. cheers, Ben -- http://teamaskins.net --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
I hate to admit it. But I ended up using Ant to zip up everything and just unzip it on the target windows development server. Then I restart Mongrel and Apache. Total time for delivery...about 80 seconds. KISS principle. Yeah I could Capistrano...except my company has a very involved software delivery process and uses CVS and not SVN. So this was the simplest approach. Works like a charm in my dev test servers. (Though I did freeze my Rails version to make my life simpler.) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---