casecumber 1.0.2.1 → 1.2.1.cb2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. data/.rvmrc +1 -1
  2. data/.travis.yml +13 -6
  3. data/Gemfile +2 -0
  4. data/History.md +139 -0
  5. data/LICENSE +1 -1
  6. data/README.md +19 -4
  7. data/cucumber.gemspec +16 -29
  8. data/cucumber.yml +3 -3
  9. data/examples/i18n/README.textile +1 -16
  10. data/features/.cucumber/stepdefs.json +612 -0
  11. data/features/backtraces.feature +36 -0
  12. data/features/doc_strings.feature +73 -0
  13. data/features/drb_server_integration.feature +63 -0
  14. data/features/formatter_step_file_colon_line.feature +46 -0
  15. data/features/json_formatter.feature +137 -137
  16. data/features/nested_steps.feature +60 -0
  17. data/features/rerun_formatter.feature +35 -0
  18. data/features/run_specific_scenarios.feature +47 -0
  19. data/features/step_definitions/cucumber-features/cucumber_ruby_mappings.rb +32 -3
  20. data/features/step_definitions/cucumber_steps.rb +15 -0
  21. data/features/step_definitions/drb_steps.rb +3 -0
  22. data/features/support/env.rb +4 -0
  23. data/features/support/feature_factory.rb +50 -0
  24. data/gem_tasks/cucumber.rake +15 -8
  25. data/gem_tasks/yard.rake +18 -0
  26. data/legacy_features/call_steps_from_stepdefs.feature +1 -1
  27. data/legacy_features/cucumber_cli.feature +0 -7
  28. data/legacy_features/default_snippets.feature +3 -2
  29. data/legacy_features/junit_formatter.feature +60 -10
  30. data/legacy_features/language_help.feature +17 -15
  31. data/legacy_features/snippets_when_using_star_keyword.feature +3 -2
  32. data/legacy_features/step_definitions/cucumber_steps.rb +1 -1
  33. data/legacy_features/support/env.rb +1 -1
  34. data/legacy_features/wire_protocol.feature +1 -1
  35. data/lib/cucumber/ast/background.rb +11 -0
  36. data/lib/cucumber/ast/doc_string.rb +10 -29
  37. data/lib/cucumber/ast/feature.rb +6 -2
  38. data/lib/cucumber/ast/feature_element.rb +7 -3
  39. data/lib/cucumber/ast/multiline_argument.rb +30 -0
  40. data/lib/cucumber/ast/outline_table.rb +20 -12
  41. data/lib/cucumber/ast/step.rb +1 -1
  42. data/lib/cucumber/ast/step_invocation.rb +2 -15
  43. data/lib/cucumber/ast/table.rb +67 -38
  44. data/lib/cucumber/ast/tags.rb +7 -7
  45. data/lib/cucumber/ast/tree_walker.rb +5 -5
  46. data/lib/cucumber/cli/configuration.rb +4 -0
  47. data/lib/cucumber/cli/main.rb +1 -0
  48. data/lib/cucumber/cli/options.rb +29 -10
  49. data/lib/cucumber/constantize.rb +1 -1
  50. data/lib/cucumber/core_ext/disable_mini_and_test_unit_autorun.rb +24 -10
  51. data/lib/cucumber/formatter/ansicolor.rb +8 -13
  52. data/lib/cucumber/formatter/console.rb +3 -2
  53. data/lib/cucumber/formatter/cucumber.css +7 -1
  54. data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +6 -2
  55. data/lib/cucumber/formatter/html.rb +14 -8
  56. data/lib/cucumber/formatter/interceptor.rb +62 -0
  57. data/lib/cucumber/formatter/json.rb +0 -12
  58. data/lib/cucumber/formatter/junit.rb +31 -15
  59. data/lib/cucumber/formatter/pretty.rb +3 -3
  60. data/lib/cucumber/formatter/progress.rb +1 -1
  61. data/lib/cucumber/formatter/rerun.rb +31 -8
  62. data/lib/cucumber/formatter/usage.rb +1 -1
  63. data/lib/cucumber/js_support/js_language.rb +1 -1
  64. data/lib/cucumber/js_support/js_snippets.rb +1 -1
  65. data/lib/cucumber/language_support/language_methods.rb +0 -4
  66. data/lib/cucumber/parser/gherkin_builder.rb +13 -14
  67. data/lib/cucumber/platform.rb +1 -1
  68. data/lib/cucumber/py_support/py_language.rb +3 -7
  69. data/lib/cucumber/rb_support/rb_dsl.rb +15 -8
  70. data/lib/cucumber/rb_support/rb_language.rb +3 -17
  71. data/lib/cucumber/rb_support/rb_step_definition.rb +17 -5
  72. data/lib/cucumber/rb_support/rb_transform.rb +5 -2
  73. data/lib/cucumber/rb_support/rb_world.rb +9 -5
  74. data/lib/cucumber/rb_support/regexp_argument_matcher.rb +3 -3
  75. data/lib/cucumber/runtime/results.rb +2 -2
  76. data/lib/cucumber/runtime/support_code.rb +14 -19
  77. data/lib/cucumber/runtime.rb +40 -2
  78. data/lib/cucumber/step_match.rb +3 -4
  79. data/lib/cucumber/term/ansicolor.rb +118 -0
  80. data/lib/cucumber/wire_support/wire_protocol/requests.rb +7 -5
  81. data/lib/cucumber/wire_support/wire_protocol.rb +0 -1
  82. data/lib/cucumber.rb +2 -1
  83. data/spec/cucumber/ast/doc_string_spec.rb +2 -2
  84. data/spec/cucumber/ast/feature_factory.rb +4 -3
  85. data/spec/cucumber/ast/scenario_outline_spec.rb +1 -2
  86. data/spec/cucumber/ast/step_spec.rb +1 -1
  87. data/spec/cucumber/ast/table_spec.rb +61 -27
  88. data/spec/cucumber/cli/configuration_spec.rb +12 -6
  89. data/spec/cucumber/cli/main_spec.rb +2 -2
  90. data/spec/cucumber/cli/options_spec.rb +9 -3
  91. data/spec/cucumber/constantize_spec.rb +16 -0
  92. data/spec/cucumber/formatter/ansicolor_spec.rb +1 -1
  93. data/spec/cucumber/formatter/html_spec.rb +4 -3
  94. data/spec/cucumber/formatter/interceptor_spec.rb +111 -0
  95. data/spec/cucumber/formatter/junit_spec.rb +36 -20
  96. data/spec/cucumber/formatter/progress_spec.rb +2 -2
  97. data/spec/cucumber/rb_support/rb_language_spec.rb +5 -5
  98. data/spec/cucumber/rb_support/rb_step_definition_spec.rb +20 -4
  99. data/spec/cucumber/rb_support/rb_transform_spec.rb +6 -2
  100. data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +7 -3
  101. data/spec/cucumber/runtime/results_spec.rb +81 -0
  102. data/spec/cucumber/step_match_spec.rb +8 -4
  103. data/spec/spec_helper.rb +15 -1
  104. metadata +68 -128
  105. data/.gitignore +0 -26
  106. data/.gitmodules +0 -3
  107. data/.yardopts +0 -0
  108. data/Gemfile.lock +0 -115
  109. data/examples/i18n/de/.gitignore +0 -1
  110. data/examples/i18n/en/.gitignore +0 -1
  111. data/examples/i18n/eo/.gitignore +0 -1
  112. data/examples/i18n/fi/.gitignore +0 -1
  113. data/examples/i18n/hu/.gitignore +0 -1
  114. data/examples/i18n/id/.gitignore +0 -1
  115. data/examples/i18n/ja/.gitignore +0 -1
  116. data/examples/i18n/ko/.gitignore +0 -1
  117. data/examples/i18n/lt/.gitignore +0 -1
  118. data/examples/i18n/pl/.gitignore +0 -1
  119. data/examples/i18n/sk/.gitignore +0 -1
  120. data/examples/i18n/tr/.gitignore +0 -1
  121. data/examples/i18n/zh-TW/.gitignore +0 -1
  122. data/examples/python/lib/.gitignore +0 -1
  123. data/examples/ruby2python/lib/.gitignore +0 -1
  124. data/examples/watir/.gitignore +0 -2
  125. data/fixtures/self_test/.gitignore +0 -1
  126. data/lib/cucumber/formatter/pdf.rb +0 -244
  127. data/lib/cucumber/step_argument.rb +0 -9
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: casecumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2.1
5
- prerelease:
4
+ version: 1.2.1.cb2
5
+ prerelease: 6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Aslak Hellesøy
@@ -21,7 +21,7 @@ dependencies:
21
21
  requirements:
