How to tell cucumber/aruba to display the stdout of a rake command. The following code doesn't work for me
@announce
Scenario: test rake task
When I run 'rake -verion'
Then the output should contain "0.9.2.2"
Even with the @announce tag, the stdout of the command "rake -version" is not outputted.