gherkin 2.11.8 → 2.12.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,7 +4,7 @@ require 'gherkin/platform'
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "gherkin"
7
- # If the major version is bumped, verify that the change is ok:
7
+ # If the MINOR version is bumped (MAJOR.MINOR.PATCH), verify that the change is ok:
8
8
  #
9
9
  # * Comment out the cucumber dependency below
10
10
  # * Uncomment the cucumber location in Gemfile
@@ -60,7 +60,7 @@ Gem::Specification.new do |s|
60
60
 
61
61
  s.add_runtime_dependency('multi_json', '~> 1.3')
62
62
 
63
- s.add_development_dependency('cucumber', '>= 1.2.5')
63
+ s.add_development_dependency('cucumber', '>= 1.2.0')
64
64
  s.add_development_dependency('rake', '>= 10.0.3')
65
65
  s.add_development_dependency('bundler', '>= 1.2.3') # Make sure it's in sync with /.travis.yml
66
66
  s.add_development_dependency('rspec', '~> 2.13.0')
@@ -68,7 +68,7 @@ module Gherkin
68
68
  end
69
69
 
70
70
  @examples_range = examples.line_range.first..table_body_range.last
71
- if(@filter.eval([], [], [table_body_range]))
71
+ if(@filter.evaluate([], [], [table_body_range]))
72
72
  examples.rows = @filter.filter_table_body_rows(examples.rows)
73
73
  end
74
74
  @examples_events = [examples]
@@ -108,12 +108,12 @@ module Gherkin
108
108
  end
109
109
 
110
110
  def replay!
111
- feature_element_ok = @filter.eval(
111
+ feature_element_ok = @filter.evaluate(
112
112
  (@feature_tags + @feature_element_tags),
113
113
  [@feature_name, @feature_element_name].compact,
114
114
  [@feature_element_range].compact
115
115
  )
116
- examples_ok = @filter.eval(
116
+ examples_ok = @filter.evaluate(
117
117
  (@feature_tags + @feature_element_tags + @examples_tags),
118
118
  [@feature_name, @feature_element_name, @examples_name].compact,
119
119
  [@feature_element_range, @examples_range].compact
@@ -5,7 +5,7 @@ module Gherkin
5
5
  @lines = lines
6
6
  end
7
7
 
8
- def eval(tags, names, ranges)
8
+ def evaluate(tags, names, ranges)
9
9
  ranges.detect do |range|
10
10
  @lines.detect do |line|
11
11
  range.include?(line)
@@ -23,4 +23,4 @@ module Gherkin
23
23
  end
24
24
  end
25
25
  end
26
- end
26
+ end
@@ -198,7 +198,7 @@ module Gherkin
198
198
  end
199
199
  end
200
200
 
201
- if(RUBY_VERSION =~ /^1\.9/)
201
+ if(RUBY_VERSION =~ /^1\.9|2\.0/)
202
202
  START = /#{'^'.encode('UTF-8')}/
203
203
  TRIPLE_QUOTES = /#{'"""'.encode('UTF-8')}/
204
204
  else
@@ -5,7 +5,7 @@ module Gherkin
5
5
  @regexen = regexen
6
6
  end
7
7
 
8
- def eval(tags, names, ranges)
8
+ def evaluate(tags, names, ranges)
9
9
  @regexen.detect do |regexp|
10
10
  names.detect do |name|
11
11
  name =~ regexp
@@ -18,4 +18,4 @@ module Gherkin
18
18
  end
19
19
  end
20
20
  end
21
- end
21
+ end
@@ -7,7 +7,7 @@ module Gherkin
7
7
  @tag_expression = TagExpression.new(tags)
8
8
  end
9
9
 
10
- def eval(tags, names, ranges)
10
+ def evaluate(tags, names, ranges)
11
11
  @tag_expression.evaluate(tags.uniq)
12
12
  end
13
13
 
@@ -2,7 +2,8 @@
2
2
 
3
3
  module Gherkin
4
4
  unless defined?(Gherkin::VERSION)
5
- VERSION = '2.11.8'
5
+ # See the comment in gherkin.gemspec if you bump the MINOR version (MAJOR.MINOR.PATCH).
6
+ VERSION = '2.12.0'
6
7
  JRUBY = defined?(JRUBY_VERSION)
7
8
 
8
9
  if !JRUBY && !(RUBY_VERSION =~ /^(1\.8\.7|1\.9\.3|2\.0)/)
@@ -18,12 +18,6 @@ module Gherkin
18
18
  @ands.empty?
19
19
  end
20
20
 
21
- # <b>DEPRECATED:</b> Please use <tt>evaluate</tt> instead
22
- def eval(tags)
23
- warn '[DEPRECATION] "eval" is deprecated. Please use "evaluate" instead'
24
- evaluate(tags)
25
- end
26
-
27
21
  def evaluate(tags)
28
22
  return true if @ands.flatten.empty?
29
23
  vars = Hash[*tags.map{|tag| [tag.name, true]}.flatten]
@@ -162,7 +162,7 @@ module Gherkin
162
162
  utf8_pack(rest[0..rest.index(10)||-1]).strip # 10 is \n
163
163
  end
164
164
 
165
- if (RUBY_VERSION =~ /^1\.9/)
165
+ if (RUBY_VERSION =~ /^1\.9|2\.0/)
166
166
  def utf8_pack(array)
167
167
  array.pack("c*").force_encoding("UTF-8")
168
168
  end
@@ -16,6 +16,12 @@ module Gherkin
16
16
 
17
17
  f.step(Model::Step.new([], "Given ", "g", 3, nil, nil))
18
18
  f.match(Model::Match.new([], "def.rb:33"))
19
+ data = "abc"
20
+ if defined?(JRUBY_VERSION)
21
+ data = data.to_java_bytes
22
+ end
23
+ f.embedding("mime-type", data)
24
+
19
25
  f.result(Model::Result.new(:passed, 1, nil))
20
26
 
21
27
  f.step(Model::Step.new([], "When ", "w", 4, nil, nil))
@@ -52,6 +58,12 @@ module Gherkin
52
58
  "match": {
53
59
  "location": "def.rb:33"
54
60
  },
61
+ "embeddings": [
62
+ {
63
+ "mime_type": "mime-type",
64
+ "data": "YWJj"
65
+ }
66
+ ],
55
67
  "result": {
56
68
  "status": "passed",
57
69
  "duration": 1
@@ -86,7 +98,7 @@ module Gherkin
86
98
  }
87
99
  ]
88
100
  }
89
- MultiJson.load(expected).should == MultiJson.load(io.string)
101
+ MultiJson.load(io.string).should == MultiJson.load(expected)
90
102
  end
91
103
 
92
104
  it "renders results as pretty json" do
@@ -156,7 +168,7 @@ module Gherkin
156
168
  }
