guard-jasmine 0.5.0 → 0.6.0

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