22
22
  - - ~>
23
23
  - !ruby/object:Gem::Version
24
- version: 2.4.5
24
+ version: 2.11.0
25
25
  type: :runtime
26
26
  prerelease: false
27
27
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,23 +29,7 @@ dependencies:
29
29
  requirements:
30
30
  - - ~>
31
31
  - !ruby/object:Gem::Version
32
- version: 2.4.5
33
- - !ruby/object:Gem::Dependency
34
- name: term-ansicolor
35
- requirement: !ruby/object:Gem::Requirement
36
- none: false
37
- requirements:
38
- - - ! '>='
39
- - !ruby/object:Gem::Version
40
- version: 1.0.5
41
- type: :runtime
42
- prerelease: false
43
- version_requirements: !ruby/object:Gem::Requirement
44
- none: false
45
- requirements:
46
- - - ! '>='
47
- - !ruby/object:Gem::Version
48
- version: 1.0.5
32
+ version: 2.11.0
49
33
  - !ruby/object:Gem::Dependency
50
34
  name: builder
51
35
  requirement: !ruby/object:Gem::Requirement
@@ -69,7 +53,7 @@ dependencies:
69
53
  requirements:
70
54
  - - ! '>='
71
55
  - !ruby/object:Gem::Version
72
- version: 1.1.2
56
+ version: 1.1.3
73
57
  type: :runtime