157
169
  ]
158
170
  }
159
- MultiJson.load(expected).should == MultiJson.load(io.string)
171
+ MultiJson.load(io.string).should == MultiJson.load(expected)
160
172
  end
161
173
  end
162
174
  end
@@ -1,4 +1,4 @@
1
- if RUBY_VERSION =~ /1.9/
1
+ if RUBY_VERSION =~ /1\.9|2\.0/
2
2
  Encoding.default_external = Encoding::UTF_8
3
3
  Encoding.default_internal = Encoding::UTF_8
4
4
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gherkin
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.8
5
- prerelease:
4
+ version: 2.12.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Mike Sassak
@@ -11,12 +10,11 @@ authors:
11
10
  autorequire:
12
11
  bindir: bin
13
12
  cert_chain: []
14
- date: 2013-04-09 00:00:00.000000000 Z
13
+ date: 2013-04-21 00:00:00.000000000 Z
15
14
  dependencies:
16
15
  - !ruby/object:Gem::Dependency
17
16
  name: rake-compiler
18
17
  requirement: !ruby/object:Gem::Requirement
19
- none: false
20
18
  requirements:
21
19
  - - ! '>='
22
20
  - !ruby/object:Gem::Version
@@ -24,7 +22,6 @@ dependencies:
24
22
  type: :development
25
23
  prerelease: false
26
24
  version_requirements: !ruby/object:Gem::Requirement
27
- none: false
28
25
  requirements:
29
26
  - - ! '>='
30
27
  - !ruby/object:Gem::Version
@@ -32,7 +29,6 @@ dependencies:
32
29
  - !ruby/object:Gem::Dependency
33
30
  name: multi_json
34
31
  requirement: !ruby/object:Gem::Requirement
35
- none: false
36
32
  requirements:
37
33
  - - ~>
38
34
  - !ruby/object:Gem::Version
@@ -40,7 +36,6 @@ dependencies:
40
36
  type: :runtime
41
37
  prerelease: false
42
38
  version_requirements: !ruby/object:Gem::Requirement
43
- none: false
44
39
  requirements:
45
40
  - - ~>
46
41
  - !ruby/object:Gem::Version
@@ -48,23 +43,20 @@ dependencies:
48
43
  - !ruby/object:Gem::Dependency
49
44
  name: cucumber
50
45
  requirement: !ruby/object:Gem::Requirement
51
- none: false
52
46
  requirements:
53
47
  - - ! '>='
54
48
  - !ruby/object:Gem::Version
55
- version: 1.2.5
49
+ version: 1.2.0
56
50
  type: :development
57
51
  prerelease: false
58
52
  version_requirements: !ruby/object:Gem::Requirement
59
- none: false
60
53
  requirements:
61
54
  - - ! '>='
62
55
  - !ruby/object:Gem::Version
63
- version: 1.2.5
56
+ version: 1.2.0
64
57
  - !ruby/object:Gem::Dependency
65
58
  name: rake
66
59
  requirement: !ruby/object:Gem::Requirement
67
- none: false
68
60
  requirements:
69
61
  - - ! '>='
70
62
  - !ruby/object:Gem::Version
@@ -72,7 +64,6 @@ dependencies:
72
64
  type: :development
73
65
  prerelease: false
74
66
  version_requirements: !ruby/object:Gem::Requirement
75
- none: false
76
67
  requirements:
77
68
  - - ! '>='
78
69
  - !ruby/object:Gem::Version
@@ -80,7 +71,6 @@ dependencies:
80
71
  - !ruby/object:Gem::Dependency
81
72
  name: bundler
82
73
  requirement: !ruby/object:Gem::Requirement
83
- none: false
84
74
  requirements:
