guard-rspec 0.1.9 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,46 +3,38 @@ module Guard
3
3
  module Runner
4
4
  class << self
5
5
  attr_reader :rspec_version
6
-
7
- def run(paths, options = {})
6
+
7
+ def run(paths, options={})
8
8
  message = options[:message] || "Running: #{paths.join(' ')}"
9
- UI.info message, :reset => true
9
+ UI.info(message, :reset => true)
10
10
  system(rspec_command(paths, options))
11
11
  end
12
-
13
- def set_rspec_version(options = {})
12
+
13
+ def set_rspec_version(options={})
14
14
  @rspec_version = options[:version] || determine_rspec_version
15
15
  end
16
-
16
+
17
17
  private
18
-
19
- def rspec_command(paths, options = {})
18
+
19
+ def rspec_command(paths, options={})
20
+ warn_deprectation(options)
21
+
20
22
  cmd_parts = []
21
23
  cmd_parts << "rvm #{options[:rvm].join(',')} exec" if options[:rvm].is_a?(Array)
22
24
  cmd_parts << "bundle exec" if bundler? && options[:bundler] != false
23
-
24
- formatter = options[:formatter] || "default"
25
- case rspec_version
26
- when 1
27
- cmd_parts << "spec"
28
- cmd_parts << "--require #{File.dirname(__FILE__)}/formatters/#{formatter}_spec.rb --format #{formatter.capitalize}Spec"
29
- when 2
30
- cmd_parts << "rspec"
31
- cmd_parts << "--require #{File.dirname(__FILE__)}/formatters/#{formatter}_rspec.rb --format #{formatter.capitalize}RSpec"
32
- end
33
-
34
- cmd_parts << "--drb" if options[:drb] == true
35
- cmd_parts << "--color" if options[:color] != false
36
- cmd_parts << "--fail-fast" if options[:fail_fast] == true
37
-
25
+ cmd_parts << rspec_exec.downcase
26
+ cmd_parts << options[:cli] if options[:cli]
27
+ cmd_parts << "-f progress" unless options[:cli] && options[:cli].split(' ').any? { |w| %w[-f --format].include?(w) }
28
+ cmd_parts << "-r #{File.dirname(__FILE__)}/formatters/notification_#{rspec_exec.downcase}.rb -f Notification#{rspec_exec}#{rspec_version == 1 ? ":" : " --out "}/dev/null" if options[:notification] != false
38
29
  cmd_parts << paths.join(' ')
39
- cmd_parts.join(" ")
30
+
31
+ cmd_parts.join(' ')
40
32
  end
41
-
33
+
42
34
  def bundler?
43
35
  @bundler ||= File.exist?("#{Dir.pwd}/Gemfile")
44
36
  end
45
-
37
+
46
38
  def determine_rspec_version
47
39
  UI.info "Determine rspec_version... (can be forced with Guard::RSpec version option)"
48
40
  if File.exist?("#{Dir.pwd}/spec/spec_helper.rb")
@@ -55,7 +47,25 @@ module Guard
55
47
  2
56
48
  end
57
49
  end