74
58
  prerelease: false
75
59
  version_requirements: !ruby/object:Gem::Requirement
@@ -77,7 +61,7 @@ dependencies:
77
61
  requirements:
78
62
  - - ! '>='
79
63
  - !ruby/object:Gem::Version
80
- version: 1.1.2
64
+ version: 1.1.3
81
65
  - !ruby/object:Gem::Dependency
82
66
  name: json
83
67
  requirement: !ruby/object:Gem::Requirement
@@ -101,7 +85,7 @@ dependencies:
101
85
  requirements:
102
86
  - - ~>
103
87
  - !ruby/object:Gem::Version
104
- version: 0.4.2
88
+ version: 0.4.11
105
89
  type: :development
106
90
  prerelease: false
107
91
  version_requirements: !ruby/object:Gem::Requirement
@@ -109,7 +93,7 @@ dependencies:
109
93
  requirements:
110
94
  - - ~>
111
95
  - !ruby/object:Gem::Version
112
- version: 0.4.2
96
+ version: 0.4.11
113
97
  - !ruby/object:Gem::Dependency
114
98
  name: rake
115
99
  requirement: !ruby/object:Gem::Requirement
@@ -131,17 +115,17 @@ dependencies:
131
115
  requirement: !ruby/object:Gem::Requirement
132
116
  none: false
133
117
  requirements:
134
- - - ! '>='
118
+ - - ~>
135
119
  - !ruby/object:Gem::Version
136
- version: 2.6.0
120
+ version: 2.10.0
137
121
  type: :development
138
122
  prerelease: false
139
123
  version_requirements: !ruby/object:Gem::Requirement
140
124
  none: false
141
125
  requirements:
142
- - - ! '>='
126
+ - - ~>
143
127
  - !ruby/object:Gem::Version
144
- version: 2.6.0
128
+ version: 2.10.0
145
129
  - !ruby/object:Gem::Dependency
146
130
  name: nokogiri
147
131
  requirement: !ruby/object:Gem::Requirement
@@ -149,7 +133,7 @@ dependencies:
149
133
  requirements:
150
134
  - - ! '>='
151
135
  - !ruby/object:Gem::Version
152
- version: 1.4.4
136
+ version: 1.5.2
153
137
  type: :development
154
138
  prerelease: false
155
139
  version_requirements: !ruby/object:Gem::Requirement
@@ -157,39 +141,7 @@ dependencies:
157
141
  requirements:
158
142
  - - ! '>='
159
143
  - !ruby/object:Gem::Version
160
- version: 1.4.4
161
- - !ruby/object:Gem::Dependency
162
- name: prawn
163
- requirement: !ruby/object:Gem::Requirement
164
- none: false
165
- requirements:
166
- - - '='
167
- - !ruby/object:Gem::Version
168
- version: 0.8.4
169
- type: :development
170
- prerelease: false
171
- version_requirements: !ruby/object:Gem::Requirement
172
- none: false
173
- requirements:
174
- - - '='
175
- - !ruby/object:Gem::Version
176
- version: 0.8.4
177
- - !ruby/object:Gem::Dependency
178
- name: prawn-layout
179
- requirement: !ruby/object:Gem::Requirement
180
- none: false
181
- requirements:
182
- - - '='
183
- - !ruby/object:Gem::Version
184
- version: 0.8.4
185
- type: :development
186
- prerelease: false
187
- version_requirements: !ruby/object:Gem::Requirement
188
- none: false
189
- requirements:
190
- - - '='
191
- - !ruby/object:Gem::Version
192
- version: 0.8.4
144
+ version: 1.5.2
193
145
  - !ruby/object:Gem::Dependency
194
146
  name: syntax
195
147
  requirement: !ruby/object:Gem::Requirement
@@ -213,7 +165,7 @@ dependencies:
213
165
  requirements:
214
166
  - - ! '>='
215
167
  - !ruby/object:Gem::Version
216
- version: 0.9.0.rc7
168
+ version: 1.0.0.rc2
217
169
  type: :development
218
170
  prerelease: false