85
75
  - - ! '>='
86
76
  - !ruby/object:Gem::Version
@@ -88,7 +78,6 @@ dependencies:
88
78
  type: :development
89
79
  prerelease: false
90
80
  version_requirements: !ruby/object:Gem::Requirement
91
- none: false
92
81
  requirements:
93
82
  - - ! '>='
94
83
  - !ruby/object:Gem::Version
@@ -96,7 +85,6 @@ dependencies:
96
85
  - !ruby/object:Gem::Dependency
97
86
  name: rspec
98
87
  requirement: !ruby/object:Gem::Requirement
99
- none: false
100
88
  requirements:
101
89
  - - ~>
102
90
  - !ruby/object:Gem::Version
@@ -104,7 +92,6 @@ dependencies:
104
92
  type: :development
105
93
  prerelease: false
106
94
  version_requirements: !ruby/object:Gem::Requirement
107
- none: false
108
95
  requirements:
109
96
  - - ~>
110
97
  - !ruby/object:Gem::Version
@@ -112,7 +99,6 @@ dependencies:
112
99
  - !ruby/object:Gem::Dependency
113
100
  name: rubyzip
114
101
  requirement: !ruby/object:Gem::Requirement
115
- none: false
116
102
  requirements:
117
103
  - - ! '>='
118
104
  - !ruby/object:Gem::Version
@@ -120,7 +106,6 @@ dependencies:
120
106
  type: :development
121
107
  prerelease: false
122
108
  version_requirements: !ruby/object:Gem::Requirement
123
- none: false
124
109
  requirements:
125
110
  - - ! '>='
126
111
  - !ruby/object:Gem::Version
@@ -128,7 +113,6 @@ dependencies:
128
113
  - !ruby/object:Gem::Dependency
129
114
  name: therubyracer
130
115
  requirement: !ruby/object:Gem::Requirement
131
- none: false
132
116
  requirements:
133
117
  - - ! '>='
134
118
  - !ruby/object:Gem::Version
@@ -136,7 +120,6 @@ dependencies:
136
120
  type: :development
137
121
  prerelease: false
138
122
  version_requirements: !ruby/object:Gem::Requirement
139
- none: false
140
123
  requirements:
141
124
  - - ! '>='
142
125
  - !ruby/object:Gem::Version
@@ -144,7 +127,6 @@ dependencies:
144
127
  - !ruby/object:Gem::Dependency
145
128
  name: yard
146
129
  requirement: !ruby/object:Gem::Requirement
147
- none: false
148
130
  requirements:
149
131
  - - ! '>='
150
132
  - !ruby/object:Gem::Version
@@ -152,7 +134,6 @@ dependencies:
152
134
  type: :development
153
135
  prerelease: false
154
136
  version_requirements: !ruby/object:Gem::Requirement
155
- none: false
156
137
  requirements:
157
138
  - - ! '>='
158
139
  - !ruby/object:Gem::Version
@@ -160,7 +141,6 @@ dependencies:
160
141
  - !ruby/object:Gem::Dependency
161
142
  name: rdiscount
162
143
  requirement: !ruby/object:Gem::Requirement
163
- none: false
164
144
  requirements:
165
145
  - - ! '>='
166
146
  - !ruby/object:Gem::Version
@@ -168,7 +148,6 @@ dependencies:
168
148
  type: :development
169
149
  prerelease: false
170
150
  version_requirements: !ruby/object:Gem::Requirement
171
- none: false
172
151
  requirements:
173
152
  - - ! '>='
174
153
  - !ruby/object:Gem::Version
@@ -176,7 +155,6 @@ dependencies:
176
155
  - !ruby/object:Gem::Dependency
177
156
  name: term-ansicolor
178
157
  requirement: !ruby/object:Gem::Requirement
179
- none: false
180
158
  requirements:
181
159
  - - ! '>='
182
160
  - !ruby/object:Gem::Version
@@ -184,7 +162,6 @@ dependencies:
184
162
  type: :development
185
163
  prerelease: false
186
164
  version_requirements: !ruby/object:Gem::Requirement
187
- none: false
188
165
  requirements:
189
166
  - - ! '>='
190
167
  - !ruby/object:Gem::Version
@@ -192,7 +169,6 @@ dependencies:
192
169
  - !ruby/object:Gem::Dependency
193
170
  name: builder
194
171
  requirement: !ruby/object:Gem::Requirement
195
- none: false
196
172
  requirements:
197
173
  - - ! '>='
198
174
  - !ruby/object:Gem::Version
@@ -200,7 +176,6 @@ dependencies:
200
176
  type: :development
201
177
  prerelease: false
202
178
  version_requirements: !ruby/object:Gem::Requirement
203
- none: false
204
179
  requirements:
205
180
  - - ! '>='
206
181
  - !ruby/object:Gem::Version
@@ -209,59 +184,59 @@ description: A fast Gherkin lexer/parser based on the Ragel State Machine Compil
209
184
  email: cukes@googlegroups.com
210
185
  executables: []
211
186
  extensions:
