use ruby 1.9.2
rails 3.1.3
rake 0.8.7
and when rake cucumber start i have this message
Google help me to find CUCUMBER_FORWARD_SLASH_PATHS=true, but the problem not solved
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The output you’re receiving and the error triggered by Rake are correct.
cucumber is being executed and missing steps are required, so the exit code of the child process (invoked by rake) is non-zero.
Rake treats all the process that exit with non-zero as error and thus, generate the
rake aborted!output.You can avoid the double nesting and the error generated by rake by simply running the same command it is executing:
And use that instead.