219
171
  version_requirements: !ruby/object:Gem::Requirement
@@ -221,7 +173,7 @@ dependencies:
221
173
  requirements:
222
174
  - - ! '>='
223
175
  - !ruby/object:Gem::Version
224
- version: 0.9.0.rc7
176
+ version: 1.0.0.rc2
225
177
  - !ruby/object:Gem::Dependency
226
178
  name: simplecov
227
179
  requirement: !ruby/object:Gem::Requirement
@@ -229,7 +181,7 @@ dependencies:
229
181
  requirements:
230
182
  - - ! '>='
231
183
  - !ruby/object:Gem::Version
232
- version: 0.4.2
184
+ version: 0.6.2
233
185
  type: :development
234
186
  prerelease: false
235
187
  version_requirements: !ruby/object:Gem::Requirement
@@ -237,29 +189,29 @@ dependencies:
237
189
  requirements:
238
190
  - - ! '>='
239
191
  - !ruby/object:Gem::Version
240
- version: 0.4.2
192
+ version: 0.6.2
241
193
  - !ruby/object:Gem::Dependency
242
194
  name: yard
243
195
  requirement: !ruby/object:Gem::Requirement
244
196
  none: false
245
197
  requirements:
246
- - - '='
198
+ - - ~>
247
199
  - !ruby/object:Gem::Version
248
- version: 0.7.1
200
+ version: 0.8.0
249
201
  type: :development
250
202
  prerelease: false
251
203
  version_requirements: !ruby/object:Gem::Requirement
252
204
  none: false
253
205
  requirements:
254
- - - '='
206
+ - - ~>
255
207
  - !ruby/object:Gem::Version
256
- version: 0.7.1
208
+ version: 0.8.0
257
209
  - !ruby/object:Gem::Dependency
258
210
  name: rdiscount
259
211
  requirement: !ruby/object:Gem::Requirement
260
212
  none: false
261
213
  requirements:
262
- - - '='
214
+ - - ~>
263
215
  - !ruby/object:Gem::Version
264
216
  version: 1.6.8
265
217
  type: :development
@@ -267,7 +219,7 @@ dependencies:
267
219
  version_requirements: !ruby/object:Gem::Requirement
268
220
  none: false
269
221
  requirements:
270
- - - '='
222
+ - - ~>
271
223
  - !ruby/object:Gem::Version
272
224
  version: 1.6.8
273
225
  - !ruby/object:Gem::Dependency
@@ -275,17 +227,17 @@ dependencies:
275
227
  requirement: !ruby/object:Gem::Requirement
276
228
  none: false
277
229
  requirements:
278
- - - '='
230
+ - - ~>
279
231
  - !ruby/object:Gem::Version
280
- version: 0.6.1
232
+ version: 0.6.2
281
233
  type: :development
282
234
  prerelease: false
283
235
  version_requirements: !ruby/object:Gem::Requirement
284
236
  none: false
285
237
  requirements:
286
- - - '='
238
+ - - ~>
287
239
  - !ruby/object:Gem::Version
288
- version: 0.6.1
240
+ version: 0.6.2
289
241
  - !ruby/object:Gem::Dependency
290
242
  name: ramaze
291
243
  requirement: !ruby/object:Gem::Requirement
@@ -309,7 +261,7 @@ dependencies:
309
261
  requirements:
310
262
  - - ! '>='
311
263
  - !ruby/object:Gem::Version
312
- version: 0.5.7
264
+ version: 0.6.1
313
265
  type: :development
314
266
  prerelease: false
315
267
  version_requirements: !ruby/object:Gem::Requirement
@@ -317,7 +269,7 @@ dependencies:
317
269
  requirements:
318
270
  - - ! '>='
319
271
  - !ruby/object:Gem::Version
320
- version: 0.5.7
272
+ version: 0.6.1
321
273
  - !ruby/object:Gem::Dependency
322
274
  name: webrat
323
275
  requirement: !ruby/object:Gem::Requirement
@@ -341,7 +293,7 @@ dependencies:
341
293
  requirements:
342
294
  - - ! '>='
343
295
  - !ruby/object:Gem::Version
344
- version: 1.2.6
296
+ version: 1.3.2
345
297
  type: :development
346
298
  prerelease: false
347
299
  version_requirements: !ruby/object:Gem::Requirement
@@ -349,7 +301,7 @@ dependencies:
349
301
  requirements:
350
302
  - - ! '>='
351
303
  - !ruby/object:Gem::Version
352
- version: 1.2.6
304
+ version: 1.3.2
353
305
  - !ruby/object:Gem::Dependency
354
306
  name: capybara
355
307
  requirement: !ruby/object:Gem::Requirement
@@ -357,7 +309,7 @@ dependencies:
357
309
  requirements:
358
310
  - - ! '>='
359
311
  - !ruby/object:Gem::Version
360
- version: 1.0.0
312
+ version: 1.1.2
361
313
  type: :development
362
314
  prerelease: false
363
315
  version_requirements: !ruby/object:Gem::Requirement
@@ -365,7 +317,7 @@ dependencies:
365
317
  requirements:
366
318
  - - ! '>='
367
319
  - !ruby/object:Gem::Version
368
- version: 1.0.0
320
+ version: 1.1.2
369
321
  description: Behaviour Driven Development with elegance and joy
370
322
  email:
371
323
  - cukes@googlegroups.com
@@ -378,14 +330,10 @@ extensions: []
378
330
  extra_rdoc_files: []
379
331
  files:
380
332
  - .gitattributes
381
- - .gitignore
382
- - .gitmodules
383
333
  - .rspec
384
334
  - .rvmrc
385
335
  - .travis.yml
386
- - .yardopts
387
336
  - Gemfile
388
- - Gemfile.lock
389
337
  - History.md
390
338
  - LICENSE
391
339
  - README.md
@@ -415,7 +363,6 @@ files:
415
363
  - examples/i18n/da/features/sammenlaegning.feature
416
364
  - examples/i18n/da/features/step_definitons/lommeregner_steps.rb
417
365
  - examples/i18n/da/lib/lommeregner.rb
418
- - examples/i18n/de/.gitignore
419
366
  - examples/i18n/de/Rakefile
420
367
  - examples/i18n/de/features/addition.feature
421
368
  - examples/i18n/de/features/division.feature
@@ -427,13 +374,11 @@ files:
427
374
  - examples/i18n/en-lol/features/support/env.rb
428
375
  - examples/i18n/en-lol/lib/basket.rb
429
376
  - examples/i18n/en-lol/lib/belly.rb
430
- - examples/i18n/en/.gitignore
431
377
  - examples/i18n/en/Rakefile
432
378
  - examples/i18n/en/features/addition.feature
433
379
  - examples/i18n/en/features/division.feature
434
380
  - examples/i18n/en/features/step_definitons/calculator_steps.rb
435
381
  - examples/i18n/en/lib/calculator.rb
436
- - examples/i18n/eo/.gitignore
437
382
  - examples/i18n/eo/Rakefile
438
383
  - examples/i18n/eo/features/adicio.feature
439
384
  - examples/i18n/eo/features/divido.feature
@@ -448,7 +393,6 @@ files:
448
393
  - examples/i18n/et/features/liitmine.feature
449
394
  - examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
450
395
  - examples/i18n/et/lib/kalkulaator.rb
451
- - examples/i18n/fi/.gitignore
452
396
  - examples/i18n/fi/Rakefile
453
397
  - examples/i18n/fi/features/jakolasku.feature
454
398
  - examples/i18n/fi/features/step_definitons/laskin_steps.rb
@@ -465,13 +409,11 @@ files:
465
409
  - examples/i18n/he/features/division.feature
466
410
  - examples/i18n/he/features/step_definitons/calculator_steps.rb
467
411
  - examples/i18n/he/lib/calculator.rb
468
- - examples/i18n/hu/.gitignore
469
412
  - examples/i18n/hu/Rakefile
470
413
  - examples/i18n/hu/features/osszeadas.feature
471
414
  - examples/i18n/hu/features/osztas.feature
472
415
  - examples/i18n/hu/features/step_definitons/calculator_steps.rb
473
416
  - examples/i18n/hu/lib/calculator.rb
474
- - examples/i18n/id/.gitignore
475
417
  - examples/i18n/id/Rakefile
476
418
  - examples/i18n/id/features/addition.feature
477
419
  - examples/i18n/id/features/division.feature
@@ -481,20 +423,17 @@ files:
481
423
  - examples/i18n/it/features/somma.feature
482
424
  - examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
483
425
  - examples/i18n/it/lib/calcolatrice.rb
484
- - examples/i18n/ja/.gitignore
485
426
  - examples/i18n/ja/Rakefile
486
427
  - examples/i18n/ja/features/addition.feature
487
428
  - examples/i18n/ja/features/division.feature
488
429
  - examples/i18n/ja/features/step_definitons/calculator_steps.rb
489
430
  - examples/i18n/ja/features/support/env.rb
490
431
  - examples/i18n/ja/lib/calculator.rb
491
- - examples/i18n/ko/.gitignore
492
432
  - examples/i18n/ko/Rakefile
493
433
  - examples/i18n/ko/features/addition.feature
494
434
  - examples/i18n/ko/features/division.feature
495
435
  - examples/i18n/ko/features/step_definitons/calculator_steps.rb