212
- - ext/gherkin_lexer_ar/extconf.rb
213
- - ext/gherkin_lexer_bg/extconf.rb
214
- - ext/gherkin_lexer_bm/extconf.rb
187
+ - ext/gherkin_lexer_pt/extconf.rb
188
+ - ext/gherkin_lexer_en_lol/extconf.rb
189
+ - ext/gherkin_lexer_ko/extconf.rb
190
+ - ext/gherkin_lexer_lu/extconf.rb
191
+ - ext/gherkin_lexer_fa/extconf.rb
215
192
  - ext/gherkin_lexer_ca/extconf.rb
216
- - ext/gherkin_lexer_cs/extconf.rb
217
- - ext/gherkin_lexer_cy_gb/extconf.rb
218
193
  - ext/gherkin_lexer_da/extconf.rb
219
- - ext/gherkin_lexer_de/extconf.rb
194
+ - ext/gherkin_lexer_vi/extconf.rb
195
+ - ext/gherkin_lexer_ja/extconf.rb
220
196
  - ext/gherkin_lexer_el/extconf.rb
221
- - ext/gherkin_lexer_en/extconf.rb
222
- - ext/gherkin_lexer_en_au/extconf.rb
223
- - ext/gherkin_lexer_en_lol/extconf.rb
224
- - ext/gherkin_lexer_en_old/extconf.rb
197
+ - ext/gherkin_lexer_sv/extconf.rb
198
+ - ext/gherkin_lexer_ru/extconf.rb
199
+ - ext/gherkin_lexer_it/extconf.rb
200
+ - ext/gherkin_lexer_hr/extconf.rb
201
+ - ext/gherkin_lexer_he/extconf.rb
202
+ - ext/gherkin_lexer_pl/extconf.rb
203
+ - ext/gherkin_lexer_tr/extconf.rb
204
+ - ext/gherkin_lexer_uz/extconf.rb
205
+ - ext/gherkin_lexer_hu/extconf.rb
206
+ - ext/gherkin_lexer_no/extconf.rb
207
+ - ext/gherkin_lexer_ar/extconf.rb
208
+ - ext/gherkin_lexer_tt/extconf.rb
225
209
  - ext/gherkin_lexer_en_pirate/extconf.rb
226
- - ext/gherkin_lexer_en_scouse/extconf.rb
227
- - ext/gherkin_lexer_en_tx/extconf.rb
210
+ - ext/gherkin_lexer_en_old/extconf.rb
228
211
  - ext/gherkin_lexer_eo/extconf.rb
229
- - ext/gherkin_lexer_es/extconf.rb
230
- - ext/gherkin_lexer_et/extconf.rb
231
- - ext/gherkin_lexer_fa/extconf.rb
232
- - ext/gherkin_lexer_fi/extconf.rb
233
212
  - ext/gherkin_lexer_fr/extconf.rb
234
- - ext/gherkin_lexer_gl/extconf.rb
235
- - ext/gherkin_lexer_he/extconf.rb
213
+ - ext/gherkin_lexer_tl/extconf.rb
214
+ - ext/gherkin_lexer_de/extconf.rb
215
+ - ext/gherkin_lexer_sk/extconf.rb
236
216
  - ext/gherkin_lexer_hi/extconf.rb
237
- - ext/gherkin_lexer_hr/extconf.rb
238
- - ext/gherkin_lexer_hu/extconf.rb
239
- - ext/gherkin_lexer_id/extconf.rb
240
- - ext/gherkin_lexer_is/extconf.rb
241
- - ext/gherkin_lexer_it/extconf.rb
242
- - ext/gherkin_lexer_ja/extconf.rb
243
- - ext/gherkin_lexer_ko/extconf.rb
244
- - ext/gherkin_lexer_lt/extconf.rb
245
- - ext/gherkin_lexer_lu/extconf.rb
246
217
  - ext/gherkin_lexer_lv/extconf.rb
218
+ - ext/gherkin_lexer_uk/extconf.rb
219
+ - ext/gherkin_lexer_bm/extconf.rb
220
+ - ext/gherkin_lexer_et/extconf.rb
221
+ - ext/gherkin_lexer_gl/extconf.rb
222
+ - ext/gherkin_lexer_is/extconf.rb
223
+ - ext/gherkin_lexer_sr_latn/extconf.rb
247
224
  - ext/gherkin_lexer_nl/extconf.rb
248
- - ext/gherkin_lexer_no/extconf.rb
249
- - ext/gherkin_lexer_pl/extconf.rb
250
- - ext/gherkin_lexer_pt/extconf.rb
251
225
  - ext/gherkin_lexer_ro/extconf.rb
252
- - ext/gherkin_lexer_ru/extconf.rb
253
- - ext/gherkin_lexer_sk/extconf.rb
254
- - ext/gherkin_lexer_sr_cyrl/extconf.rb
255
- - ext/gherkin_lexer_sr_latn/extconf.rb
256
- - ext/gherkin_lexer_sv/extconf.rb
257
- - ext/gherkin_lexer_tl/extconf.rb
258
- - ext/gherkin_lexer_tr/extconf.rb
259
- - ext/gherkin_lexer_tt/extconf.rb
260
- - ext/gherkin_lexer_uk/extconf.rb
261
- - ext/gherkin_lexer_uz/extconf.rb
262
- - ext/gherkin_lexer_vi/extconf.rb
263
- - ext/gherkin_lexer_zh_cn/extconf.rb
226
+ - ext/gherkin_lexer_en_scouse/extconf.rb
227
+ - ext/gherkin_lexer_lt/extconf.rb
228
+ - ext/gherkin_lexer_en/extconf.rb
264
229
  - ext/gherkin_lexer_zh_tw/extconf.rb
