gherkin_language 0.6.0 → 0.7.0
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/.rubocop.yml +1 -1
- data/Rakefile +1 -1
- data/features/sentences.feature +4 -3
- data/gherkin_language.gemspec +2 -2
- data/lib/gherkin_language/language_tool_process.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bad93004b411d3432aa4ca8ce4ee9d2dfca867ee
|
|
4
|
+
data.tar.gz: 039276b0640d4d8122e5b1ec1c59e9136b5ada1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82e800b947554fffe5e04d66f4421e98888fd1677ee57022faa46f2002d6f89203562fba0496ac8c648a7e4b0e046f6a2e06d5adf32fade084ce0cd455af1111
|
|
7
|
+
data.tar.gz: 102f749db82303e1557c3ecd861e40d37ac4c6632c65c83ffc056a6c3d2f7eb676f3b1a8b55db19a50c5b3c4740b0c11b3f49d63f179c3c8a9589f1d5434425a
|
data/.rubocop.yml
CHANGED
data/Rakefile
CHANGED
data/features/sentences.feature
CHANGED
|
@@ -167,8 +167,8 @@ Feature: Sentences
|
|
|
167
167
|
Then verify <test>
|
|
168
168
|
|
|
169
169
|
Examples: Test
|
|
170
|
-
| test
|
|
171
|
-
| multiline
|
|
170
|
+
| test |
|
|
171
|
+
| multiline\nalso works |
|
|
172
172
|
"""
|
|
173
173
|
When I run `ruby extract_sentences.rb`
|
|
174
174
|
Then it should pass with:
|
|
@@ -176,5 +176,6 @@ Feature: Sentences
|
|
|
176
176
|
Test
|
|
177
177
|
Test
|
|
178
178
|
Test
|
|
179
|
-
Given a user said when I execute then verify
|
|
179
|
+
Given a user said replacement when I execute replacement then verify multiline
|
|
180
|
+
also works
|
|
180
181
|
"""
|
data/gherkin_language.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'gherkin_language'
|
|
3
|
-
s.version = '0.
|
|
4
|
-
s.date = '2016-12-
|
|
3
|
+
s.version = '0.7.0'
|
|
4
|
+
s.date = '2016-12-30'
|
|
5
5
|
s.summary = 'Gherkin Language'
|
|
6
6
|
s.description = 'Check language of Gherkin Files'
|
|
7
7
|
s.authors = ['Stefan Rohe']
|
|
@@ -16,7 +16,7 @@ require 'digest'
|
|
|
16
16
|
class LanguageToolProcess
|
|
17
17
|
attr_accessor :errors, :unknown_words
|
|
18
18
|
|
|
19
|
-
VERSION = 'LanguageTool-3.
|
|
19
|
+
VERSION = 'LanguageTool-3.6'.freeze
|
|
20
20
|
URL = "https://www.languagetool.org/download/#{VERSION}.zip".freeze
|
|
21
21
|
NGRAM_VERSION = 'ngrams-en-20150817'.freeze
|
|
22
22
|
NGRAM_URL = "https://languagetool.org/download/ngram-data/#{NGRAM_VERSION}.zip".freeze
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gherkin_language
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefan Rohe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-12-
|
|
11
|
+
date: 2016-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gherkin
|