I have a file that I want to run in this directory:
C:\ruby\App\bin\cucumber
And I have a file that I want to pass it in this directory:
C:\ruby\App\features\creating_projects.feature
All works fine when I explicitly cd
to /bin
and run the file:
C:\ruby\App>cd bin
C:\ruby\App\bin>cucumber ..\features\creating_projects.feature
But I want to be able to run it being in my app's root directory. But this doesn't work. It says, "bin\cucumber" is not a program, command of file
:
C:\ruby\App>bin\cucumber features\creating_projects.feature
# error
How can I run the file this way?