230
+ - ext/gherkin_lexer_id/extconf.rb
231
+ - ext/gherkin_lexer_zh_cn/extconf.rb
232
+ - ext/gherkin_lexer_bg/extconf.rb
233
+ - ext/gherkin_lexer_fi/extconf.rb
234
+ - ext/gherkin_lexer_es/extconf.rb
235
+ - ext/gherkin_lexer_sr_cyrl/extconf.rb
236
+ - ext/gherkin_lexer_en_au/extconf.rb
237
+ - ext/gherkin_lexer_en_tx/extconf.rb
238
+ - ext/gherkin_lexer_cy_gb/extconf.rb
239
+ - ext/gherkin_lexer_cs/extconf.rb
265
240
  extra_rdoc_files: []
266
241
  files:
267
242
  - .gitattributes
@@ -406,200 +381,135 @@ files:
406
381
  - tasks/yard/default/layout/html/layout.erb
407
382
  - tasks/yard/default/layout/html/logo.erb
408
383
  - tasks/yard/default/layout/html/setup.rb
409
- - ext/gherkin_lexer_ar/gherkin_lexer_ar.c
410
- - ext/gherkin_lexer_bg/gherkin_lexer_bg.c
411
- - ext/gherkin_lexer_bm/gherkin_lexer_bm.c
384
+ - ext/gherkin_lexer_pt/gherkin_lexer_pt.c
385
+ - ext/gherkin_lexer_en_lol/gherkin_lexer_en_lol.c
386
+ - ext/gherkin_lexer_ko/gherkin_lexer_ko.c
387
+ - ext/gherkin_lexer_lu/gherkin_lexer_lu.c
388
+ - ext/gherkin_lexer_fa/gherkin_lexer_fa.c
412
389
  - ext/gherkin_lexer_ca/gherkin_lexer_ca.c
413
- - ext/gherkin_lexer_cs/gherkin_lexer_cs.c
414
- - ext/gherkin_lexer_cy_gb/gherkin_lexer_cy_gb.c
415
390
  - ext/gherkin_lexer_da/gherkin_lexer_da.c
416
- - ext/gherkin_lexer_de/gherkin_lexer_de.c
391
+ - ext/gherkin_lexer_vi/gherkin_lexer_vi.c
392
+ - ext/gherkin_lexer_ja/gherkin_lexer_ja.c
417
393
  - ext/gherkin_lexer_el/gherkin_lexer_el.c
418
- - ext/gherkin_lexer_en/gherkin_lexer_en.c
419
- - ext/gherkin_lexer_en_au/gherkin_lexer_en_au.c
420
- - ext/gherkin_lexer_en_lol/gherkin_lexer_en_lol.c
421
- - ext/gherkin_lexer_en_old/gherkin_lexer_en_old.c
394
+ - ext/gherkin_lexer_sv/gherkin_lexer_sv.c
395
+ - ext/gherkin_lexer_ru/gherkin_lexer_ru.c
396
+ - ext/gherkin_lexer_it/gherkin_lexer_it.c
397
+ - ext/gherkin_lexer_hr/gherkin_lexer_hr.c
398
+ - ext/gherkin_lexer_he/gherkin_lexer_he.c
399
+ - ext/gherkin_lexer_pl/gherkin_lexer_pl.c
400
+ - ext/gherkin_lexer_tr/gherkin_lexer_tr.c
401
+ - ext/gherkin_lexer_uz/gherkin_lexer_uz.c
402
+ - ext/gherkin_lexer_hu/gherkin_lexer_hu.c
403
+ - ext/gherkin_lexer_no/gherkin_lexer_no.c
404
+ - ext/gherkin_lexer_ar/gherkin_lexer_ar.c
405
+ - ext/gherkin_lexer_tt/gherkin_lexer_tt.c
422
406
  - ext/gherkin_lexer_en_pirate/gherkin_lexer_en_pirate.c
423
- - ext/gherkin_lexer_en_scouse/gherkin_lexer_en_scouse.c
424
- - ext/gherkin_lexer_en_tx/gherkin_lexer_en_tx.c
407
+ - ext/gherkin_lexer_en_old/gherkin_lexer_en_old.c
425
408
  - ext/gherkin_lexer_eo/gherkin_lexer_eo.c
426
- - ext/gherkin_lexer_es/gherkin_lexer_es.c
427
- - ext/gherkin_lexer_et/gherkin_lexer_et.c
428
- - ext/gherkin_lexer_fa/gherkin_lexer_fa.c
429
- - ext/gherkin_lexer_fi/gherkin_lexer_fi.c
430
409
  - ext/gherkin_lexer_fr/gherkin_lexer_fr.c
431
- - ext/gherkin_lexer_gl/gherkin_lexer_gl.c
432
- - ext/gherkin_lexer_he/gherkin_lexer_he.c
410
+ - ext/gherkin_lexer_tl/gherkin_lexer_tl.c
411
+ - ext/gherkin_lexer_de/gherkin_lexer_de.c
412
+ - ext/gherkin_lexer_sk/gherkin_lexer_sk.c
433
413
  - ext/gherkin_lexer_hi/gherkin_lexer_hi.c
