Releases: funkwerk/gherkin_lint
Releases · funkwerk/gherkin_lint
CI for Windows and finialized Windows Support
Support for Windows
Support for Windows thanks to @enkessler
Technical release cause yanking of gems is not possible.
Support for Windows
Windows is now supported thanks to @enkessler
simplified CLI interface
reenabled providing files as ARGV
. It is not supported anymore to call gherkin_lint with gherkin_lint --file test.feature
. Instead call it like gherkin_lint test.feature
Enabled Custom Linters
Support for #8
fixed Docker Build
this allows now to easily play with gherkin_lint without installing it.
Just execute:
docker run -ti -v $(pwd):/src -w /src gherkin/lint *.feature
fixed ruby import
Merge pull request #5 from versus-systems/master moved include inside class
using engtagger 0.2.1
Merge pull request #4 from funkwerk/feature/tag_used_multiple_times tags shouldn't be used mutliple times for a scenario
Tags shouldn't be used mutliple times for a scenario
It's redundant, to write a Tag twice.
Instead of
@skip
Feature: Test
@skip
Scenario: A
just write
@skip
Feature: Test
Scenario: A
proper handling of snake case feature files
Feature Files should be snake cased.
So feature_test.feature
is a valid Filename.
Now it's also valid to name the Feature feature-test
.