496
436
  - examples/i18n/ko/lib/calculator.rb
497
- - examples/i18n/lt/.gitignore
498
437
  - examples/i18n/lt/Rakefile
499
438
  - examples/i18n/lt/features/addition.feature
500
439
  - examples/i18n/lt/features/division.feature
@@ -510,7 +449,6 @@ files:
510
449
  - examples/i18n/no/features/summering.feature
511
450
  - examples/i18n/no/features/support/env.rb
512
451
  - examples/i18n/no/lib/kalkulator.rb
513
- - examples/i18n/pl/.gitignore
514
452
  - examples/i18n/pl/Rakefile
515
453
  - examples/i18n/pl/features/addition.feature
516
454
  - examples/i18n/pl/features/division.feature
@@ -534,7 +472,6 @@ files:
534
472
  - examples/i18n/ru/features/support/env.rb
535
473
  - examples/i18n/ru/features/support/world.rb
536
474
  - examples/i18n/ru/lib/calculator.rb
537
- - examples/i18n/sk/.gitignore
538
475
  - examples/i18n/sk/Rakefile
539
476
  - examples/i18n/sk/features/addition.feature
540
477
  - examples/i18n/sk/features/division.feature
@@ -553,7 +490,6 @@ files:
553
490
  - examples/i18n/sv/features/step_definitons/kalkulator_steps.rb
554
491
  - examples/i18n/sv/features/summering.feature
555
492
  - examples/i18n/sv/lib/kalkulator.rb
556
- - examples/i18n/tr/.gitignore
557
493
  - examples/i18n/tr/Rakefile
558
494
  - examples/i18n/tr/features/bolme.feature
559
495
  - examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb
@@ -579,7 +515,6 @@ files:
579
515
  - examples/i18n/zh-CN/features/addition.feature
580
516
  - examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
581
517
  - examples/i18n/zh-CN/lib/calculator.rb
582
- - examples/i18n/zh-TW/.gitignore
583
518
  - examples/i18n/zh-TW/Rakefile
584
519
  - examples/i18n/zh-TW/features/addition.feature
585
520
  - examples/i18n/zh-TW/features/division.feature
@@ -589,7 +524,6 @@ files:
589
524
  - examples/python/Rakefile
590
525
  - examples/python/features/fibonacci.feature
591
526
  - examples/python/features/step_definitions/fib_steps.py
592
- - examples/python/lib/.gitignore
593
527
  - examples/python/lib/fib.py
594
528
  - examples/ramaze/README.textile
595
529
  - examples/ramaze/Rakefile
@@ -608,7 +542,6 @@ files:
608
542
  - examples/ruby2python/features/fibonacci.feature
609
543
  - examples/ruby2python/features/step_definitions/fib_steps.rb
610
544
  - examples/ruby2python/features/support/env.rb
611
- - examples/ruby2python/lib/.gitignore
612
545
  - examples/ruby2python/lib/fib.py
613
546
  - examples/sinatra/README.textile
614
547
  - examples/sinatra/Rakefile
@@ -632,7 +565,6 @@ files:
632
565
  - examples/v8/features/step_definitions/fib_steps.js
633
566
  - examples/v8/features/support/env.js
634
567
  - examples/v8/lib/fibonacci.js
635
- - examples/watir/.gitignore
636
568
  - examples/watir/README.textile
637
569
  - examples/watir/Rakefile
638
570
  - examples/watir/cucumber.yml
@@ -640,18 +572,28 @@ files:
640
572
  - examples/watir/features/step_definitions/search_steps.rb
641
573
  - examples/watir/features/support/env.rb
642
574
  - examples/watir/features/support/screenshots.rb
575
+ - features/.cucumber/stepdefs.json
643
576
  - features/background.feature
577
+ - features/backtraces.feature
644
578
  - features/bootstrap.feature
645
579
  - features/custom_formatter.feature
580
+ - features/doc_strings.feature
581
+ - features/drb_server_integration.feature
646
582
  - features/execute_with_tag_filter.feature
583
+ - features/formatter_step_file_colon_line.feature
647
584
  - features/hooks.feature
648
585
  - features/iso-8859-1.feature
649
586
  - features/json_formatter.feature
587
+ - features/nested_steps.feature
588
+ - features/rerun_formatter.feature
589
+ - features/run_specific_scenarios.feature
650
590
  - features/stats_formatters.feature
651
591
  - features/step_definitions/cucumber-features/cucumber_ruby_mappings.rb
652
592
  - features/step_definitions/cucumber_steps.rb
593
+ - features/step_definitions/drb_steps.rb
653
594
  - features/step_definitions/iso-8859-1_steps.rb
654
595
  - features/support/env.rb
596
+ - features/support/feature_factory.rb
655
597
  - features/tagged_hooks.feature
