chutney 1.6.0 → 1.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8bc9337fd1120b47c6240548eef0890f55fdc5c0512540e087e0054e1cc5382
4
- data.tar.gz: f79f72dd8c83173f48581b4ee9e2785aac7ae8009dbe2d92a569a39c09025e3f
3
+ metadata.gz: d7f3350b6ca9671338d0d9a50b910c1b53e7142bdfc65d9f81285b15326ed736
4
+ data.tar.gz: be3d83367b4c5def74098c27d950aeb1c8d3ac886b971a1f470e42c2ac89b277
5
5
  SHA512:
6
- metadata.gz: 7f2ba192db1ab5d8cab0a8d2a806363bca59235bc8776bc33f1727b7ab8e3e880b96e0192319f0cccb8e36a5c6ef5b141d26468dce6362cd69839f1fdc24c08d
7
- data.tar.gz: 662ed62e0777f3dc493e52f14a2703b57ab2a71a1487f5716bf248ecfae8488b6049530935458de42bec0eada88544fdb521e3b9b82f7fbaad74b7d05e615a06
6
+ metadata.gz: 482df42a60b82635f7cd9c03391f51c17f520a4679557cf9c4553ff3bd534b52cbb65e03870ebe8e9600a6ac6c0bdb27972af7679eec87fc70784a0e18573416
7
+ data.tar.gz: 46832675adc9ef9d43492b3851a7f906218da320544e13bc5c9bb333bc65980d00024b4bd6640089ef1cbf00009ad092f5441030fc221ccf400349f3a95f4323
data/.circleci/config.yml CHANGED
@@ -10,5 +10,3 @@ jobs:
10
10
  - checkout
11
11
  - run: bundle install
12
12
  - run: bundle exec rake test
13
-
14
-
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ repo_token: NyiT63e9YzLD8GHGI0iu4xHDq2bT7MA1H
data/.gitignore CHANGED
@@ -12,3 +12,5 @@ Gemfile.lock
12
12
  .rspec_status
13
13
 
14
14
  .DS_Store
15
+
16
+ chutney-*.gem
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Lint Gherkin Files
2
2
 
3
3
  ![CircleCI branch](https://img.shields.io/circleci/project/github/BillyRuffian/chutney/master.svg?style=flat-square)
4
+ [![CodeFactor](https://www.codefactor.io/repository/github/billyruffian/chutney/badge?style=flat-square)](https://www.codefactor.io/repository/github/billyruffian/chutney)
4
5
  ![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/BillyRuffian/chutney.svg?style=flat-square)
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
@@ -1,3 +1,3 @@
1
1
  module Chutney
2
- VERSION = '1.6.0'.freeze
2
+ VERSION = '1.6.1'.freeze
3
3
  end
data/spec/chutney_spec.rb CHANGED
@@ -1,3 +1,6 @@
1
+ require 'coveralls'
2
+ Coveralls.wear!
3
+
1
4
  require 'rspec'
2
5
  require 'chutney'
3
6
  require 'chutney/linter/tag_constraint'
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.0
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-09 00:00:00.000000000 Z
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
- description: A fork of gherkin_lint (https://github.com/funkwerk/gherkin_lint) which
129
- is no-longer being actively maintained
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
data/Dockerfile DELETED
@@ -1,9 +0,0 @@
1
- FROM ruby
2
- MAINTAINER think@hotmail.de
3
-
4
- RUN gem install chutney --no-format-exec
5
-
6
- ENV LC_ALL=C.UTF-8
7
-
8
- ENTRYPOINT ["chutney"]
9
- CMD ["--help"]