434
- - ext/gherkin_lexer_hr/gherkin_lexer_hr.c
435
- - ext/gherkin_lexer_hu/gherkin_lexer_hu.c
436
- - ext/gherkin_lexer_id/gherkin_lexer_id.c
437
- - ext/gherkin_lexer_is/gherkin_lexer_is.c
438
- - ext/gherkin_lexer_it/gherkin_lexer_it.c
439
- - ext/gherkin_lexer_ja/gherkin_lexer_ja.c
440
- - ext/gherkin_lexer_ko/gherkin_lexer_ko.c
441
- - ext/gherkin_lexer_lt/gherkin_lexer_lt.c
442
- - ext/gherkin_lexer_lu/gherkin_lexer_lu.c
443
414
  - ext/gherkin_lexer_lv/gherkin_lexer_lv.c
415
+ - ext/gherkin_lexer_uk/gherkin_lexer_uk.c
416
+ - ext/gherkin_lexer_bm/gherkin_lexer_bm.c
417
+ - ext/gherkin_lexer_et/gherkin_lexer_et.c
418
+ - ext/gherkin_lexer_gl/gherkin_lexer_gl.c
419
+ - ext/gherkin_lexer_is/gherkin_lexer_is.c
420
+ - ext/gherkin_lexer_sr_latn/gherkin_lexer_sr_latn.c
444
421
  - ext/gherkin_lexer_nl/gherkin_lexer_nl.c
445
- - ext/gherkin_lexer_no/gherkin_lexer_no.c
446
- - ext/gherkin_lexer_pl/gherkin_lexer_pl.c
447
- - ext/gherkin_lexer_pt/gherkin_lexer_pt.c
448
422
  - ext/gherkin_lexer_ro/gherkin_lexer_ro.c
449
- - ext/gherkin_lexer_ru/gherkin_lexer_ru.c
450
- - ext/gherkin_lexer_sk/gherkin_lexer_sk.c
451
- - ext/gherkin_lexer_sr_cyrl/gherkin_lexer_sr_cyrl.c
452
- - ext/gherkin_lexer_sr_latn/gherkin_lexer_sr_latn.c
453
- - ext/gherkin_lexer_sv/gherkin_lexer_sv.c
454
- - ext/gherkin_lexer_tl/gherkin_lexer_tl.c
455
- - ext/gherkin_lexer_tr/gherkin_lexer_tr.c
456
- - ext/gherkin_lexer_tt/gherkin_lexer_tt.c
457
- - ext/gherkin_lexer_uk/gherkin_lexer_uk.c
458
- - ext/gherkin_lexer_uz/gherkin_lexer_uz.c
459
- - ext/gherkin_lexer_vi/gherkin_lexer_vi.c
460
- - ext/gherkin_lexer_zh_cn/gherkin_lexer_zh_cn.c
423
+ - ext/gherkin_lexer_en_scouse/gherkin_lexer_en_scouse.c
424
+ - ext/gherkin_lexer_lt/gherkin_lexer_lt.c
425
+ - ext/gherkin_lexer_en/gherkin_lexer_en.c
461
426
  - ext/gherkin_lexer_zh_tw/gherkin_lexer_zh_tw.c
462
- - ext/gherkin_lexer_ar/extconf.rb
463
- - ext/gherkin_lexer_bg/extconf.rb
464
- - ext/gherkin_lexer_bm/extconf.rb
427
+ - ext/gherkin_lexer_id/gherkin_lexer_id.c
428
+ - ext/gherkin_lexer_zh_cn/gherkin_lexer_zh_cn.c
429
+ - ext/gherkin_lexer_bg/gherkin_lexer_bg.c
430
+ - ext/gherkin_lexer_fi/gherkin_lexer_fi.c
431
+ - ext/gherkin_lexer_es/gherkin_lexer_es.c
432
+ - ext/gherkin_lexer_sr_cyrl/gherkin_lexer_sr_cyrl.c
433
+ - ext/gherkin_lexer_en_au/gherkin_lexer_en_au.c
434
+ - ext/gherkin_lexer_en_tx/gherkin_lexer_en_tx.c
435
+ - ext/gherkin_lexer_cy_gb/gherkin_lexer_cy_gb.c
436
+ - ext/gherkin_lexer_cs/gherkin_lexer_cs.c
437
+ - ext/gherkin_lexer_pt/extconf.rb
438
+ - ext/gherkin_lexer_en_lol/extconf.rb
439
+ - ext/gherkin_lexer_ko/extconf.rb
440
+ - ext/gherkin_lexer_lu/extconf.rb
441
+ - ext/gherkin_lexer_fa/extconf.rb
465
442
  - ext/gherkin_lexer_ca/extconf.rb
466
- - ext/gherkin_lexer_cs/extconf.rb
467
- - ext/gherkin_lexer_cy_gb/extconf.rb
468
443
  - ext/gherkin_lexer_da/extconf.rb
469
- - ext/gherkin_lexer_de/extconf.rb
444
+ - ext/gherkin_lexer_vi/extconf.rb
445
+ - ext/gherkin_lexer_ja/extconf.rb
470
446
  - ext/gherkin_lexer_el/extconf.rb