656
598
  - features/transforms.feature
657
599
  - fixtures/json/features/background.feature
@@ -664,7 +606,6 @@ files:
664
606
  - fixtures/junit/features/scenario_outline.feature
665
607
  - fixtures/junit/features/some_subdirectory/one_passing_one_failing.feature
666
608
  - fixtures/junit/features/step_definitions/steps.rb
667
- - fixtures/self_test/.gitignore
668
609
  - fixtures/self_test/README.textile
669
610
  - fixtures/self_test/Rakefile
670
611
  - fixtures/self_test/features/call_undefined_step_from_step_def.feature
@@ -809,6 +750,7 @@ files:
809
750
  - lib/cucumber/ast/feature.rb
810
751
  - lib/cucumber/ast/feature_element.rb
811
752
  - lib/cucumber/ast/features.rb
753
+ - lib/cucumber/ast/multiline_argument.rb
812
754
  - lib/cucumber/ast/names.rb
813
755
  - lib/cucumber/ast/outline_table.rb
814
756
  - lib/cucumber/ast/scenario.rb
@@ -843,13 +785,13 @@ files:
843
785
  - lib/cucumber/formatter/gherkin_formatter_adapter.rb
844
786
  - lib/cucumber/formatter/gpretty.rb
845
787
  - lib/cucumber/formatter/html.rb
788
+ - lib/cucumber/formatter/interceptor.rb
846
789
  - lib/cucumber/formatter/io.rb
847
790
  - lib/cucumber/formatter/jquery-min.js
848
791
  - lib/cucumber/formatter/json.rb
849
792
  - lib/cucumber/formatter/json_pretty.rb
850
793
  - lib/cucumber/formatter/junit.rb
851
794
  - lib/cucumber/formatter/ordered_xml_markup.rb
852
- - lib/cucumber/formatter/pdf.rb
853
795
  - lib/cucumber/formatter/pretty.rb
854
796
  - lib/cucumber/formatter/progress.rb
855
797
  - lib/cucumber/formatter/rerun.rb
@@ -885,11 +827,11 @@ files:
885
827
  - lib/cucumber/runtime/results.rb
886
828
  - lib/cucumber/runtime/support_code.rb
887
829
  - lib/cucumber/runtime/user_interface.rb
888
- - lib/cucumber/step_argument.rb
889
830
  - lib/cucumber/step_definition_light.rb
890
831
  - lib/cucumber/step_definitions.rb
891
832
  - lib/cucumber/step_match.rb
892
833
  - lib/cucumber/step_mother.rb
834
+ - lib/cucumber/term/ansicolor.rb
893
835
  - lib/cucumber/wire_support/configuration.rb
894
836
  - lib/cucumber/wire_support/connection.rb
895
837
  - lib/cucumber/wire_support/request_handler.rb
@@ -915,10 +857,12 @@ files:
915
857
  - spec/cucumber/cli/options_spec.rb
916
858
  - spec/cucumber/cli/profile_loader_spec.rb
917
859
  - spec/cucumber/configuration_spec.rb
860
+ - spec/cucumber/constantize_spec.rb
918
861
  - spec/cucumber/core_ext/proc_spec.rb
919
862
  - spec/cucumber/formatter/ansicolor_spec.rb
920
863
  - spec/cucumber/formatter/duration_spec.rb
921
864
  - spec/cucumber/formatter/html_spec.rb
865
+ - spec/cucumber/formatter/interceptor_spec.rb
922
866
  - spec/cucumber/formatter/junit_spec.rb
923
867
  - spec/cucumber/formatter/progress_spec.rb
924
868
  - spec/cucumber/formatter/spec_helper.rb
@@ -928,6 +872,7 @@ files:
928
872
  - spec/cucumber/rb_support/rb_step_definition_spec.rb
929
873
  - spec/cucumber/rb_support/rb_transform_spec.rb
930
874
  - spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
875
+ - spec/cucumber/runtime/results_spec.rb
931
876
  - spec/cucumber/runtime/support_code_spec.rb
932
877
  - spec/cucumber/runtime_spec.rb
933
878
  - spec/cucumber/sell_cucumbers.feature
@@ -942,22 +887,7 @@ files:
942
887
  - spec/spec_helper.rb
943
888
  homepage: http://cukes.info
944
889
  licenses: []
