Re: [capistrano] Alternate logging via Capistrano

2010-04-13 Thread Eric Lubow
Lee, Thanks, I'll give this a try later today. Essentially what I was hoping for was something along the lines of: http://pastie.org/917637. Please bear in mind that I am just learning Ruby so what I put there was likely closer to pseudocode than actual code. I wanted to be able to add

Re: [capistrano] Alternate logging via Capistrano

2010-04-13 Thread Lee Hambley
Hi Eric, Whilst it's not Rubyish, it is `unixish` - Capistrano is a tool for deploying, and unix has a great many tools already for recording and logging streams. (tee(1) and script(1) as well as the output redirection tips I already mentioned) Whilst there's something to be said for having an

[capistrano] Git fetch tags

2010-04-13 Thread Chris G
Hi all, I know that per http://weblog.jamisbuck.org/2008/6/13/capistrano-2-4-0, cap no longer does 'git fetch --tags'. But is there an option to bring that behavior back? (Our CI box tags versions, but our deploy process cracks because our remote slices don't see those tags.) If not, where

Re: [capistrano] Git fetch tags

2010-04-13 Thread Lee Hambley
Hi Chris, You can hook into before(:update_code) if you need to do any preparation work on the server side. - Lee On 13 April 2010 19:49, Chris G galtenbe...@gmail.com wrote: Hi all, I know that per http://weblog.jamisbuck.org/2008/6/13/capistrano-2-4-0, cap no longer does 'git fetch