58
-
50
+
51
+ def rspec_exec
52
+ case rspec_version
53
+ when 1
54
+ "Spec"
55
+ when 2
56
+ "RSpec"
57
+ end
58
+ end
59
+
60
+ def warn_deprectation(options={})
61
+ [:color, :drb, :fail_fast, [:formatter, "format"]].each do |option|
62
+ key, value = option.is_a?(Array) ? option : [option, option.to_s.gsub('_', '-')]
63
+ if options.key?(key)
64
+ UI.info %{DEPRECATION WARNING: The :#{key} option is deprecated. Pass standard command line argument "--#{value}" to RSpec with the :cli option.}
65
+ end
66
+ end
67
+ end
68
+
59
69
  end
60
70
  end
61
71
  end
@@ -0,0 +1,2095 @@
1
+ !RBIX
2
+ 10937318184790222022
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 5
54
+ Guard
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 5
67
+ Guard
68
+ i
69
+ 29
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 1
76
+ 65
77
+ 49
78
+ 1
79
+ 3
80
+ 13
81
+ 99
82
+ 12
83
+ 7
84
+ 2
85
+ 12
86
+ 7
87
+ 3
88
+ 12
89
+ 65
90
+ 12
91
+ 49
92
+ 4
93
+ 4
94
+ 15
95
+ 49
96
+ 2
97
+ 0
98
+ 11
99
+ I
100
+ 6
101
+ I
102
+ 0
103
+ I
104
+ 0
105
+ I
106
+ 0
107
+ n
108
+ p
109
+ 5
110
+ x
111
+ 5
112
+ RSpec
113
+ x
114
+ 10
115
+ open_class
116
+ x
117
+ 14
118
+ __class_init__
119
+ M
120
+ 1
121
+ n
122
+ n
123
+ x
124
+ 5
125
+ RSpec
126
+ i
127
+ 28
128
+ 5
129
+ 66
130
+ 99
131
+ 7
132
+ 0
133
+ 65
134
+ 49
135
+ 1
136
+ 2
137
+ 13
138
+ 99
139
+ 12
140
+ 7
141
+ 2
142
+ 12
143
+ 7
144
+ 3
145
+ 12
146
+ 65
147
+ 12
148
+ 49
149
+ 4
150
+ 4
151
+ 15
152
+ 49
153
+ 2
154
+ 0
155
+ 11
156
+ I
157
+ 6
158
+ I
159
+ 0
160
+ I
161
+ 0
162
+ I
163
+ 0
164
+ n
165
+ p
166
+ 5
167
+ x
168
+ 6
169
+ Runner
170
+ x
171
+ 11
172
+ open_module
173
+ x
174
+ 15
175
+ __module_init__
176
+ M
177
+ 1
178
+ n
179
+ n
180
+ x
181
+ 6
182
+ Runner
183
+ i
184
+ 28
185
+ 5
186
+ 66
187
+ 5
188
+ 99
189
+ 12
190
+ 49
191
+ 0
192
+ 1
193
+ 13
194
+ 99
195
+ 12
196
+ 7
197
+ 1
198
+ 12
199
+ 7
200
+ 2
201
+ 12
202
+ 65
203
+ 12
204
+ 49
205
+ 3
206
+ 4
207
+ 15
208
+ 54
209
+ 50
210
+ 1
211
+ 0
212
+ 11
213
+ I
214
+ 6
215
+ I
216
+ 0
217
+ I
218
+ 0
219
+ I
220
+ 0
221
+ n
222
+ p
223
+ 4
224
+ x
225
+ 16
226
+ object_metaclass
227
+ x
228
+ 18
229
+ __metaclass_init__
230
+ M
231
+ 1
232
+ n
233
+ n
234
+ x
235
+ 18
236
+ __metaclass_init__
237
+ i
238
+ 112
239
+ 5
240
+ 66
241
+ 5
242
+ 7
243
+ 0
244
+ 47
245
+ 49
246
+ 1
247
+ 1
248
+ 15
249
+ 99
250
+ 7
251
+ 2
252
+ 7
253
+ 3
254
+ 65
255
+ 67
256
+ 49
257
+ 4
258
+ 0
259
+ 49
260
+ 5
261
+ 4
262
+ 15
263
+ 99
264
+ 7
265
+ 6
266
+ 7
267
+ 7
268
+ 65
269
+ 67
270
+ 49
271
+ 4
272
+ 0
273
+ 49
274
+ 5
275
+ 4
276
+ 15
277
+ 5
278
+ 48
279
+ 8
280
+ 15
281
+ 99
282
+ 7
283
+ 9
284
+ 7
285
+ 10
286
+ 65
287
+ 67
288
+ 49
289
+ 4
290
+ 0
291
+ 49
292
+ 5
293
+ 4
294
+ 15
295
+ 99
296
+ 7
297
+ 11
298
+ 7
299
+ 12
300
+ 65
301
+ 67
302
+ 49
303
+ 4
304
+ 0
305
+ 49
306
+ 5
307
+ 4
308
+ 15
309
+ 99
310
+ 7
311
+ 13
312
+ 7
313
+ 14
314
+ 65
315
+ 67
316
+ 49
317
+ 4
318
+ 0
319
+ 49
320
+ 5
321
+ 4
322
+ 15
323
+ 99
324
+ 7
325
+ 15
326
+ 7
327
+ 16
328
+ 65
329
+ 67
330
+ 49
331
+ 4
332
+ 0
333
+ 49
334
+ 5
335
+ 4
336
+ 15
337
+ 99
338
+ 7
339
+ 17
340
+ 7
341
+ 18
342
+ 65
343
+ 67
344
+ 49
345
+ 4
346
+ 0
347
+ 49
348
+ 5
349
+ 4
350
+ 11
351
+ I
352
+ 5
353
+ I
354
+ 0
355
+ I
356
+ 0
357
+ I
358
+ 0
359
+ n
360
+ p
361
+ 19
362
+ x
363
+ 13
364
+ rspec_version
365
+ x
366
+ 11
367
+ attr_reader
368
+ x
369
+ 3
370
+ run
371
+ M
372
+ 1
373
+ n
374
+ n
375
+ x
376
+ 3
377
+ run
378
+ i
379
+ 82
380
+ 23
381
+ 1
382
+ 10
383
+ 14
384
+ 44
385
+ 43
386
+ 0
387
+ 78
388
+ 49
389
+ 1
390
+ 1
391
+ 19
392
+ 1
393
+ 15
394
+ 20
395
+ 1
396
+ 7
397
+ 2
398
+ 49
399
+ 3
400
+ 1
401
+ 13
402
+ 10
403
+ 40
404
+ 15
405
+ 7
406
+ 4
407
+ 20
408
+ 0
409
+ 7
410
+ 5
411
+ 64
412
+ 49
413
+ 6
414
+ 1
415
+ 47
416
+ 101
417
+ 7
418
+ 63
419
+ 2
420
+ 19
421
+ 2
422
+ 15
423
+ 45
424
+ 8
425
+ 9
426
+ 20
427
+ 2
428
+ 44
429
+ 43
430
+ 0
431
+ 79
432
+ 49
433
+ 1
434
+ 1
435
+ 13
436
+ 7
437
+ 10
438
+ 2
439
+ 49
440
+ 11
441
+ 2
442
+ 15
443
+ 49
444
+ 12
445
+ 2
446
+ 15
447
+ 5
448
+ 5
449
+ 20
450
+ 0
451
+ 20
452
+ 1
453
+ 47
454
+ 49
455
+ 13
456
+ 2
457
+ 47
458
+ 49
459
+ 14
460
+ 1
461
+ 11
462
+ I
463
+ 9
464
+ I
465
+ 3
466
+ I
467
+ 1
468
+ I
469
+ 2
470
+ n
471
+ p
472
+ 15
473
+ x
474
+ 4
475
+ Hash
476
+ x
477
+ 16
478
+ new_from_literal
479
+ x
480
+ 7
481
+ message
482
+ x
483
+ 2
484
+ []
485
+ s
486
+ 9
487
+ Running:
488
+ s
489
+ 1
490
+
491
+ x
492
+ 4
493
+ join
494
+ x
495
+ 4
496
+ to_s
497
+ x
498
+ 2
499
+ UI
500
+ n
501
+ x
502
+ 5
503
+ reset
504
+ x
505
+ 3
506
+ []=
507
+ x
508
+ 4
509
+ info
510
+ x
511
+ 13
512
+ rspec_command
513
+ x
514
+ 6
515
+ system
516
+ p
517
+ 9
518
+ I
519
+ -1
520
+ I
521
+ 7
522
+ I
523
+ e
524
+ I
525
+ 8
526
+ I
527
+ 2b
528
+ I
529
+ 9
530
+ I
531
+ 43
532
+ I
533
+ a
534
+ I
535
+ 52
536
+ x
537
+ 69
538
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
539
+ p
540
+ 3
541
+ x
542
+ 5
543
+ paths
544
+ x
545
+ 7
546
+ options
547
+ x
548
+ 7
549
+ message
550
+ x
551
+ 17
552
+ method_visibility
553
+ x
554
+ 15
555
+ add_defn_method
556
+ x
557
+ 17
558
+ set_rspec_version
559
+ M
560
+ 1
561
+ n
562
+ n
563
+ x
564
+ 17
565
+ set_rspec_version
566
+ i
567
+ 31
568
+ 23
569
+ 0
570
+ 10
571
+ 14
572
+ 44
573
+ 43
574
+ 0
575
+ 78
576
+ 49
577
+ 1
578
+ 1
579
+ 19
580
+ 0
581
+ 15
582
+ 20
583
+ 0
584
+ 7
585
+ 2
586
+ 49
587
+ 3
588
+ 1
589
+ 13
590
+ 10
591
+ 28
592
+ 15
593
+ 5
594
+ 48
595
+ 4
596
+ 38
597
+ 5
598
+ 11
599
+ I
600
+ 3
601
+ I
602
+ 1
603
+ I
604
+ 0
605
+ I
606
+ 1
607
+ n
608
+ p
609
+ 6
610
+ x
611
+ 4
612
+ Hash
613
+ x
614
+ 16
615
+ new_from_literal
616
+ x
617
+ 7
618
+ version
619
+ x
620
+ 2
621
+ []
622
+ x
623
+ 23
624
+ determine_rspec_version
625
+ x
626
+ 14
627
+ @rspec_version
628
+ p
629
+ 5
630
+ I
631
+ -1
632
+ I
633
+ d
634
+ I
635
+ e
636
+ I
637
+ e
638
+ I
639
+ 1f
640
+ x
641
+ 69
642
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
643
+ p
644
+ 1
645
+ x
646
+ 7
647
+ options
648
+ x
649
+ 7
650
+ private
651
+ x
652
+ 13
653
+ rspec_command
654
+ M
655
+ 1
656
+ n
657
+ n
658
+ x
659
+ 13
660
+ rspec_command
661
+ i
662
+ 293
663
+ 23
664
+ 1
665
+ 10
666
+ 14
667
+ 44
668
+ 43
669
+ 0
670
+ 78
671
+ 49
672
+ 1
673
+ 1
674
+ 19
675
+ 1
676
+ 15
677
+ 5
678
+ 20
679
+ 1
680
+ 47
681
+ 49
682
+ 2
683
+ 1
684
+ 15
685
+ 35
686
+ 0
687
+ 19
688
+ 2
689
+ 15
690
+ 20
691
+ 1
692
+ 7
693
+ 3
694
+ 49
695
+ 4
696
+ 1
697
+ 45
698
+ 5
699
+ 6
700
+ 49
701
+ 7
702
+ 1
703
+ 9
704
+ 71
705
+ 20
706
+ 2
707
+ 7
708
+ 8
709
+ 20
710
+ 1
711
+ 7
712
+ 3
713
+ 49
714
+ 4
715
+ 1
716
+ 7
717
+ 9
718
+ 64
719
+ 49
720
+ 10
721
+ 1
722
+ 47
723
+ 101
724
+ 11
725
+ 7
726
+ 12
727
+ 63
728
+ 3
729
+ 49
730
+ 13
731
+ 1
732
+ 8
733
+ 72
734
+ 1
735
+ 15
736
+ 5
737
+ 47
738
+ 49
739
+ 14
740
+ 0
741
+ 13
742
+ 9
743
+ 98
744
+ 15
745
+ 20
746
+ 1
747
+ 7
748
+ 15
749
+ 49
750
+ 4
751
+ 1
752
+ 3
753
+ 83
754
+ 16
755
+ 10
756
+ 97
757
+ 2
758
+ 8
759
+ 98
760
+ 3
761
+ 9
762
+ 110
763
+ 20
764
+ 2
765
+ 7
766
+ 17
767
+ 64
768
+ 49
769
+ 13
770
+ 1
771
+ 8
772
+ 111
773
+ 1
774
+ 15
775
+ 20
776
+ 2
777
+ 5
778
+ 48
779
+ 18
780
+ 49
781
+ 19
782
+ 0
783
+ 49
784
+ 13
785
+ 1
786
+ 15
787
+ 20
788
+ 1
789
+ 7
790
+ 20
791
+ 49
792
+ 4
793
+ 1
794
+ 9
795
+ 147
796
+ 20
797
+ 2
798
+ 20
799
+ 1
800
+ 7
801
+ 20
802
+ 49
803
+ 4
804
+ 1
805
+ 49
806
+ 13
807
+ 1
808
+ 8
809
+ 148
810
+ 1
811
+ 15
812
+ 20
813
+ 1
814
+ 7
815
+ 20
816
+ 49
817
+ 4
818
+ 1
819
+ 13
820
+ 9
821
+ 178
822
+ 15
823
+ 20
824
+ 1
825
+ 7
826
+ 20
827
+ 49
828
+ 4
829
+ 1
830
+ 7
831
+ 21
832
+ 64
833
+ 49
834
+ 22
835
+ 1
836
+ 56
837
+ 23
838
+ 50
839
+ 24
840
+ 0
841
+ 9
842
+ 183
843
+ 1
844
+ 8
845
+ 191
846
+ 20
847
+ 2
848
+ 7
849
+ 25
850
+ 64
851
+ 49
852
+ 13
853
+ 1
854
+ 15
855
+ 20
856
+ 1
857
+ 7
858
+ 26
859
+ 49
860
+ 4
861
+ 1
862
+ 3
863
+ 83
864
+ 16
865
+ 9
866
+ 207
867
+ 1
868
+ 8
869
+ 269
870
+ 20
871
+ 2
872
+ 7
873
+ 27
874
+ 45
875
+ 28
876
+ 29
877
+ 65
878
+ 49
879
+ 30
880
+ 0
881
+ 49
882
+ 31
883
+ 1
884
+ 47
885
+ 101
886
+ 11
887
+ 7
888
+ 32
889
+ 5
890
+ 48
891
+ 18
892
+ 49
893
+ 19
894
+ 0
895
+ 47
896
+ 101
897
+ 11
898
+ 7
899
+ 33
900
+ 5
901
+ 48
902
+ 18
903
+ 47
904
+ 101
905
+ 11
906
+ 5
907
+ 48
908
+ 34
909
+ 79
910
+ 83
911
+ 16
912
+ 9
913
+ 256
914
+ 7
915
+ 35
916
+ 64
917
+ 8
918
+ 259
919
+ 7
920
+ 36
921
+ 64
922
+ 47
923
+ 101
924
+ 11
925
+ 7
926
+ 37
927
+ 63
928
+ 8
929
+ 49
930
+ 13
931
+ 1
932
+ 15
933
+ 20
934
+ 2
935
+ 20
936
+ 0
937
+ 7
938
+ 21
939
+ 64
940
+ 49
941
+ 10
942
+ 1
943
+ 49
944
+ 13
945
+ 1
946
+ 15
947
+ 20
948
+ 2
949
+ 7
950
+ 21
951
+ 64
952
+ 49
953
+ 10
954
+ 1
955
+ 11
956
+ I
957
+ c
958
+ I
959
+ 3
960
+ I
961
+ 1
962
+ I
963
+ 2
964
+ n
965
+ p
966
+ 38
967
+ x
968
+ 4
969
+ Hash
970
+ x
971
+ 16
972
+ new_from_literal
973
+ x
974
+ 17
975
+ warn_deprectation
976
+ x
977
+ 3
978
+ rvm
979
+ x
980
+ 2
981
+ []
982
+ x
983
+ 5
984
+ Array
985
+ n
986
+ x
987
+ 5
988
+ is_a?
989
+ s
990
+ 4
991
+ rvm
992
+ s
993
+ 1
994
+ ,
995
+ x
996
+ 4
997
+ join
998
+ x
999
+ 4
1000
+ to_s
1001
+ s
1002
+ 5
1003
+ exec
1004
+ x
1005
+ 2
1006
+ <<
1007
+ x
1008
+ 8
1009
+ bundler?
1010
+ x
1011
+ 7
1012
+ bundler
1013
+ x
1014
+ 2
1015
+ ==
1016
+ s
1017
+ 11
1018
+ bundle exec
1019
+ x
1020
+ 10
1021
+ rspec_exec
1022
+ x
1023
+ 8
1024
+ downcase
1025
+ x
1026
+ 3
1027
+ cli
1028
+ s
1029
+ 1
1030
+
1031
+ x
1032
+ 5
1033
+ split
1034
+ M
1035
+ 1
1036
+ p
1037
+ 2
1038
+ x
1039
+ 9
1040
+ for_block
1041
+ t
1042
+ n
1043
+ x
1044
+ 13
1045
+ rspec_command
1046
+ i
1047
+ 18
1048
+ 57
1049
+ 19
1050
+ 0
1051
+ 15
1052
+ 7
1053
+ 0
1054
+ 64
1055
+ 7
1056
+ 1
1057
+ 64
1058
+ 35
1059
+ 2
1060
+ 20
1061
+ 0
1062
+ 49
1063
+ 2
1064
+ 1
1065
+ 11
1066
+ I
1067
+ 4
1068
+ I
1069
+ 1
1070
+ I
1071
+ 1
1072
+ I
1073
+ 1
1074
+ n
1075
+ p
1076
+ 3
1077
+ s
1078
+ 2
1079
+ -f
1080
+ s
1081
+ 8
1082
+ --format
1083
+ x
1084
+ 8
1085
+ include?
1086
+ p
1087
+ 3
1088
+ I
1089
+ 0
1090
+ I
1091
+ 1b
1092
+ I
1093
+ 12
1094
+ x
1095
+ 69
1096
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
1097
+ p
1098
+ 1
1099
+ x
1100
+ 1
1101
+ w
1102
+ x
1103
+ 4
1104
+ any?
1105
+ s
1106
+ 11
1107
+ -f progress
1108
+ x
1109
+ 12
1110
+ notification
1111
+ s
1112
+ 3
1113
+ -r
1114
+ x
1115
+ 4
1116
+ File
1117
+ n
1118
+ x
1119
+ 11
1120
+ active_path
1121
+ x
1122
+ 7
1123
+ dirname
1124
+ s
1125
+ 25
1126
+ /formatters/notification_
1127
+ s
1128
+ 19
1129
+ .rb -f Notification
1130
+ x
1131
+ 13
1132
+ rspec_version
1133
+ s
1134
+ 1
1135
+ :
1136
+ s
1137
+ 7
1138
+ --out
1139
+ s
1140
+ 9
1141
+ /dev/null
1142
+ p
1143
+ 23
1144
+ I
1145
+ -1
1146
+ I
1147
+ 13
1148
+ I
1149
+ e
1150
+ I
1151
+ 14
1152
+ I
1153
+ 16
1154
+ I
1155
+ 16
1156
+ I
1157
+ 1b
1158
+ I
1159
+ 17
1160
+ I
1161
+ 49
1162
+ I
1163
+ 18
1164
+ I
1165
+ 70
1166
+ I
1167
+ 19
1168
+ I
1169
+ 7c
1170
+ I
1171
+ 1a
1172
+ I
1173
+ 95
1174
+ I
1175
+ 1b
1176
+ I
1177
+ c0
1178
+ I
1179
+ 1c
1180
+ I
1181
+ 10e
1182
+ I
1183
+ 1d
1184
+ I
1185
+ 11c
1186
+ I
1187
+ 1f
1188
+ I
1189
+ 125
1190
+ x
1191
+ 69
1192
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
1193
+ p
1194
+ 3
1195
+ x
1196
+ 5
1197
+ paths
1198
+ x
1199
+ 7
1200
+ options
1201
+ x
1202
+ 9
1203
+ cmd_parts
1204
+ x
1205
+ 8
1206
+ bundler?
1207
+ M
1208
+ 1
1209
+ n
1210
+ n
1211
+ x
1212
+ 8
1213
+ bundler?
1214
+ i
1215
+ 28
1216
+ 39
1217
+ 0
1218
+ 13
1219
+ 10
1220
+ 27
1221
+ 15
1222
+ 45
1223
+ 1
1224
+ 2
1225
+ 45
1226
+ 3
1227
+ 4
1228
+ 49
1229
+ 5
1230
+ 0
1231
+ 47
1232
+ 101
1233
+ 6
1234
+ 7
1235
+ 7
1236
+ 63
1237
+ 2
1238
+ 49
1239
+ 8
1240
+ 1
1241
+ 38
1242
+ 0
1243
+ 11
1244
+ I
1245
+ 3
1246
+ I
1247
+ 0
1248
+ I
1249
+ 0
1250
+ I
1251
+ 0
1252
+ n
1253
+ p
1254
+ 9
1255
+ x
1256
+ 8
1257
+ @bundler
1258
+ x
1259
+ 4
1260
+ File
1261
+ n
1262
+ x
1263
+ 3
1264
+ Dir
1265
+ n
1266
+ x
1267
+ 3
1268
+ pwd
1269
+ x
1270
+ 4
1271
+ to_s
1272
+ s
1273
+ 8
1274
+ /Gemfile
1275
+ x
1276
+ 6
1277
+ exist?
1278
+ p
1279
+ 5
1280
+ I
1281
+ -1
1282
+ I
1283
+ 22
1284
+ I
1285
+ 0
1286
+ I
1287
+ 23
1288
+ I
1289
+ 1c
1290
+ x
1291
+ 69
1292
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
1293
+ p
1294
+ 0
1295
+ x
1296
+ 23
1297
+ determine_rspec_version
1298
+ M
1299
+ 1
1300
+ n
1301
+ n
1302
+ x
1303
+ 23
1304
+ determine_rspec_version
1305
+ i
1306
+ 156
1307
+ 45
1308
+ 0
1309
+ 1
1310
+ 7
1311
+ 2
1312
+ 64
1313
+ 49
1314
+ 3
1315
+ 1
1316
+ 15
1317
+ 45
1318
+ 4
1319
+ 5
1320
+ 45
1321
+ 6
1322
+ 7
1323
+ 49
1324
+ 8
1325
+ 0
1326
+ 47
1327
+ 101
1328
+ 9
1329
+ 7
1330
+ 10
1331
+ 63
1332
+ 2
1333
+ 49
1334
+ 11
1335
+ 1
1336
+ 9
1337
+ 98
1338
+ 45
1339
+ 4
1340
+ 12
1341
+ 13
1342
+ 71
1343
+ 13
1344
+ 47
1345
+ 9
1346
+ 65
1347
+ 47
1348
+ 49
1349
+ 14
1350
+ 0
1351
+ 13
1352
+ 45
1353
+ 6
1354
+ 15
1355
+ 49
1356
+ 8
1357
+ 0
1358
+ 47
1359
+ 101
1360
+ 9
1361
+ 7
1362
+ 10
1363
+ 63
1364
+ 2
1365
+ 47
1366
+ 49
1367
+ 16
1368
+ 1
1369
+ 15
1370
+ 8
1371
+ 81
1372
+ 45
1373
+ 6
1374
+ 17
1375
+ 49
1376
+ 8
1377
+ 0
1378
+ 47
1379
+ 101
1380
+ 9
1381
+ 7
1382
+ 10
1383
+ 63
1384
+ 2
1385
+ 49
1386
+ 13
1387
+ 1
1388
+ 49
1389
+ 18
1390
+ 0
1391
+ 7
1392
+ 19
1393
+ 64
1394
+ 49
1395
+ 20
1396
+ 1
1397
+ 9
1398
+ 95
1399
+ 79
1400
+ 8
1401
+ 96
1402
+ 80
1403
+ 8
1404
+ 155
1405
+ 5
1406
+ 47
1407
+ 49
1408
+ 21
1409
+ 0
1410
+ 9
1411
+ 154
1412
+ 45
1413
+ 22
1414
+ 23
1415
+ 7
1416
+ 24
1417
+ 64
1418
+ 45
1419
+ 6
1420
+ 25
1421
+ 49
1422
+ 8
1423
+ 0
1424
+ 47
1425
+ 101
1426
+ 9
1427
+ 7
1428
+ 26
1429
+ 63
1430
+ 2
1431
+ 13
1432
+ 18
1433
+ 3
1434
+ 49
1435
+ 27
1436
+ 2
1437
+ 15
1438
+ 15
1439
+ 5
1440
+ 7
1441
+ 28
1442
+ 64
1443
+ 47
1444
+ 49
1445
+ 29
1446
+ 1
1447
+ 7
1448
+ 30
1449
+ 64
1450
+ 49
1451
+ 20
1452
+ 1
1453
+ 9
1454
+ 151
1455
+ 79
1456
+ 8
1457
+ 152
1458
+ 80
1459
+ 8
1460
+ 155
1461
+ 80
1462
+ 11
1463
+ I
1464
+ 4
1465
+ I
1466
+ 0
1467
+ I
1468
+ 0
1469
+ I
1470
+ 0
1471
+ n
1472
+ p
1473
+ 31
1474
+ x
1475
+ 2
1476
+ UI
1477
+ n
1478
+ s
1479
+ 75
1480
+ Determine rspec_version... (can be forced with Guard::RSpec version option)
1481
+ x
1482
+ 4
1483
+ info
1484
+ x
1485
+ 4
1486
+ File
1487
+ n
1488
+ x
1489
+ 3
1490
+ Dir
1491
+ n
1492
+ x
1493
+ 3
1494
+ pwd
1495
+ x
1496
+ 4
1497
+ to_s
1498
+ s
1499
+ 20
1500
+ /spec/spec_helper.rb
1501
+ x
1502
+ 6
1503
+ exist?
1504
+ n
1505
+ x
1506
+ 3
1507
+ new
1508
+ x
1509
+ 8
1510
+ allocate
1511
+ n
1512
+ x
1513
+ 10
1514
+ initialize
1515
+ n
1516
+ x
1517
+ 4
1518
+ read
1519
+ s
1520
+ 12
1521
+ Spec::Runner
1522
+ x
1523
+ 8
1524
+ include?
1525
+ x
1526
+ 8
1527
+ bundler?
1528
+ x
1529
+ 3
1530
+ ENV
1531
+ n
1532
+ s
1533
+ 14
1534
+ BUNDLE_GEMFILE
1535
+ n
1536
+ s
1537
+ 8
1538
+ /Gemfile
1539
+ x
1540
+ 3
1541
+ []=
1542
+ s
1543
+ 17
1544
+ bundle show rspec
1545
+ x
1546
+ 1
1547
+ `
1548
+ s
1549
+ 9
1550
+ /rspec-1.
1551
+ p
1552
+ 17
1553
+ I
1554
+ -1
1555
+ I
1556
+ 26
1557
+ I
1558
+ 0
1559
+ I
1560
+ 27
1561
+ I
1562
+ a
1563
+ I
1564
+ 28
1565
+ I
1566
+ 1f
1567
+ I
1568
+ 29
1569
+ I
1570
+ 62
1571
+ I
1572
+ 2a
1573
+ I
1574
+ 69
1575
+ I
1576
+ 2c
1577
+ I
1578
+ 84
1579
+ I
1580
+ 2d
1581
+ I
1582
+ 9a
1583
+ I
1584
+ 2f
1585
+ I
1586
+ 9c
1587
+ x
1588
+ 69
1589
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
1590
+ p
1591
+ 0
1592
+ x
1593
+ 10
1594
+ rspec_exec
1595
+ M
1596
+ 1
1597
+ n
1598
+ n
1599
+ x
1600
+ 10
1601
+ rspec_exec
1602
+ i
1603
+ 34
1604
+ 5
1605
+ 48
1606
+ 0
1607
+ 13
1608
+ 79
1609
+ 12
1610
+ 49
1611
+ 1
1612
+ 1
1613
+ 9
1614
+ 17
1615
+ 15
1616
+ 7
1617
+ 2
1618
+ 64
1619
+ 8
1620
+ 33
1621
+ 13
1622
+ 80
1623
+ 12
1624
+ 49
1625
+ 1
1626
+ 1
1627
+ 9
1628
+ 31
1629
+ 15
1630
+ 7
1631
+ 3
1632
+ 64
1633
+ 8
1634
+ 33
1635
+ 15
1636
+ 1
1637
+ 11
1638
+ I
1639
+ 3
1640
+ I
1641
+ 0
1642
+ I
1643
+ 0
1644
+ I
1645
+ 0
1646
+ n
1647
+ p
1648
+ 4
1649
+ x
1650
+ 13
1651
+ rspec_version
1652
+ x
1653
+ 3
1654
+ ===
1655
+ s
1656
+ 4
1657
+ Spec
1658
+ s
1659
+ 5
1660
+ RSpec
1661
+ p
1662
+ 15
1663
+ I
1664
+ -1
1665
+ I
1666
+ 33
1667
+ I
1668
+ 0
1669
+ I
1670
+ 34
1671
+ I
1672
+ 3
1673
+ I
1674
+ 35
1675
+ I
1676
+ c
1677
+ I
1678
+ 36
1679
+ I
1680
+ 11
1681
+ I
1682
+ 37
1683
+ I
1684
+ 1a
1685
+ I
1686
+ 38
1687
+ I
1688
+ 20
1689
+ I
1690
+ 34
1691
+ I
1692
+ 22
1693
+ x
1694
+ 69
1695
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
1696
+ p
1697
+ 0
1698
+ x
1699
+ 17
1700
+ warn_deprectation
1701
+ M
1702
+ 1
1703
+ n
1704
+ n
1705
+ x
1706
+ 17
1707
+ warn_deprectation
1708
+ i
1709
+ 35
1710
+ 23
1711
+ 0
1712
+ 10
1713
+ 14
1714
+ 44
1715
+ 43
1716
+ 0
1717
+ 78
1718
+ 49
1719
+ 1
1720
+ 1
1721
+ 19
1722
+ 0
1723
+ 15
1724
+ 7
1725
+ 2
1726
+ 7
1727
+ 3
1728
+ 7
1729
+ 4
1730
+ 7
1731
+ 5
1732
+ 7
1733
+ 6
1734
+ 64
1735
+ 35
1736
+ 2
1737
+ 35
1738
+ 4
1739
+ 56
1740
+ 7
1741
+ 50
1742
+ 8
1743
+ 0
1744
+ 11
1745
+ I
1746
+ 6
1747
+ I
1748
+ 1
1749
+ I
1750
+ 0
1751
+ I
1752
+ 1
1753
+ n
1754
+ p
1755
+ 9
1756
+ x
1757
+ 4
1758
+ Hash
1759
+ x
1760
+ 16
1761
+ new_from_literal
1762
+ x
1763
+ 5
1764
+ color
1765
+ x
1766
+ 3
1767
+ drb
1768
+ x
1769
+ 9
1770
+ fail_fast
1771
+ x
1772
+ 9
1773
+ formatter
1774
+ s
1775
+ 6
1776
+ format
1777
+ M
1778
+ 1
1779
+ p
1780
+ 2
1781
+ x
1782
+ 9
1783
+ for_block
1784
+ t
1785
+ n
1786
+ x
1787
+ 17
1788
+ warn_deprectation
1789
+ i
1790
+ 86
1791
+ 57
1792
+ 19
1793
+ 0
1794
+ 15
1795
+ 20
1796
+ 0
1797
+ 45
1798
+ 0
1799
+ 1
1800
+ 49
1801
+ 2
1802
+ 1
1803
+ 9
1804
+ 18
1805
+ 20
1806
+ 0
1807
+ 8
1808
+ 36
1809
+ 20
1810
+ 0
1811
+ 20
1812
+ 0
1813
+ 49
1814
+ 3
1815
+ 0
1816
+ 7
1817
+ 4
1818
+ 64
1819
+ 7
1820
+ 5
1821
+ 64
1822
+ 49
1823
+ 6
1824
+ 2
1825
+ 35
1826
+ 2
1827
+ 97
1828
+ 37
1829
+ 19
1830
+ 1
1831
+ 15
1832
+ 37
1833
+ 19
1834
+ 2
1835
+ 15
1836
+ 15
1837
+ 2
1838
+ 15
1839
+ 21
1840
+ 1
1841
+ 0
1842
+ 20
1843
+ 1
1844
+ 49
1845
+ 7
1846
+ 1
1847
+ 9
1848
+ 84
1849
+ 45
1850
+ 8
1851
+ 9
1852
+ 7
1853
+ 10
1854
+ 20
1855
+ 1
1856
+ 47
1857
+ 101
1858
+ 3
1859
+ 7
1860
+ 11
1861
+ 20
1862
+ 2
1863
+ 47
1864
+ 101
1865
+ 3
1866
+ 7
1867
+ 12
1868
+ 63
1869
+ 5
1870
+ 49
1871
+ 13
1872
+ 1
1873
+ 8
1874
+ 85
1875
+ 1
1876
+ 11
1877
+ I
1878
+ a
1879
+ I
1880
+ 3
1881
+ I
1882
+ 1
1883
+ I
1884
+ 1
1885
+ n
1886
+ p
1887
+ 14
1888
+ x
1889
+ 5
1890
+ Array
1891
+ n
1892
+ x
1893
+ 5
1894
+ is_a?
1895
+ x
1896
+ 4
1897
+ to_s
1898
+ s
1899
+ 1
1900
+ _
1901
+ s
1902
+ 1
1903
+ -
1904
+ x
1905
+ 4
1906
+ gsub
1907
+ x
1908
+ 4
1909
+ key?
1910
+ x
1911
+ 2
1912
+ UI
1913
+ n
1914
+ s
1915
+ 26
1916
+ DEPRECATION WARNING: The :
1917
+ s
1918
+ 62
1919
+ option is deprecated. Pass standard command line argument "--
1920
+ s
1921
+ 32
1922
+ " to RSpec with the :cli option.
1923
+ x
1924
+ 4
1925
+ info
1926
+ p
1927
+ 11
1928
+ I
1929
+ 0
1930
+ I
1931
+ 3d
1932
+ I
1933
+ 4
1934
+ I
1935
+ 3e
1936
+ I
1937
+ 30
1938
+ I
1939
+ 3f
1940
+ I
1941
+ 3a
1942
+ I
1943
+ 40
1944
+ I
1945
+ 54
1946
+ I
1947
+ 3f
1948
+ I
1949
+ 56
1950
+ x
1951
+ 69
1952
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
1953
+ p
1954
+ 3
1955
+ x
1956
+ 6
1957
+ option
1958
+ x
1959
+ 3
1960
+ key
1961
+ x
1962
+ 5
1963
+ value
1964
+ x
1965
+ 4
1966
+ each
1967
+ p
1968
+ 5
1969
+ I
1970
+ -1
1971
+ I
1972
+ 3c
1973
+ I
1974
+ e
1975
+ I
1976
+ 3d
1977
+ I
1978
+ 23
1979
+ x
1980
+ 69
1981
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
1982
+ p
1983
+ 1
1984
+ x
1985
+ 7
1986
+ options
1987
+ p
1988
+ 19
1989
+ I
1990
+ 2
1991
+ I
1992
+ 5
1993
+ I
1994
+ a
1995
+ I
1996
+ 7
1997
+ I
1998
+ 18
1999
+ I
2000
+ d
2001
+ I
2002
+ 26
2003
+ I
2004
+ 11
2005
+ I
2006
+ 2a
2007
+ I
2008
+ 13
2009
+ I
2010
+ 38
2011
+ I
2012
+ 22
2013
+ I
2014
+ 46
2015
+ I
2016
+ 26
2017
+ I
2018
+ 54
2019
+ I
2020
+ 33
2021
+ I
2022
+ 62
2023
+ I
2024
+ 3c
2025
+ I
2026
+ 70
2027
+ x
2028
+ 69
2029
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
2030
+ p
2031
+ 0
2032
+ x
2033
+ 13
2034
+ attach_method
2035
+ p
2036
+ 3
2037
+ I
2038
+ 2
2039
+ I
2040
+ 4
2041
+ I
2042
+ 1c
2043
+ x
2044
+ 69
2045
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
2046
+ p
2047
+ 0
2048
+ x
2049
+ 13
2050
+ attach_method
2051
+ p
2052
+ 3
2053
+ I
2054
+ 2
2055
+ I
2056
+ 3
2057
+ I
2058
+ 1c
2059
+ x
2060
+ 69
2061
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
2062
+ p
2063
+ 0
2064
+ x
2065
+ 13
2066
+ attach_method
2067
+ p
2068
+ 3
2069
+ I
2070
+ 2
2071
+ I
2072
+ 2
2073
+ I
2074
+ 1d
2075
+ x
2076
+ 69
2077
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
2078
+ p
2079
+ 0
2080
+ x
2081
+ 13
2082
+ attach_method
2083
+ p
2084
+ 3
2085
+ I
2086
+ 0
2087
+ I
2088
+ 1
2089
+ I
2090
+ 1c
2091
+ x
2092
+ 69
2093
+ /Users/Thibaud/Development/Code/guard-rspec/lib/guard/rspec/runner.rb
2094
+ p
2095
+ 0