471
- - ext/gherkin_lexer_en/extconf.rb
472
- - ext/gherkin_lexer_en_au/extconf.rb
473
- - ext/gherkin_lexer_en_lol/extconf.rb
474
- - ext/gherkin_lexer_en_old/extconf.rb
447
+ - ext/gherkin_lexer_sv/extconf.rb
448
+ - ext/gherkin_lexer_ru/extconf.rb
449
+ - ext/gherkin_lexer_it/extconf.rb
450
+ - ext/gherkin_lexer_hr/extconf.rb
451
+ - ext/gherkin_lexer_he/extconf.rb
452
+ - ext/gherkin_lexer_pl/extconf.rb
453
+ - ext/gherkin_lexer_tr/extconf.rb
454
+ - ext/gherkin_lexer_uz/extconf.rb
455
+ - ext/gherkin_lexer_hu/extconf.rb
456
+ - ext/gherkin_lexer_no/extconf.rb
457
+ - ext/gherkin_lexer_ar/extconf.rb
458
+ - ext/gherkin_lexer_tt/extconf.rb
475
459
  - ext/gherkin_lexer_en_pirate/extconf.rb
476
- - ext/gherkin_lexer_en_scouse/extconf.rb
477
- - ext/gherkin_lexer_en_tx/extconf.rb
460
+ - ext/gherkin_lexer_en_old/extconf.rb
478
461
  - ext/gherkin_lexer_eo/extconf.rb
479
- - ext/gherkin_lexer_es/extconf.rb
480
- - ext/gherkin_lexer_et/extconf.rb
481
- - ext/gherkin_lexer_fa/extconf.rb
482
- - ext/gherkin_lexer_fi/extconf.rb
483
462
  - ext/gherkin_lexer_fr/extconf.rb
484
- - ext/gherkin_lexer_gl/extconf.rb
485
- - ext/gherkin_lexer_he/extconf.rb
463
+ - ext/gherkin_lexer_tl/extconf.rb
464
+ - ext/gherkin_lexer_de/extconf.rb
465
+ - ext/gherkin_lexer_sk/extconf.rb
486
466
  - ext/gherkin_lexer_hi/extconf.rb
487
- - ext/gherkin_lexer_hr/extconf.rb
488
- - ext/gherkin_lexer_hu/extconf.rb
489
- - ext/gherkin_lexer_id/extconf.rb
490
- - ext/gherkin_lexer_is/extconf.rb
491
- - ext/gherkin_lexer_it/extconf.rb
492
- - ext/gherkin_lexer_ja/extconf.rb
493
- - ext/gherkin_lexer_ko/extconf.rb
494
- - ext/gherkin_lexer_lt/extconf.rb
495
- - ext/gherkin_lexer_lu/extconf.rb
496
467
  - ext/gherkin_lexer_lv/extconf.rb
468
+ - ext/gherkin_lexer_uk/extconf.rb
469
+ - ext/gherkin_lexer_bm/extconf.rb
470
+ - ext/gherkin_lexer_et/extconf.rb
471
+ - ext/gherkin_lexer_gl/extconf.rb
472
+ - ext/gherkin_lexer_is/extconf.rb
473
+ - ext/gherkin_lexer_sr_latn/extconf.rb
497
474
  - ext/gherkin_lexer_nl/extconf.rb
498
- - ext/gherkin_lexer_no/extconf.rb
499
- - ext/gherkin_lexer_pl/extconf.rb
500
- - ext/gherkin_lexer_pt/extconf.rb
501
475
  - ext/gherkin_lexer_ro/extconf.rb
502
- - ext/gherkin_lexer_ru/extconf.rb
503
- - ext/gherkin_lexer_sk/extconf.rb
504
- - ext/gherkin_lexer_sr_cyrl/extconf.rb
505
- - ext/gherkin_lexer_sr_latn/extconf.rb
506
- - ext/gherkin_lexer_sv/extconf.rb
507
- - ext/gherkin_lexer_tl/extconf.rb
508
- - ext/gherkin_lexer_tr/extconf.rb
509
- - ext/gherkin_lexer_tt/extconf.rb
510
- - ext/gherkin_lexer_uk/extconf.rb
511
- - ext/gherkin_lexer_uz/extconf.rb
512
- - ext/gherkin_lexer_vi/extconf.rb
513
- - ext/gherkin_lexer_zh_cn/extconf.rb
476
+ - ext/gherkin_lexer_en_scouse/extconf.rb
477
+ - ext/gherkin_lexer_lt/extconf.rb
478
+ - ext/gherkin_lexer_en/extconf.rb
514
479
  - ext/gherkin_lexer_zh_tw/extconf.rb
480
+ - ext/gherkin_lexer_id/extconf.rb
481
+ - ext/gherkin_lexer_zh_cn/extconf.rb
482
+ - ext/gherkin_lexer_bg/extconf.rb
483
+ - ext/gherkin_lexer_fi/extconf.rb
484
+ - ext/gherkin_lexer_es/extconf.rb
485
+ - ext/gherkin_lexer_sr_cyrl/extconf.rb
486
+ - ext/gherkin_lexer_en_au/extconf.rb
487
+ - ext/gherkin_lexer_en_tx/extconf.rb
488
+ - ext/gherkin_lexer_cy_gb/extconf.rb
489
+ - ext/gherkin_lexer_cs/extconf.rb
515
490
  homepage: http://github.com/cucumber/gherkin
