Skip to content

Releases: funkwerk/gherkin_lint

CI for Windows and finialized Windows Support

03 Dec 23:59
Compare
Choose a tag to compare

Support for Windows

30 Nov 19:15
Compare
Choose a tag to compare

Support for Windows thanks to @enkessler

Technical release cause yanking of gems is not possible.

Support for Windows

30 Nov 19:14
Compare
Choose a tag to compare

Windows is now supported thanks to @enkessler

simplified CLI interface

03 Nov 10:32
816d080
Compare
Choose a tag to compare

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

24 Aug 10:01
Compare
Choose a tag to compare

fixed Docker Build

12 Mar 19:49
Compare
Choose a tag to compare

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

08 Dec 19:05
Compare
Choose a tag to compare
Merge pull request #5 from versus-systems/master

moved include inside class

using engtagger 0.2.1

21 Oct 22:30
Compare
Choose a tag to compare
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

14 Oct 15:09
Compare
Choose a tag to compare

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

31 Aug 19:04
Compare
Choose a tag to compare

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.