945
- post_install_message: ! '
946
-
947
- (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
948
-
949
-
950
- Thank you for installing cucumber-1.0.2.1.
951
-
952
- Please be sure to read http://wiki.github.com/cucumber/cucumber/upgrading
953
-
954
- for important information about this release. Happy cuking!
955
-
956
-
957
- (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
958
-
959
-
960
- '
890
+ post_install_message:
961
891
  rdoc_options:
962
892
  - --charset=UTF-8
963
893
  require_paths:
@@ -970,35 +900,41 @@ required_ruby_version: !ruby/object:Gem::Requirement
970
900
  version: '0'
971
901
  segments:
972
902
  - 0
973
- hash: -426066572448409034
903
+ hash: 3329307196480106510
974
904
  required_rubygems_version: !ruby/object:Gem::Requirement
975
905
  none: false
976
906
  requirements:
977
- - - ! '>='
907
+ - - ! '>'
978
908
  - !ruby/object:Gem::Version
979
- version: '0'
980
- segments:
981
- - 0
982
- hash: -426066572448409034
909
+ version: 1.3.1
983
910
  requirements: []
984
911
  rubyforge_project:
985
912
  rubygems_version: 1.8.24
986
913
  signing_key:
987
914
  specification_version: 3
988
- summary: cucumber-1.0.2.1
915
+ summary: cucumber-1.2.1.cb2
989
916
  test_files:
990
917
  - features/background.feature
918
+ - features/backtraces.feature
991
919
  - features/bootstrap.feature
992
920
  - features/custom_formatter.feature
921
+ - features/doc_strings.feature
922
+ - features/drb_server_integration.feature
993
923
  - features/execute_with_tag_filter.feature
924
+ - features/formatter_step_file_colon_line.feature
994
925
  - features/hooks.feature
995
926
  - features/iso-8859-1.feature
996
927
  - features/json_formatter.feature
928
+ - features/nested_steps.feature
929
+ - features/rerun_formatter.feature
930
+ - features/run_specific_scenarios.feature
997
931
  - features/stats_formatters.feature
998
932
  - features/step_definitions/cucumber-features/cucumber_ruby_mappings.rb
999
933
  - features/step_definitions/cucumber_steps.rb
934
+ - features/step_definitions/drb_steps.rb
1000
935
  - features/step_definitions/iso-8859-1_steps.rb
1001
936
  - features/support/env.rb
937
+ - features/support/feature_factory.rb
1002
938
  - features/tagged_hooks.feature
1003
939
  - features/transforms.feature
1004
940
  - spec/cucumber/ast/background_spec.rb
@@ -1017,10 +953,12 @@ test_files:
1017
953
  - spec/cucumber/cli/options_spec.rb
1018
954
  - spec/cucumber/cli/profile_loader_spec.rb
1019
955
  - spec/cucumber/configuration_spec.rb
956
+ - spec/cucumber/constantize_spec.rb
1020
957
  - spec/cucumber/core_ext/proc_spec.rb
1021
958
  - spec/cucumber/formatter/ansicolor_spec.rb
1022
959
  - spec/cucumber/formatter/duration_spec.rb
1023
960
  - spec/cucumber/formatter/html_spec.rb
961
+ - spec/cucumber/formatter/interceptor_spec.rb
1024
962
  - spec/cucumber/formatter/junit_spec.rb
1025
963
  - spec/cucumber/formatter/progress_spec.rb
1026
964
  - spec/cucumber/formatter/spec_helper.rb
@@ -1030,6 +968,7 @@ test_files:
1030
968
  - spec/cucumber/rb_support/rb_step_definition_spec.rb
1031
969
  - spec/cucumber/rb_support/rb_transform_spec.rb
1032
970
  - spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
971
+ - spec/cucumber/runtime/results_spec.rb
1033
972
  - spec/cucumber/runtime/support_code_spec.rb
1034
973
  - spec/cucumber/runtime_spec.rb
1035
974
  - spec/cucumber/sell_cucumbers.feature
@@ -1042,3 +981,4 @@ test_files:
1042
981
  - spec/cucumber/wire_support/wire_step_definition_spec.rb
1043
982
  - spec/cucumber/world/pending_spec.rb
1044
983
  - spec/spec_helper.rb
984
+ has_rdoc:
data/.gitignore DELETED
@@ -1,26 +0,0 @@
1
- .bundle
2
- nbproject
3
- coverage
4
- pkg
5
- doc
6
- tmp
7
- .yardoc
8
- *.log
9
- *.pid
10
- .eprj
11
- .tmtags
12
- *~
13
- .DS_Store
14
- *.swp
15
- target
16
- *.tmproj
17
- .#*
18
- .idea
19
- *.pyc
20
- *.rbc
21
- rerun.txt
22
- ._*
23
- .rvmrc
24
- .sass-cache
25
- doc/
26
- *.tgz
data/.gitmodules DELETED
@@ -1,3 +0,0 @@
1
- [submodule "features/cucumber-features"]
2
- path = features/cucumber-features
3
- url = https://github.com/cucumber/cucumber-features
data/.yardopts DELETED
File without changes