chutney 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +0 -2
- data/.coveralls.yml +1 -0
- data/.gitignore +2 -0
- data/README.md +1 -0
- data/chutney.gemspec +3 -1
- data/lib/chutney/version.rb +1 -1
- data/spec/chutney_spec.rb +3 -0
- metadata +20 -5
- data/Dockerfile +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d7f3350b6ca9671338d0d9a50b910c1b53e7142bdfc65d9f81285b15326ed736
|
|
4
|
+
data.tar.gz: be3d83367b4c5def74098c27d950aeb1c8d3ac886b971a1f470e42c2ac89b277
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 482df42a60b82635f7cd9c03391f51c17f520a4679557cf9c4553ff3bd534b52cbb65e03870ebe8e9600a6ac6c0bdb27972af7679eec87fc70784a0e18573416
|
|
7
|
+
data.tar.gz: 46832675adc9ef9d43492b3851a7f906218da320544e13bc5c9bb333bc65980d00024b4bd6640089ef1cbf00009ad092f5441030fc221ccf400349f3a95f4323
|
data/.circleci/config.yml
CHANGED
data/.coveralls.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
repo_token: NyiT63e9YzLD8GHGI0iu4xHDq2bT7MA1H
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Lint Gherkin Files
|
|
2
2
|
|
|
3
3
|

|
|
4
|
+
[](https://www.codefactor.io/repository/github/billyruffian/chutney)
|
|
4
5
|

|
|
5
6
|
|
|
6
7
|
This tool lints gherkin files.
|
data/chutney.gemspec
CHANGED
|
@@ -14,7 +14,8 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
|
|
15
15
|
spec.summary = 'A linter for English language Gherkin'
|
|
16
16
|
spec.description = 'A fork of gherkin_lint (https://github.com/funkwerk/gherkin_lint) ' \
|
|
17
|
-
'which is no-longer being actively maintained'
|
|
17
|
+
'(which is no-longer being actively maintained), brought up to date '\
|
|
18
|
+
'with the Cucumber 3 monogem.'
|
|
18
19
|
|
|
19
20
|
spec.homepage = 'https://github.com/BillyRuffian/chutney'
|
|
20
21
|
spec.license = 'MIT'
|
|
@@ -51,5 +52,6 @@ Gem::Specification.new do |spec|
|
|
|
51
52
|
spec.add_development_dependency 'aruba', '~> 0.14.0'
|
|
52
53
|
spec.add_development_dependency 'rubocop', '~> 0.68.0'
|
|
53
54
|
spec.add_development_dependency 'rspec', '~> 3.8'
|
|
55
|
+
spec.add_development_dependency 'coveralls', '~> 0.8'
|
|
54
56
|
|
|
55
57
|
end
|
data/lib/chutney/version.rb
CHANGED
data/spec/chutney_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chutney
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nigel Brookes-Thomas
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: exe
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2019-05-
|
|
14
|
+
date: 2019-05-13 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: amatch
|
|
@@ -125,8 +125,23 @@ dependencies:
|
|
|
125
125
|
- - "~>"
|
|
126
126
|
- !ruby/object:Gem::Version
|
|
127
127
|
version: '3.8'
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
- !ruby/object:Gem::Dependency
|
|
129
|
+
name: coveralls
|
|
130
|
+
requirement: !ruby/object:Gem::Requirement
|
|
131
|
+
requirements:
|
|
132
|
+
- - "~>"
|
|
133
|
+
- !ruby/object:Gem::Version
|
|
134
|
+
version: '0.8'
|
|
135
|
+
type: :development
|
|
136
|
+
prerelease: false
|
|
137
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
138
|
+
requirements:
|
|
139
|
+
- - "~>"
|
|
140
|
+
- !ruby/object:Gem::Version
|
|
141
|
+
version: '0.8'
|
|
142
|
+
description: A fork of gherkin_lint (https://github.com/funkwerk/gherkin_lint) (which
|
|
143
|
+
is no-longer being actively maintained), brought up to date with the Cucumber 3
|
|
144
|
+
monogem.
|
|
130
145
|
email:
|
|
131
146
|
- nigel@brookes-thomas.co.uk
|
|
132
147
|
executables:
|
|
@@ -135,9 +150,9 @@ extensions: []
|
|
|
135
150
|
extra_rdoc_files: []
|
|
136
151
|
files:
|
|
137
152
|
- ".circleci/config.yml"
|
|
153
|
+
- ".coveralls.yml"
|
|
138
154
|
- ".gitignore"
|
|
139
155
|
- ".rubocop.yml"
|
|
140
|
-
- Dockerfile
|
|
141
156
|
- Gemfile
|
|
142
157
|
- Guardfile
|
|
143
158
|
- LICENSE
|