exec :mycommand do |cmd|
    cmd.command='C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\tf.exe'    
    cmd.parameter ='checkout'
end

Is there a way we can get the output of the command from this run?

link|improve this question

Do you mean the output of the command or the return code? – knut Dec 21 '11 at 22:10
output of the command – icn Dec 21 '11 at 23:07
feedback

1 Answer

up vote 1 down vote accepted

You mentioned albacore and you use the task exec. If there is no special need of albacore you may use standard ruby tools:

#Define the command:
cmd = 'dir'
#or in your case:
#cmd ['"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\tf.exe"',
#        'checkout'].join(' ')


#Version one:
output = `#{cmd}`
puts output

#Version two:
output = %x{#{cmd}}
puts output

More solutions may be found at Getting output of system() calls in ruby

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.