516
491
  licenses: []
492
+ metadata: {}
517
493
  post_install_message:
518
494
  rdoc_options:
519
495
  - --charset=UTF-8
520
496
  require_paths:
521
497
  - lib
522
498
  required_ruby_version: !ruby/object:Gem::Requirement
523
- none: false
524
499
  requirements:
525
500
  - - ! '>='
526
501
  - !ruby/object:Gem::Version
527
502
  version: '0'
528
503
  required_rubygems_version: !ruby/object:Gem::Requirement
529
- none: false
530
504
  requirements:
531
505
  - - ! '>='
532
506
  - !ruby/object:Gem::Version
533
507
  version: '0'
534
508
  requirements: []
535
509
  rubyforge_project:
536
- rubygems_version: 1.8.25
510
+ rubygems_version: 2.0.3
537
511
  signing_key:
538
- specification_version: 3
539
- summary: gherkin-2.11.8
540
- test_files:
541
- - features/escaped_pipes.feature
542
- - features/feature_parser.feature
543
- - features/json_formatter.feature
544
- - features/json_parser.feature
545
- - features/native_lexer.feature
546
- - features/parser_with_native_lexer.feature
547
- - features/pretty_formatter.feature
548
- - features/step_definitions/eyeball_steps.rb
549
- - features/step_definitions/gherkin_steps.rb
550
- - features/step_definitions/json_formatter_steps.rb
551
- - features/step_definitions/json_parser_steps.rb
552
- - features/step_definitions/pretty_formatter_steps.rb
553
- - features/steps_parser.feature
554
- - features/support/env.rb
555
- - spec/gherkin/c_lexer_spec.rb
556
- - spec/gherkin/fixtures/1.feature
557
- - spec/gherkin/fixtures/comments_in_table.feature
558
- - spec/gherkin/fixtures/complex.feature
559
- - spec/gherkin/fixtures/complex.json
560
- - spec/gherkin/fixtures/complex_for_filtering.feature
561
- - spec/gherkin/fixtures/complex_with_tags.feature
562
- - spec/gherkin/fixtures/dos_line_endings.feature
563
- - spec/gherkin/fixtures/examples_with_only_header.feature
564
- - spec/gherkin/fixtures/hantu_pisang.feature
565
- - spec/gherkin/fixtures/i18n_fr.feature
566
- - spec/gherkin/fixtures/i18n_fr2.feature
567
- - spec/gherkin/fixtures/i18n_no.feature
568
- - spec/gherkin/fixtures/i18n_pt1.feature
569
- - spec/gherkin/fixtures/i18n_pt2.feature
570
- - spec/gherkin/fixtures/i18n_pt3.feature
571
- - spec/gherkin/fixtures/i18n_pt4.feature
572
- - spec/gherkin/fixtures/i18n_zh-CN.feature
573
- - spec/gherkin/fixtures/iso-8859-1.feature
574
- - spec/gherkin/fixtures/issue_145.feature
575
- - spec/gherkin/fixtures/scenario_outline_with_tags.feature
576
- - spec/gherkin/fixtures/scenario_without_steps.feature
577
- - spec/gherkin/fixtures/simple_with_comments.feature
578
- - spec/gherkin/fixtures/simple_with_tags.feature
579
- - spec/gherkin/fixtures/with_bom.feature
580
- - spec/gherkin/fixtures/with_bom_and_language_spec.feature
581
- - spec/gherkin/formatter/ansi_escapes_spec.rb
582
- - spec/gherkin/formatter/filter_formatter_spec.rb
583
- - spec/gherkin/formatter/json_formatter_spec.rb
584
- - spec/gherkin/formatter/model_spec.rb
585
- - spec/gherkin/formatter/pretty_formatter_spec.rb
586
- - spec/gherkin/formatter/spaces.feature
587
- - spec/gherkin/formatter/step_printer_spec.rb
588
- - spec/gherkin/formatter/tabs.feature
589
- - spec/gherkin/formatter/tag_count_formatter_spec.rb
590
- - spec/gherkin/i18n_spec.rb
591
- - spec/gherkin/java_lexer_spec.rb
592
- - spec/gherkin/json_parser_spec.rb
593
- - spec/gherkin/lexer/i18n_lexer_spec.rb
594
- - spec/gherkin/native_lexer_spec.rb
595
- - spec/gherkin/parser/parser_spec.rb
596
- - spec/gherkin/rubify_spec.rb
597
- - spec/gherkin/sexp_recorder.rb
598
- - spec/gherkin/shared/doc_string_group.rb
599
- - spec/gherkin/shared/encoding_group.rb
600
- - spec/gherkin/shared/lexer_group.rb
601
- - spec/gherkin/shared/row_group.rb
602
- - spec/gherkin/shared/tags_group.rb
603
- - spec/gherkin/tag_expression_spec.rb
604
- - spec/spec_helper.rb
512
+ specification_version: 4
513
+ summary: gherkin-2.12.0
514
+ test_files: []
605
515
  has_rdoc: