Yeah, it's not obvious in RubyMine what the root is and depends where you run it from.
With Cucumber, you can "tag" a scenario...
@wip
Scenario: my behavior
...
And then run from the cmd line with --tags @wip
Or a multitude of other ways :(
So I can appreciate that the initial ramp up is tough ... just to get started ... a lot of the time.
Zeljko's suggestion is a good one to first ensure it runs from the cmd line.
Now looking at your screenshot more closely, from the cmd line you should be able to just invoke 'cucumber'... or with tags: cucumber --tags @wip. You will need to first 'gem install cucumber' if you haven't already.
@rob