Hi everyone,
I just pushed Turnip 1.1.0 out to rubygems. You get some cool new features, and support for Capybara 2.0. Turnip features not run under RSpec as `:type => :feature`, just like Capybara 2.0. If you want to use Capybara 1.1.x, you will have to set:
Turnip.type = :request
/Jonas
Changes:
- Set type to `:feature` by default, for compatibility with Capybara 2.0.
- Define existing methods as steps, by calling `step :some_method_name, "some description"`
- More informative error message when steps are ambiguous
- Load a special `turnip_helper` file before loading spec helper. Can help bootstrapping Turnip if there is a complicated setup needed.
- Tables now support substitution of variables from scenario outlines
- Load errors in spec helper file are no longer masked
-