guard-cucumber 0.3.1 → 0.3.2
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.
- data/README.md +43 -7
- data/lib/guard/cucumber.rb +2 -1
- data/lib/guard/cucumber.rbc +553 -332
- data/lib/guard/cucumber/runner.rbc +1223 -0
- data/lib/guard/cucumber/version.rb +1 -1
- data/lib/guard/cucumber/version.rbc +1 -1
- metadata +3 -2
data/README.md
CHANGED
@@ -50,7 +50,7 @@ Please read the [Guard documentation](http://github.com/guard/guard#readme) for
|
|
50
50
|
|
51
51
|
You can pass any of the standard Cucumber CLI options using the :cli option:
|
52
52
|
|
53
|
-
guard 'cucumber', :cli => '-c --drb --port 1234 --profile
|
53
|
+
guard 'cucumber', :cli => '-c --drb --port 1234 --profile guard' do
|
54
54
|
...
|
55
55
|
end
|
56
56
|
|
@@ -58,7 +58,7 @@ Former `:color`, `:drb`, `:port` and `:profile` options are thus deprecated and
|
|
58
58
|
|
59
59
|
### List of available options
|
60
60
|
|
61
|
-
:cli => '-c
|
61
|
+
:cli => '--profile guard -c' # Pass arbitrary Cucumber CLI arguments, default: '--no-profile --color --format progress --strict'
|
62
62
|
:bundler => false # Don't use "bundle exec" to run the Cucumber command, default: true
|
63
63
|
:rvm => ['1.8.7', '1.9.2'] # Directly run your features on multiple ruby versions, default: nil
|
64
64
|
:notification => false # Don't display Growl (or Libnotify) notification, default: true
|
@@ -66,13 +66,49 @@ Former `:color`, `:drb`, `:port` and `:profile` options are thus deprecated and
|
|
66
66
|
:all_on_start => false # don't run all the features at startup, default: true
|
67
67
|
:keep_failed => false # keep failed features until them pass, default: true
|
68
68
|
|
69
|
-
##
|
69
|
+
## Cucumber configuration
|
70
70
|
|
71
|
-
|
72
|
-
|
71
|
+
It's **very important** that you understand how Cucumber get its configuration, because it's often the origin of
|
72
|
+
strange behaviour of guard-cucumber, like running always all features instead of only the modified feature.
|
73
73
|
|
74
|
-
|
75
|
-
|
74
|
+
Cucumber uses [cucumber.yml](https://github.com/cucumber/cucumber/wiki/cucumber.yml) for defining profiles
|
75
|
+
of specific run configurations. When you don't pass a specific profile to the `:cli` option, the configuration
|
76
|
+
of the `default` profile is used.
|
77
|
+
|
78
|
+
For example, when you're using the default cucumber.yml generated by [cucumber-rails](https://github.com/cucumber/cucumber-rails),
|
79
|
+
then the default profile forces guard-cucumber to always run all features, because it appends the `features` folder.
|
80
|
+
|
81
|
+
### Configure Cucumber solely from Guard
|
82
|
+
|
83
|
+
If you want to configure Cucumber from Guard solely, then you should either pass `--no-profile` to the `:cli` option
|
84
|
+
or remove cucumber.yml completely.
|
85
|
+
|
86
|
+
### Use a separate Guard profile
|
87
|
+
|
88
|
+
If you're using different profiles with Cucumber then you should create a profile for Guard in cucumber.yml,
|
89
|
+
something like this:
|
90
|
+
|
91
|
+
guard: --format progress --strict --tags ~@wip
|
92
|
+
|
93
|
+
Now you want to make guard-cucumber use that profile by passing '--profile guard` to the `:cli`.
|
94
|
+
|
95
|
+
## Cucumber with Spork
|
96
|
+
|
97
|
+
To use Guard::Cucumber with [Spork](https://github.com/timcharper/spork), you should install
|
98
|
+
[Guard::Spork](https://github.com/guard/guard-spork)) and use the following configuration:
|
99
|
+
|
100
|
+
guard 'spork' do
|
101
|
+
watch('config/application.rb')
|
102
|
+
watch('config/environment.rb')
|
103
|
+
watch(%r{^config/environments/.*\.rb$})
|
104
|
+
watch(%r{^config/initializers/.*\.rb$})
|
105
|
+
watch('spec/spec_helper.rb')
|
106
|
+
end
|
107
|
+
|
108
|
+
guard 'cucumber', :cli => '--drb --format progress --no-profile' do
|
109
|
+
watch(%r{features/.+\.feature})
|
110
|
+
watch(%r{features/support/.+}) { 'features' }
|
111
|
+
watch(%r{features/step_definitions/(.+)_steps\.rb}) { |m| Dir[File.join("**/#{ m[1] }.feature")][0] || 'features' }
|
76
112
|
end
|
77
113
|
|
78
114
|
## Development
|
data/lib/guard/cucumber.rb
CHANGED
data/lib/guard/cucumber.rbc
CHANGED
@@ -169,185 +169,103 @@ x
|
|
169
169
|
8
|
170
170
|
Cucumber
|
171
171
|
i
|
172
|
-
|
172
|
+
94
|
173
173
|
5
|
174
174
|
66
|
175
175
|
5
|
176
176
|
7
|
177
177
|
0
|
178
|
-
45
|
179
|
-
1
|
180
|
-
2
|
181
|
-
45
|
182
|
-
1
|
183
|
-
3
|
184
|
-
45
|
185
|
-
1
|
186
|
-
4
|
187
|
-
65
|
188
|
-
49
|
189
|
-
5
|
190
|
-
0
|
191
|
-
49
|
192
|
-
6
|
193
|
-
1
|
194
178
|
7
|
195
|
-
7
|
196
|
-
64
|
197
|
-
7
|
198
|
-
8
|
199
|
-
64
|
200
|
-
7
|
201
|
-
9
|
202
|
-
64
|
203
|
-
49
|
204
|
-
10
|
205
|
-
4
|
206
|
-
49
|
207
|
-
11
|
208
179
|
1
|
180
|
+
64
|
209
181
|
47
|
210
182
|
49
|
211
|
-
|
183
|
+
2
|
212
184
|
2
|
213
185
|
15
|
214
186
|
5
|
215
187
|
7
|
216
|
-
|
217
|
-
45
|
218
|
-
1
|
219
|
-
14
|
220
|
-
45
|
221
|
-
1
|
222
|
-
15
|
223
|
-
45
|
224
|
-
1
|
225
|
-
16
|
226
|
-
65
|
227
|
-
49
|
228
|
-
5
|
229
|
-
0
|
230
|
-
49
|
231
|
-
6
|
232
|
-
1
|
233
|
-
7
|
234
|
-
7
|
235
|
-
64
|
236
|
-
7
|
237
|
-
8
|
238
|
-
64
|
188
|
+
3
|
239
189
|
7
|
240
|
-
17
|
241
|
-
64
|
242
|
-
49
|
243
|
-
10
|
244
190
|
4
|
245
|
-
|
246
|
-
11
|
247
|
-
1
|
191
|
+
64
|
248
192
|
47
|
249
193
|
49
|
250
|
-
|
194
|
+
2
|
251
195
|
2
|
252
196
|
15
|
197
|
+
99
|
198
|
+
7
|
253
199
|
5
|
254
200
|
7
|
255
|
-
|
256
|
-
45
|
257
|
-
1
|
258
|
-
19
|
259
|
-
45
|
260
|
-
1
|
261
|
-
20
|
262
|
-
45
|
263
|
-
1
|
264
|
-
21
|
201
|
+
6
|
265
202
|
65
|
203
|
+
67
|
266
204
|
49
|
267
|
-
5
|
268
|
-
0
|
269
|
-
49
|
270
|
-
6
|
271
|
-
1
|
272
|
-
7
|
273
205
|
7
|
274
|
-
|
275
|
-
7
|
276
|
-
22
|
277
|
-
64
|
278
|
-
49
|
279
|
-
10
|
280
|
-
3
|
281
|
-
49
|
282
|
-
11
|
283
|
-
1
|
284
|
-
47
|
206
|
+
0
|
285
207
|
49
|
286
|
-
|
287
|
-
|
208
|
+
8
|
209
|
+
4
|
288
210
|
15
|
289
211
|
99
|
290
212
|
7
|
291
|
-
|
213
|
+
9
|
292
214
|
7
|
293
|
-
|
215
|
+
10
|
294
216
|
65
|
295
217
|
67
|
296
218
|
49
|
297
|
-
|
219
|
+
7
|
298
220
|
0
|
299
221
|
49
|
300
|
-
|
222
|
+
8
|
301
223
|
4
|
302
224
|
15
|
303
225
|
99
|
304
226
|
7
|
305
|
-
|
227
|
+
11
|
306
228
|
7
|
307
|
-
|
229
|
+
12
|
308
230
|
65
|
309
231
|
67
|
310
232
|
49
|
311
|
-
|
233
|
+
7
|
312
234
|
0
|
313
235
|
49
|
314
|
-
|
236
|
+
8
|
315
237
|
4
|
316
238
|
15
|
317
239
|
99
|
318
240
|
7
|
319
|
-
|
241
|
+
13
|
320
242
|
7
|
321
|
-
|
243
|
+
14
|
322
244
|
65
|
323
245
|
67
|
324
246
|
49
|
325
|
-
|
247
|
+
7
|
326
248
|
0
|
327
249
|
49
|
328
|
-
|
250
|
+
8
|
329
251
|
4
|
330
252
|
15
|
331
|
-
5
|
332
|
-
48
|
333
|
-
31
|
334
|
-
15
|
335
253
|
99
|
336
254
|
7
|
337
|
-
|
255
|
+
15
|
338
256
|
7
|
339
|
-
|
257
|
+
16
|
340
258
|
65
|
341
259
|
67
|
342
260
|
49
|
343
|
-
|
261
|
+
7
|
344
262
|
0
|
345
263
|
49
|
346
|
-
|
264
|
+
8
|
347
265
|
4
|
348
266
|
11
|
349
267
|
I
|
350
|
-
|
268
|
+
5
|
351
269
|
I
|
352
270
|
0
|
353
271
|
I
|
@@ -356,58 +274,235 @@ I
|
|
356
274
|
0
|
357
275
|
n
|
358
276
|
p
|
359
|
-
|
277
|
+
17
|
360
278
|
x
|
361
279
|
6
|
362
280
|
Runner
|
281
|
+
s
|
282
|
+
21
|
283
|
+
guard/cucumber/runner
|
363
284
|
x
|
364
|
-
|
365
|
-
|
366
|
-
|
285
|
+
8
|
286
|
+
autoload
|
287
|
+
x
|
288
|
+
9
|
289
|
+
Inspector
|
290
|
+
s
|
291
|
+
24
|
292
|
+
guard/cucumber/inspector
|
293
|
+
x
|
294
|
+
10
|
295
|
+
initialize
|
296
|
+
M
|
297
|
+
1
|
367
298
|
n
|
368
299
|
n
|
369
300
|
x
|
370
|
-
|
371
|
-
|
372
|
-
|
301
|
+
10
|
302
|
+
initialize
|
303
|
+
i
|
304
|
+
86
|
305
|
+
23
|
306
|
+
0
|
307
|
+
10
|
308
|
+
9
|
309
|
+
35
|
310
|
+
0
|
311
|
+
19
|
312
|
+
0
|
313
|
+
15
|
314
|
+
23
|
315
|
+
1
|
316
|
+
10
|
317
|
+
23
|
318
|
+
44
|
319
|
+
43
|
320
|
+
0
|
321
|
+
78
|
322
|
+
49
|
323
|
+
1
|
324
|
+
1
|
325
|
+
19
|
326
|
+
1
|
327
|
+
15
|
328
|
+
54
|
329
|
+
89
|
330
|
+
2
|
331
|
+
15
|
332
|
+
44
|
333
|
+
43
|
334
|
+
0
|
335
|
+
4
|
336
|
+
4
|
337
|
+
49
|
338
|
+
1
|
339
|
+
1
|
340
|
+
13
|
373
341
|
7
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
342
|
+
3
|
343
|
+
2
|
344
|
+
49
|
345
|
+
4
|
346
|
+
2
|
347
|
+
15
|
348
|
+
13
|
379
349
|
7
|
380
|
-
|
381
|
-
|
350
|
+
5
|
351
|
+
2
|
352
|
+
49
|
353
|
+
4
|
354
|
+
2
|
355
|
+
15
|
356
|
+
13
|
357
|
+
7
|
358
|
+
6
|
359
|
+
2
|
360
|
+
49
|
361
|
+
4
|
362
|
+
2
|
363
|
+
15
|
364
|
+
13
|
365
|
+
7
|
366
|
+
7
|
367
|
+
7
|
368
|
+
8
|
369
|
+
64
|
370
|
+
49
|
371
|
+
4
|
372
|
+
2
|
373
|
+
15
|
374
|
+
20
|
375
|
+
1
|
376
|
+
49
|
377
|
+
9
|
378
|
+
1
|
379
|
+
38
|
380
|
+
10
|
381
|
+
15
|
382
|
+
3
|
383
|
+
38
|
384
|
+
11
|
385
|
+
15
|
386
|
+
35
|
387
|
+
0
|
388
|
+
38
|
389
|
+
12
|
390
|
+
11
|
391
|
+
I
|
382
392
|
6
|
383
|
-
|
393
|
+
I
|
394
|
+
2
|
395
|
+
I
|
396
|
+
0
|
397
|
+
I
|
398
|
+
2
|
399
|
+
n
|
400
|
+
p
|
401
|
+
13
|
384
402
|
x
|
385
403
|
4
|
386
|
-
|
404
|
+
Hash
|
405
|
+
x
|
406
|
+
16
|
407
|
+
new_from_literal
|
408
|
+
x
|
409
|
+
10
|
410
|
+
initialize
|
411
|
+
x
|
412
|
+
14
|
413
|
+
all_after_pass
|
414
|
+
x
|
415
|
+
3
|
416
|
+
[]=
|
417
|
+
x
|
418
|
+
12
|
419
|
+
all_on_start
|
387
420
|
x
|
388
421
|
11
|
389
|
-
|
422
|
+
keep_failed
|
423
|
+
x
|
424
|
+
3
|
425
|
+
cli
|
426
|
+
s
|
427
|
+
47
|
428
|
+
--no-profile --color --format progress --strict
|
429
|
+
x
|
430
|
+
6
|
431
|
+
update
|
390
432
|
x
|
391
433
|
8
|
392
|
-
|
434
|
+
@options
|
435
|
+
x
|
436
|
+
12
|
437
|
+
@last_failed
|
393
438
|
x
|
394
439
|
13
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
440
|
+
@failed_paths
|
441
|
+
p
|
442
|
+
23
|
443
|
+
I
|
444
|
+
-1
|
445
|
+
I
|
446
|
+
b
|
447
|
+
I
|
448
|
+
17
|
449
|
+
I
|
450
|
+
c
|
451
|
+
I
|
452
|
+
1b
|
453
|
+
I
|
454
|
+
12
|
455
|
+
I
|
456
|
+
24
|
457
|
+
I
|
458
|
+
e
|
459
|
+
I
|
460
|
+
2c
|
461
|
+
I
|
462
|
+
f
|
463
|
+
I
|
464
|
+
34
|
465
|
+
I
|
466
|
+
10
|
467
|
+
I
|
468
|
+
3c
|
469
|
+
I
|
470
|
+
11
|
471
|
+
I
|
472
|
+
45
|
473
|
+
I
|
474
|
+
12
|
475
|
+
I
|
476
|
+
4a
|
477
|
+
I
|
478
|
+
d
|
479
|
+
I
|
480
|
+
4d
|
481
|
+
I
|
400
482
|
14
|
401
|
-
|
483
|
+
I
|
484
|
+
51
|
485
|
+
I
|
486
|
+
15
|
487
|
+
I
|
488
|
+
56
|
402
489
|
x
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
490
|
+
62
|
491
|
+
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
492
|
+
p
|
493
|
+
2
|
494
|
+
x
|
495
|
+
8
|
496
|
+
watchers
|
497
|
+
x
|
498
|
+
7
|
499
|
+
options
|
500
|
+
x
|
501
|
+
17
|
502
|
+
method_visibility
|
503
|
+
x
|
504
|
+
15
|
505
|
+
add_defn_method
|
411
506
|
x
|
412
507
|
5
|
413
508
|
start
|
@@ -419,9 +514,8 @@ x
|
|
419
514
|
5
|
420
515
|
start
|
421
516
|
i
|
422
|
-
|
423
|
-
|
424
|
-
48
|
517
|
+
16
|
518
|
+
39
|
425
519
|
0
|
426
520
|
7
|
427
521
|
1
|
@@ -429,15 +523,12 @@ i
|
|
429
523
|
2
|
430
524
|
1
|
431
525
|
9
|
432
|
-
|
433
|
-
45
|
434
|
-
3
|
435
|
-
4
|
436
|
-
49
|
526
|
+
14
|
437
527
|
5
|
438
|
-
|
528
|
+
48
|
529
|
+
3
|
439
530
|
8
|
440
|
-
|
531
|
+
15
|
441
532
|
1
|
442
533
|
11
|
443
534
|
I
|
@@ -450,47 +541,37 @@ I
|
|
450
541
|
0
|
451
542
|
n
|
452
543
|
p
|
453
|
-
|
544
|
+
4
|
454
545
|
x
|
455
|
-
|
456
|
-
options
|
546
|
+
8
|
547
|
+
@options
|
457
548
|
x
|
458
|
-
|
459
|
-
|
549
|
+
12
|
550
|
+
all_on_start
|
460
551
|
x
|
461
552
|
2
|
462
553
|
[]
|
463
554
|
x
|
464
|
-
|
465
|
-
|
466
|
-
n
|
467
|
-
x
|
468
|
-
5
|
469
|
-
start
|
555
|
+
7
|
556
|
+
run_all
|
470
557
|
p
|
471
558
|
5
|
472
559
|
I
|
473
560
|
-1
|
474
561
|
I
|
475
|
-
|
562
|
+
18
|
476
563
|
I
|
477
564
|
0
|
478
565
|
I
|
479
|
-
|
566
|
+
19
|
480
567
|
I
|
481
|
-
|
568
|
+
10
|
482
569
|
x
|
483
570
|
62
|
484
571
|
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
485
572
|
p
|
486
573
|
0
|
487
574
|
x
|
488
|
-
17
|
489
|
-
method_visibility
|
490
|
-
x
|
491
|
-
15
|
492
|
-
add_defn_method
|
493
|
-
x
|
494
575
|
7
|
495
576
|
run_all
|
496
577
|
M
|
@@ -501,56 +582,82 @@ x
|
|
501
582
|
7
|
502
583
|
run_all
|
503
584
|
i
|
504
|
-
|
505
|
-
|
506
|
-
48
|
585
|
+
60
|
586
|
+
45
|
507
587
|
0
|
508
|
-
7
|
509
588
|
1
|
589
|
+
7
|
590
|
+
2
|
510
591
|
64
|
511
592
|
35
|
512
593
|
1
|
513
594
|
5
|
514
595
|
48
|
515
|
-
|
596
|
+
3
|
516
597
|
44
|
517
598
|
43
|
518
|
-
|
599
|
+
4
|
519
600
|
79
|
520
601
|
49
|
521
|
-
|
602
|
+
5
|
522
603
|
1
|
523
604
|
13
|
524
605
|
7
|
525
|
-
5
|
526
|
-
7
|
527
606
|
6
|
607
|
+
7
|
608
|
+
7
|
528
609
|
64
|
529
610
|
49
|
530
|
-
|
611
|
+
8
|
531
612
|
2
|
532
613
|
15
|
533
614
|
49
|
534
|
-
|
615
|
+
9
|
535
616
|
1
|
536
617
|
49
|
618
|
+
10
|
619
|
+
2
|
620
|
+
19
|
621
|
+
0
|
622
|
+
15
|
623
|
+
20
|
624
|
+
0
|
537
625
|
9
|
626
|
+
47
|
627
|
+
35
|
628
|
+
0
|
629
|
+
38
|
630
|
+
11
|
631
|
+
8
|
632
|
+
48
|
633
|
+
1
|
634
|
+
15
|
635
|
+
20
|
636
|
+
0
|
637
|
+
10
|
638
|
+
56
|
538
639
|
2
|
640
|
+
8
|
641
|
+
57
|
642
|
+
3
|
643
|
+
38
|
644
|
+
12
|
539
645
|
11
|
540
646
|
I
|
541
|
-
|
647
|
+
8
|
542
648
|
I
|
543
|
-
|
649
|
+
1
|
544
650
|
I
|
545
651
|
0
|
546
652
|
I
|
547
653
|
0
|
548
654
|
n
|
549
655
|
p
|
550
|
-
|
656
|
+
13
|
551
657
|
x
|
552
658
|
6
|
553
|
-
|
659
|
+
Runner
|
660
|
+
n
|
554
661
|
s
|
555
662
|
8
|
556
663
|
features
|
@@ -567,29 +674,94 @@ x
|
|
567
674
|
7
|
568
675
|
message
|
569
676
|
s
|
570
|
-
|
571
|
-
|
677
|
+
20
|
678
|
+
Running all features
|
572
679
|
x
|
573
680
|
3
|
574
681
|
[]=
|
575
682
|
x
|
576
|
-
|
577
|
-
merge
|
683
|
+
5
|
684
|
+
merge
|
578
685
|
x
|
579
686
|
3
|
580
687
|
run
|
688
|
+
x
|
689
|
+
13
|
690
|
+
@failed_paths
|
691
|
+
x
|
692
|
+
12
|
693
|
+
@last_failed
|
581
694
|
p
|
582
|
-
|
695
|
+
9
|
583
696
|
I
|
584
697
|
-1
|
585
698
|
I
|
699
|
+
1c
|
700
|
+
I
|
701
|
+
0
|
702
|
+
I
|
703
|
+
1d
|
704
|
+
I
|
705
|
+
25
|
706
|
+
I
|
707
|
+
1f
|
708
|
+
I
|
709
|
+
31
|
710
|
+
I
|
711
|
+
20
|
712
|
+
I
|
713
|
+
3c
|
714
|
+
x
|
715
|
+
62
|
716
|
+
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
717
|
+
p
|
718
|
+
1
|
719
|
+
x
|
720
|
+
6
|
721
|
+
passed
|
722
|
+
x
|
723
|
+
6
|
724
|
+
reload
|
725
|
+
M
|
726
|
+
1
|
727
|
+
n
|
728
|
+
n
|
729
|
+
x
|
730
|
+
6
|
731
|
+
reload
|
732
|
+
i
|
733
|
+
5
|
734
|
+
35
|
735
|
+
0
|
736
|
+
38
|
737
|
+
0
|
586
738
|
11
|
587
739
|
I
|
740
|
+
1
|
741
|
+
I
|
588
742
|
0
|
589
743
|
I
|
590
|
-
|
744
|
+
0
|
745
|
+
I
|
746
|
+
0
|
747
|
+
n
|
748
|
+
p
|
749
|
+
1
|
750
|
+
x
|
751
|
+
13
|
752
|
+
@failed_paths
|
753
|
+
p
|
754
|
+
5
|
755
|
+
I
|
756
|
+
-1
|
591
757
|
I
|
592
758
|
23
|
759
|
+
I
|
760
|
+
0
|
761
|
+
I
|
762
|
+
24
|
763
|
+
I
|
764
|
+
5
|
593
765
|
x
|
594
766
|
62
|
595
767
|
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
@@ -606,88 +778,187 @@ x
|
|
606
778
|
13
|
607
779
|
run_on_change
|
608
780
|
i
|
609
|
-
|
610
|
-
|
781
|
+
154
|
782
|
+
39
|
783
|
+
0
|
784
|
+
7
|
785
|
+
1
|
786
|
+
49
|
787
|
+
2
|
788
|
+
1
|
789
|
+
9
|
790
|
+
19
|
791
|
+
20
|
792
|
+
0
|
793
|
+
39
|
794
|
+
3
|
795
|
+
81
|
796
|
+
4
|
797
|
+
19
|
611
798
|
0
|
799
|
+
8
|
800
|
+
20
|
612
801
|
1
|
802
|
+
15
|
803
|
+
45
|
804
|
+
5
|
805
|
+
6
|
613
806
|
20
|
614
807
|
0
|
615
808
|
49
|
616
|
-
|
809
|
+
7
|
617
810
|
1
|
618
811
|
19
|
619
812
|
0
|
620
813
|
15
|
814
|
+
45
|
815
|
+
8
|
816
|
+
9
|
817
|
+
20
|
818
|
+
0
|
621
819
|
20
|
622
820
|
0
|
623
821
|
7
|
624
|
-
|
822
|
+
10
|
625
823
|
64
|
626
824
|
49
|
627
|
-
|
825
|
+
11
|
628
826
|
1
|
629
827
|
9
|
630
|
-
|
828
|
+
72
|
631
829
|
5
|
632
830
|
48
|
633
|
-
|
831
|
+
12
|
634
832
|
44
|
635
833
|
43
|
636
|
-
|
834
|
+
13
|
637
835
|
79
|
638
836
|
49
|
639
|
-
|
837
|
+
14
|
640
838
|
1
|
641
839
|
13
|
642
840
|
7
|
643
|
-
|
841
|
+
15
|
644
842
|
7
|
645
|
-
|
843
|
+
16
|
646
844
|
64
|
647
845
|
49
|
648
|
-
|
846
|
+
17
|
649
847
|
2
|
650
848
|
15
|
651
849
|
49
|
652
|
-
|
850
|
+
18
|
653
851
|
1
|
654
852
|
8
|
655
|
-
|
853
|
+
75
|
854
|
+
5
|
855
|
+
48
|
856
|
+
12
|
857
|
+
49
|
858
|
+
19
|
859
|
+
2
|
860
|
+
19
|
656
861
|
1
|
657
862
|
15
|
658
863
|
20
|
864
|
+
1
|
865
|
+
9
|
866
|
+
129
|
867
|
+
39
|
659
868
|
0
|
869
|
+
7
|
870
|
+
1
|
660
871
|
49
|
661
|
-
|
662
|
-
0
|
663
|
-
9
|
664
|
-
58
|
872
|
+
2
|
665
873
|
1
|
874
|
+
9
|
875
|
+
104
|
876
|
+
39
|
877
|
+
3
|
878
|
+
20
|
879
|
+
0
|
880
|
+
82
|
881
|
+
20
|
882
|
+
38
|
883
|
+
3
|
666
884
|
8
|
667
|
-
|
668
|
-
|
669
|
-
|
885
|
+
105
|
886
|
+
1
|
887
|
+
15
|
888
|
+
39
|
889
|
+
21
|
670
890
|
13
|
671
|
-
|
891
|
+
9
|
892
|
+
119
|
893
|
+
15
|
894
|
+
39
|
672
895
|
0
|
896
|
+
7
|
897
|
+
22
|
898
|
+
49
|
899
|
+
2
|
900
|
+
1
|
901
|
+
9
|
902
|
+
126
|
673
903
|
5
|
674
904
|
48
|
675
|
-
|
905
|
+
23
|
906
|
+
8
|
907
|
+
127
|
908
|
+
1
|
909
|
+
8
|
910
|
+
153
|
911
|
+
39
|
912
|
+
0
|
913
|
+
7
|
914
|
+
1
|
676
915
|
49
|
677
|
-
14
|
678
916
|
2
|
917
|
+
1
|
918
|
+
9
|
919
|
+
148
|
920
|
+
39
|
921
|
+
3
|
922
|
+
20
|
923
|
+
0
|
924
|
+
81
|
925
|
+
4
|
926
|
+
38
|
927
|
+
3
|
928
|
+
8
|
929
|
+
149
|
930
|
+
1
|
931
|
+
15
|
932
|
+
2
|
933
|
+
38
|
934
|
+
21
|
679
935
|
11
|
680
936
|
I
|
681
|
-
|
937
|
+
9
|
682
938
|
I
|
683
|
-
|
939
|
+
2
|
684
940
|
I
|
685
941
|
1
|
686
942
|
I
|
687
943
|
1
|
688
944
|
n
|
689
945
|
p
|
690
|
-
|
946
|
+
24
|
947
|
+
x
|
948
|
+
8
|
949
|
+
@options
|
950
|
+
x
|
951
|
+
11
|
952
|
+
keep_failed
|
953
|
+
x
|
954
|
+
2
|
955
|
+
[]
|
956
|
+
x
|
957
|
+
13
|
958
|
+
@failed_paths
|
959
|
+
x
|
960
|
+
1
|
961
|
+
+
|
691
962
|
x
|
692
963
|
9
|
693
964
|
Inspector
|
@@ -695,6 +966,10 @@ n
|
|
695
966
|
x
|
696
967
|
5
|
697
968
|
clean
|
969
|
+
x
|
970
|
+
6
|
971
|
+
Runner
|
972
|
+
n
|
698
973
|
s
|
699
974
|
8
|
700
975
|
features
|
@@ -714,166 +989,112 @@ x
|
|
714
989
|
7
|
715
990
|
message
|
716
991
|
s
|
717
|
-
|
718
|
-
|
992
|
+
20
|
993
|
+
Running all features
|
719
994
|
x
|
720
995
|
3
|
721
996
|
[]=
|
722
997
|
x
|
723
|
-
|
724
|
-
merge
|
725
|
-
x
|
726
|
-
6
|
727
|
-
empty?
|
728
|
-
x
|
729
|
-
6
|
730
|
-
runner
|
998
|
+
5
|
999
|
+
merge
|
731
1000
|
x
|
732
1001
|
3
|
733
1002
|
run
|
1003
|
+
x
|
1004
|
+
1
|
1005
|
+
-
|
1006
|
+
x
|
1007
|
+
12
|
1008
|
+
@last_failed
|
1009
|
+
x
|
1010
|
+
14
|
1011
|
+
all_after_pass
|
1012
|
+
x
|
1013
|
+
7
|
1014
|
+
run_all
|
734
1015
|
p
|
735
|
-
|
1016
|
+
19
|
736
1017
|
I
|
737
1018
|
-1
|
738
1019
|
I
|
739
|
-
|
1020
|
+
27
|
740
1021
|
I
|
741
1022
|
0
|
742
1023
|
I
|
743
|
-
|
1024
|
+
28
|
744
1025
|
I
|
745
|
-
|
1026
|
+
15
|
746
1027
|
I
|
747
|
-
|
1028
|
+
29
|
748
1029
|
I
|
749
|
-
|
1030
|
+
20
|
750
1031
|
I
|
751
|
-
|
1032
|
+
2a
|
752
1033
|
I
|
753
|
-
|
754
|
-
x
|
755
|
-
62
|
756
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
757
|
-
p
|
758
|
-
1
|
759
|
-
x
|
760
|
-
5
|
761
|
-
paths
|
762
|
-
x
|
763
|
-
7
|
764
|
-
private
|
765
|
-
x
|
766
|
-
6
|
767
|
-
runner
|
768
|
-
M
|
769
|
-
1
|
770
|
-
n
|
771
|
-
n
|
772
|
-
x
|
773
|
-
6
|
774
|
-
runner
|
775
|
-
i
|
776
|
-
19
|
777
|
-
5
|
778
|
-
48
|
779
|
-
0
|
780
|
-
7
|
781
|
-
1
|
782
|
-
49
|
783
|
-
2
|
784
|
-
1
|
785
|
-
9
|
786
|
-
15
|
787
|
-
45
|
788
|
-
3
|
789
|
-
4
|
790
|
-
8
|
791
|
-
18
|
792
|
-
45
|
793
|
-
5
|
794
|
-
6
|
795
|
-
11
|
1034
|
+
51
|
796
1035
|
I
|
797
|
-
|
1036
|
+
2c
|
798
1037
|
I
|
799
|
-
|
1038
|
+
55
|
800
1039
|
I
|
801
|
-
|
1040
|
+
2e
|
802
1041
|
I
|
803
|
-
|
804
|
-
n
|
805
|
-
p
|
806
|
-
7
|
807
|
-
x
|
808
|
-
7
|
809
|
-
options
|
810
|
-
x
|
811
|
-
7
|
812
|
-
preload
|
813
|
-
x
|
814
|
-
2
|
815
|
-
[]
|
816
|
-
x
|
817
|
-
13
|
818
|
-
PreloadRunner
|
819
|
-
n
|
820
|
-
x
|
821
|
-
6
|
822
|
-
Runner
|
823
|
-
n
|
824
|
-
p
|
825
|
-
5
|
1042
|
+
6a
|
826
1043
|
I
|
827
|
-
|
1044
|
+
30
|
828
1045
|
I
|
829
|
-
|
1046
|
+
81
|
830
1047
|
I
|
831
|
-
|
1048
|
+
33
|
832
1049
|
I
|
833
|
-
|
1050
|
+
96
|
834
1051
|
I
|
835
|
-
|
1052
|
+
35
|
1053
|
+
I
|
1054
|
+
9a
|
836
1055
|
x
|
837
1056
|
62
|
838
1057
|
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
839
1058
|
p
|
840
|
-
|
1059
|
+
2
|
1060
|
+
x
|
1061
|
+
5
|
1062
|
+
paths
|
1063
|
+
x
|
1064
|
+
6
|
1065
|
+
passed
|
841
1066
|
p
|
842
|
-
|
1067
|
+
15
|
843
1068
|
I
|
844
1069
|
2
|
845
1070
|
I
|
846
|
-
|
1071
|
+
8
|
847
1072
|
I
|
848
|
-
|
1073
|
+
d
|
849
1074
|
I
|
850
|
-
|
1075
|
+
9
|
851
1076
|
I
|
852
|
-
|
1077
|
+
18
|
853
1078
|
I
|
854
1079
|
b
|
855
1080
|
I
|
856
|
-
|
857
|
-
I
|
858
|
-
d
|
859
|
-
I
|
860
|
-
82
|
1081
|
+
26
|
861
1082
|
I
|
862
|
-
|
1083
|
+
18
|
863
1084
|
I
|
864
|
-
|
1085
|
+
34
|
865
1086
|
I
|
866
|
-
|
1087
|
+
1c
|
867
1088
|
I
|
868
|
-
|
1089
|
+
42
|
869
1090
|
I
|
870
|
-
|
1091
|
+
23
|
871
1092
|
I
|
872
|
-
|
1093
|
+
50
|
873
1094
|
I
|
874
|
-
|
1095
|
+
27
|
875
1096
|
I
|
876
|
-
|
1097
|
+
5e
|
877
1098
|
x
|
878
1099
|
62
|
879
1100
|
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|