[Capistrano] Re: Can Capistrano do this? If yes how?

2009-04-27 Thread Lee Hambley
Abhi, You'll need rake to do what you need to do, but there is nothing to stop you using either Net::SSH or Capistrano to instruct your server to run this task from your wosktation. As a bonus point, for you - Rake and Capistrano have very similar interfaces, and both share an incredibly similar

[Capistrano] Re: Can Capistrano do this? If yes how?

2009-04-27 Thread Abhi
I've finally decided that I'll create a custom PHP script and try SSH client class from PEAR library. Many thanks for your reply though. On Apr 27, 1:56 pm, Lee Hambley lee.hamb...@gmail.com wrote: Abhi, You'll need rake to do what you need to do, but there is nothing to stop you using either

[Capistrano] Re: Can Capistrano do this? If yes how?

2009-04-26 Thread Lee Hambley
Abhi, This is a prime candidate for a rake (http://rake.rubyforge.org/) task... You may want to consider whether you want this process to run on your server(s), or on your developer's workstations, that may help determine what technology you need to use to achieve your goals. - Lee 2009/4/26

[Capistrano] Re: Can Capistrano do this? If yes how?

2009-04-26 Thread Mathias Meyer
On 26.04.2009, at 20:51, Abhi wrote: Hi all, I'm currently new to capistrano. After trying out various solutions built in PHP - I found capistrano the best one. I'm using it to automate a simple build process used by our team from a last few days. Here's the process: 1. Create a new

[Capistrano] Re: Can Capistrano do this? If yes how?

2009-04-26 Thread Abhi
Lee: Yes, I need to run this on server. Mathias: Thanks for your reply. It was helpful. I guess I'll try some Rake. On Apr 27, 1:45 am, Mathias Meyer pomonra...@googlemail.com wrote: On 26.04.2009, at 20:51, Abhi wrote: Hi all, I'm currently new to capistrano. After trying out