guard-coffeescript 1.0.0 → 1.1.0

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.
@@ -11,12 +11,14 @@ module Guard
11
11
  # CoffeeScript files.
12
12
  #
13
13
  # @param [Array<String>] paths the changed paths
14
+ # @param [Hash] options the clean options
15
+ # @option options [String] :missing_ok don't remove missing files from list
14
16
  # @return [Array<String>] the valid spec files
15
17
  #
16
- def clean(paths)
18
+ def clean(paths, options = {})
17
19
  paths.uniq!
18
20
  paths.compact!
19
- paths.select { |p| coffee_file?(p) }
21
+ paths.select { |p| coffee_file?(p, options) }
20
22
  end
21
23
 
22
24
  private
@@ -24,10 +26,12 @@ module Guard
24
26
  # Tests if the file is valid.
25
27
  #
26
28
  # @param [String] file the file
29
+ # @param [Hash] options the clean options
30
+ # @option options [String] :missing_ok don't remove missing files from list
27
31
  # @return [Boolean] when the file valid
28
32
  #
29
- def coffee_file?(path)
30
- path =~ /.coffee$/ && File.exists?(path)
33
+ def coffee_file?(path, options)
34
+ path =~ /.coffee$/ && (options[:missing_ok] || File.exists?(path))
31
35
  end
32
36
 
33
37
  end
@@ -28,6 +28,36 @@ module Guard
28
28
  [changed_files, errors.empty?]
29
29
  end
30
30
 
31
+ # The remove function deals with CoffeeScript file removal by
32
+ # locating the output javascript file and removing it.
33
+ #
34
+ # @param [Array<String>] paths the spec files or directories
35
+ # @param [Array<Guard::Watcher>] watchers the Guard watchers in the block
36
+ # @param [Hash] options the options for the removal
37
+ # @option options [String] :output the output directory
38
+ # @option options [Boolean] :shallow do not create nested directories
39
+ #
40
+ def remove(files, watchers, options = { })
41
+ removed_files = []
42
+ directories = detect_nested_directories(watchers, files, options)
43
+
44
+ directories.each do |directory, scripts|
45
+ scripts.each do |file|
46
+ javascript = javascript_file_name(file, directory)
47
+ if File.exists?(javascript)
48
+ FileUtils.remove_file(javascript)
49
+ removed_files << javascript
50
+ end
51
+ end
52
+ end
53
+
54
+ if removed_files.length > 0
55
+ message = "Removed #{ removed_files.join(', ') }"
56
+ Formatter.success(message)
57
+ Formatter.notify(message, :title => 'CoffeeScript results')
58
+ end
59
+ end
60
+
31
61
  private
32
62
 
33
63
  # Generates a start compilation notification.
@@ -113,12 +143,22 @@ module Guard
113
143
  def write_javascript_file(content, file, directory, options)
114
144
  directory = Dir.pwd if !directory || directory.empty?
115
145
  FileUtils.mkdir_p(File.expand_path(directory)) if !File.directory?(directory) && !options[:noop]
116
- filename = File.join(directory, File.basename(file.gsub(/(js\.coffee|coffee)$/, 'js')))
146
+ filename = javascript_file_name(file, directory)
117
147
  File.open(File.expand_path(filename), 'w') { |f| f.write(content) } if !options[:noop]
118
148
 
119
149
  filename
120
150
  end
121
151
 
152
+ # Calculates the output filename from the coffescript filename and
153
+ # the output directory
154
+ #
155
+ # @param [string] file the CoffeeScript file name
156
+ # @param [String] directory the output directory
157
+ #
158
+ def javascript_file_name(file, directory)
159
+ File.join(directory, File.basename(file.gsub(/(js\.coffee|coffee)$/, 'js')))
160
+ end
161
+
122
162
  # Detects the output directory for each CoffeeScript file. Builds
123
163
  # the product of all watchers and assigns to each directory
124
164
  # the files to which it belongs to.
@@ -0,0 +1,2785 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 13
63
+ coffee_script
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 5
69
+ Guard
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 5
82
+ Guard
83
+ i
84
+ 29
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 1
91
+ 65
92
+ 49
93
+ 1
94
+ 3
95
+ 13
96
+ 99
97
+ 12
98
+ 7
99
+ 2
100
+ 12
101
+ 7
102
+ 3
103
+ 12
104
+ 65
105
+ 12
106
+ 49
107
+ 4
108
+ 4
109
+ 15
110
+ 49
111
+ 2
112
+ 0
113
+ 11
114
+ I
115
+ 6
116
+ I
117
+ 0
118
+ I
119
+ 0
120
+ I
121
+ 0
122
+ n
123
+ p
124
+ 5
125
+ x
126
+ 12
127
+ CoffeeScript
128
+ x
129
+ 10
130
+ open_class
131
+ x
132
+ 14
133
+ __class_init__
134
+ M
135
+ 1
136
+ n
137
+ n
138
+ x
139
+ 12
140
+ CoffeeScript
141
+ i
142
+ 28
143
+ 5
144
+ 66
145
+ 99
146
+ 7
147
+ 0
148
+ 65
149
+ 49
150
+ 1
151
+ 2
152
+ 13
153
+ 99
154
+ 12
155
+ 7
156
+ 2
157
+ 12
158
+ 7
159
+ 3
160
+ 12
161
+ 65
162
+ 12
163
+ 49
164
+ 4
165
+ 4
166
+ 15
167
+ 49
168
+ 2
169
+ 0
170
+ 11
171
+ I
172
+ 6
173
+ I
174
+ 0
175
+ I
176
+ 0
177
+ I
178
+ 0
179
+ n
180
+ p
181
+ 5
182
+ x
183
+ 6
184
+ Runner
185
+ x
186
+ 11
187
+ open_module
188
+ x
189
+ 15
190
+ __module_init__
191
+ M
192
+ 1
193
+ n
194
+ n
195
+ x
196
+ 6
197
+ Runner
198
+ i
199
+ 30
200
+ 5
201
+ 66
202
+ 5
203
+ 99
204
+ 43
205
+ 0
206
+ 12
207
+ 49
208
+ 1
209
+ 1
210
+ 13
211
+ 99
212
+ 12
213
+ 7
214
+ 2
215
+ 12
216
+ 7
217
+ 3
218
+ 12
219
+ 65
220
+ 12
221
+ 49
222
+ 4
223
+ 4
224
+ 15
225
+ 54
226
+ 50
227
+ 2
228
+ 0
229
+ 11
230
+ I
231
+ 6
232
+ I
233
+ 0
234
+ I
235
+ 0
236
+ I
237
+ 0
238
+ n
239
+ p
240
+ 5
241
+ x
242
+ 4
243
+ Type
244
+ x
245
+ 22
246
+ object_singleton_class
247
+ x
248
+ 18
249
+ __metaclass_init__
250
+ M
251
+ 1
252
+ n
253
+ n
254
+ x
255
+ 18
256
+ __metaclass_init__
257
+ i
258
+ 118
259
+ 5
260
+ 66
261
+ 99
262
+ 7
263
+ 0
264
+ 7
265
+ 1
266
+ 65
267
+ 67
268
+ 49
269
+ 2
270
+ 0
271
+ 49
272
+ 3
273
+ 4
274
+ 15
275
+ 5
276
+ 48
277
+ 4
278
+ 15
279
+ 99
280
+ 7
281
+ 5
282
+ 7
283
+ 6
284
+ 65
285
+ 67
286
+ 49
287
+ 2
288
+ 0
289
+ 49
290
+ 3
291
+ 4
292
+ 15
293
+ 99
294
+ 7
295
+ 7
296
+ 7
297
+ 8
298
+ 65
299
+ 67
300
+ 49
301
+ 2
302
+ 0
303
+ 49
304
+ 3
305
+ 4
306
+ 15
307
+ 99
308
+ 7
309
+ 9
310
+ 7
311
+ 10
312
+ 65
313
+ 67
314
+ 49
315
+ 2
316
+ 0
317
+ 49
318
+ 3
319
+ 4
320
+ 15
321
+ 99
322
+ 7
323
+ 11
324
+ 7
325
+ 12
326
+ 65
327
+ 67
328
+ 49
329
+ 2
330
+ 0
331
+ 49
332
+ 3
333
+ 4
334
+ 15
335
+ 99
336
+ 7
337
+ 13
338
+ 7
339
+ 14
340
+ 65
341
+ 67
342
+ 49
343
+ 2
344
+ 0
345
+ 49
346
+ 3
347
+ 4
348
+ 15
349
+ 99
350
+ 7
351
+ 15
352
+ 7
353
+ 16
354
+ 65
355
+ 67
356
+ 49
357
+ 2
358
+ 0
359
+ 49
360
+ 3
361
+ 4
362
+ 15
363
+ 99
364
+ 7
365
+ 17
366
+ 7
367
+ 18
368
+ 65
369
+ 67
370
+ 49
371
+ 2
372
+ 0
373
+ 49
374
+ 3
375
+ 4
376
+ 11
377
+ I
378
+ 5
379
+ I
380
+ 0
381
+ I
382
+ 0
383
+ I
384
+ 0
385
+ n
386
+ p
387
+ 19
388
+ x
389
+ 3
390
+ run
391
+ M
392
+ 1
393
+ n
394
+ n
395
+ x
396
+ 3
397
+ run
398
+ i
399
+ 130
400
+ 23
401
+ 2
402
+ 10
403
+ 14
404
+ 44
405
+ 43
406
+ 0
407
+ 78
408
+ 49
409
+ 1
410
+ 1
411
+ 19
412
+ 2
413
+ 15
414
+ 26
415
+ 93
416
+ 0
417
+ 15
418
+ 29
419
+ 78
420
+ 0
421
+ 5
422
+ 20
423
+ 0
424
+ 20
425
+ 2
426
+ 47
427
+ 49
428
+ 2
429
+ 2
430
+ 15
431
+ 5
432
+ 20
433
+ 0
434
+ 20
435
+ 1
436
+ 20
437
+ 2
438
+ 47
439
+ 49
440
+ 3
441
+ 3
442
+ 97
443
+ 37
444
+ 19
445
+ 3
446
+ 15
447
+ 37
448
+ 19
449
+ 4
450
+ 15
451
+ 15
452
+ 2
453
+ 15
454
+ 5
455
+ 20
456
+ 3
457
+ 20
458
+ 4
459
+ 20
460
+ 2
461
+ 47
462
+ 49
463
+ 4
464
+ 3
465
+ 15
466
+ 20
467
+ 3
468
+ 20
469
+ 4
470
+ 49
471
+ 5
472
+ 0
473
+ 35
474
+ 2
475
+ 30
476
+ 8
477
+ 126
478
+ 26
479
+ 93
480
+ 1
481
+ 15
482
+ 24
483
+ 13
484
+ 45
485
+ 6
486
+ 7
487
+ 43
488
+ 8
489
+ 12
490
+ 49
491
+ 9
492
+ 1
493
+ 10
494
+ 97
495
+ 8
496
+ 121
497
+ 15
498
+ 24
499
+ 19
500
+ 5
501
+ 15
502
+ 45
503
+ 10
504
+ 11
505
+ 7
506
+ 12
507
+ 64
508
+ 20
509
+ 5
510
+ 49
511
+ 13
512
+ 0
513
+ 81
514
+ 14
515
+ 49
516
+ 15
517
+ 1
518
+ 25
519
+ 8
520
+ 126
521
+ 15
522
+ 92
523
+ 1
524
+ 27
525
+ 34
526
+ 92
527
+ 0
528
+ 27
529
+ 11
530
+ I
531
+ c
532
+ I
533
+ 6
534
+ I
535
+ 2
536
+ I
537
+ 3
538
+ n
539
+ p
540
+ 16
541
+ x
542
+ 4
543
+ Hash
544
+ x
545
+ 16
546
+ new_from_literal
547
+ x
548
+ 12
549
+ notify_start
550
+ x
551
+ 13
552
+ compile_files
553
+ x
554
+ 13
555
+ notify_result
556
+ x
557
+ 6
558
+ empty?
559
+ x
560
+ 6
561
+ ExecJS
562
+ n
563
+ x
564
+ 12
565
+ RuntimeError
566
+ x
567
+ 3
568
+ ===
569
+ x
570
+ 9
571
+ Formatter
572
+ n
573
+ s
574
+ 21
575
+ ExecJS engine error:
576
+ x
577
+ 7
578
+ message
579
+ x
580
+ 1
581
+ +
582
+ x
583
+ 5
584
+ error
585
+ p
586
+ 23
587
+ I
588
+ -1
589
+ I
590
+ 17
591
+ I
592
+ e
593
+ I
594
+ 18
595
+ I
596
+ 1f
597
+ I
598
+ 19
599
+ I
600
+ 36
601
+ I
602
+ 1a
603
+ I
604
+ 42
605
+ I
606
+ 1c
607
+ I
608
+ 4e
609
+ I
610
+ 0
611
+ I
612
+ 53
613
+ I
614
+ 1e
615
+ I
616
+ 62
617
+ I
618
+ 20
619
+ I
620
+ 63
621
+ I
622
+ 1e
623
+ I
624
+ 66
625
+ I
626
+ 1f
627
+ I
628
+ 7e
629
+ I
630
+ 0
631
+ I
632
+ 82
633
+ x
634
+ 77
635
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
636
+ p
637
+ 6
638
+ x
639
+ 5
640
+ files
641
+ x
642
+ 8
643
+ watchers
644
+ x
645
+ 7
646
+ options
647
+ x
648
+ 13
649
+ changed_files
650
+ x
651
+ 6
652
+ errors
653
+ x
654
+ 1
655
+ e
656
+ x
657
+ 17
658
+ method_visibility
659
+ x
660
+ 15
661
+ add_defn_method
662
+ x
663
+ 7
664
+ private
665
+ x
666
+ 12
667
+ notify_start
668
+ M
669
+ 1
670
+ n
671
+ n
672
+ x
673
+ 12
674
+ notify_start
675
+ i
676
+ 65
677
+ 20
678
+ 1
679
+ 7
680
+ 0
681
+ 49
682
+ 1
683
+ 1
684
+ 13
685
+ 10
686
+ 38
687
+ 15
688
+ 20
689
+ 1
690
+ 7
691
+ 2
692
+ 49
693
+ 1
694
+ 1
695
+ 9
696
+ 25
697
+ 7
698
+ 3
699
+ 64
700
+ 8
701
+ 28
702
+ 7
703
+ 4
704
+ 64
705
+ 20
706
+ 0
707
+ 7
708
+ 5
709
+ 64
710
+ 49
711
+ 6
712
+ 1
713
+ 81
714
+ 7
715
+ 19
716
+ 2
717
+ 15
718
+ 45
719
+ 8
720
+ 9
721
+ 20
722
+ 2
723
+ 44
724
+ 43
725
+ 10
726
+ 79
727
+ 49
728
+ 11
729
+ 1
730
+ 13
731
+ 7
732
+ 12
733
+ 2
734
+ 49
735
+ 13
736
+ 2
737
+ 15
738
+ 49
739
+ 14
740
+ 2
741
+ 11
742
+ I
743
+ 9
744
+ I
745
+ 3
746
+ I
747
+ 2
748
+ I
749
+ 2
750
+ n
751
+ p
752
+ 15
753
+ x
754
+ 7
755
+ message
756
+ x
757
+ 2
758
+ []
759
+ x
760
+ 4
761
+ noop
762
+ s
763
+ 7
764
+ Verify
765
+ s
766
+ 8
767
+ Compile
768
+ s
769
+ 2
770
+ ,
771
+ x
772
+ 4
773
+ join
774
+ x
775
+ 1
776
+ +
777
+ x
778
+ 9
779
+ Formatter
780
+ n
781
+ x
782
+ 4
783
+ Hash
784
+ x
785
+ 16
786
+ new_from_literal
787
+ x
788
+ 5
789
+ reset
790
+ x
791
+ 3
792
+ []=
793
+ x
794
+ 4
795
+ info
796
+ p
797
+ 9
798
+ I
799
+ -1
800
+ I
801
+ 2a
802
+ I
803
+ 0
804
+ I
805
+ 2b
806
+ I
807
+ 1c
808
+ I
809
+ 2b
810
+ I
811
+ 29
812
+ I
813
+ 2c
814
+ I
815
+ 41
816
+ x
817
+ 77
818
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
819
+ p
820
+ 3
821
+ x
822
+ 5
823
+ files
824
+ x
825
+ 7
826
+ options
827
+ x
828
+ 7
829
+ message
830
+ x
831
+ 13
832
+ compile_files
833
+ M
834
+ 1
835
+ n
836
+ n
837
+ x
838
+ 13
839
+ compile_files
840
+ i
841
+ 42
842
+ 35
843
+ 0
844
+ 19
845
+ 3
846
+ 15
847
+ 35
848
+ 0
849
+ 19
850
+ 4
851
+ 15
852
+ 5
853
+ 20
854
+ 1
855
+ 20
856
+ 0
857
+ 20
858
+ 2
859
+ 47
860
+ 49
861
+ 0
862
+ 3
863
+ 19
864
+ 5
865
+ 15
866
+ 20
867
+ 5
868
+ 56
869
+ 1
870
+ 50
871
+ 2
872
+ 0
873
+ 15
874
+ 20
875
+ 4
876
+ 49
877
+ 3
878
+ 0
879
+ 20
880
+ 3
881
+ 35
882
+ 2
883
+ 11
884
+ I
885
+ a
886
+ I
887
+ 6
888
+ I
889
+ 3
890
+ I
891
+ 3
892
+ n
893
+ p
894
+ 4
895
+ x
896
+ 25
897
+ detect_nested_directories
898
+ M
899
+ 1
900
+ p
901
+ 2
902
+ x
903
+ 9
904
+ for_block
905
+ t
906
+ n
907
+ x
908
+ 13
909
+ compile_files
910
+ i
911
+ 18
912
+ 58
913
+ 37
914
+ 19
915
+ 0
916
+ 15
917
+ 37
918
+ 19
919
+ 1
920
+ 15
921
+ 15
922
+ 20
923
+ 1
924
+ 56
925
+ 0
926
+ 50
927
+ 1
928
+ 0
929
+ 11
930
+ I
931
+ 5
932
+ I
933
+ 2
934
+ I
935
+ 2
936
+ I
937
+ 2
938
+ n
939
+ p
940
+ 2
941
+ M
942
+ 1
943
+ p
944
+ 2
945
+ x
946
+ 9
947
+ for_block
948
+ t
949
+ n
950
+ x
951
+ 13
952
+ compile_files
953
+ i
954
+ 121
955
+ 57
956
+ 19
957
+ 0
958
+ 15
959
+ 26
960
+ 93
961
+ 0
962
+ 15
963
+ 29
964
+ 48
965
+ 0
966
+ 5
967
+ 20
968
+ 0
969
+ 21
970
+ 2
971
+ 2
972
+ 47
973
+ 49
974
+ 0
975
+ 2
976
+ 19
977
+ 1
978
+ 15
979
+ 21
980
+ 2
981
+ 4
982
+ 5
983
+ 20
984
+ 1
985
+ 20
986
+ 0
987
+ 21
988
+ 1
989
+ 0
990
+ 21
991
+ 2
992
+ 2
993
+ 47
994
+ 49
995
+ 1
996
+ 4
997
+ 49
998
+ 2
999
+ 1
1000
+ 30
1001
+ 8
1002
+ 117
1003
+ 26
1004
+ 93
1005
+ 1
1006
+ 15
1007
+ 24
1008
+ 13
1009
+ 45
1010
+ 3
1011
+ 4
1012
+ 43
1013
+ 5
1014
+ 12
1015
+ 49
1016
+ 6
1017
+ 1
1018
+ 10
1019
+ 67
1020
+ 8
1021
+ 112
1022
+ 15
1023
+ 24
1024
+ 19
1025
+ 2
1026
+ 15
1027
+ 20
1028
+ 0
1029
+ 7
1030
+ 7
1031
+ 64
1032
+ 81
1033
+ 8
1034
+ 20
1035
+ 2
1036
+ 49
1037
+ 9
1038
+ 0
1039
+ 49
1040
+ 10
1041
+ 0
1042
+ 81
1043
+ 8
1044
+ 19
1045
+ 3
1046
+ 15
1047
+ 21
1048
+ 2
1049
+ 3
1050
+ 20
1051
+ 3
1052
+ 49
1053
+ 2
1054
+ 1
1055
+ 15
1056
+ 45
1057
+ 11
1058
+ 12
1059
+ 20
1060
+ 3
1061
+ 49
1062
+ 13
1063
+ 1
1064
+ 25
1065
+ 8
1066
+ 117
1067
+ 15
1068
+ 92
1069
+ 1
1070
+ 27
1071
+ 34
1072
+ 92
1073
+ 0
1074
+ 27
1075
+ 11
1076
+ I
1077
+ d
1078
+ I
1079
+ 4
1080
+ I
1081
+ 1
1082
+ I
1083
+ 1
1084
+ n
1085
+ p
1086
+ 14
1087
+ x
1088
+ 7
1089
+ compile
1090
+ x
1091
+ 21
1092
+ write_javascript_file
1093
+ x
1094
+ 2
1095
+ <<
1096
+ x
1097
+ 6
1098
+ ExecJS
1099
+ n
1100
+ x
1101
+ 12
1102
+ ProgramError
1103
+ x
1104
+ 3
1105
+ ===
1106
+ s
1107
+ 2
1108
+ :
1109
+ x
1110
+ 1
1111
+ +
1112
+ x
1113
+ 7
1114
+ message
1115
+ x
1116
+ 4
1117
+ to_s
1118
+ x
1119
+ 9
1120
+ Formatter
1121
+ n
1122
+ x
1123
+ 5
1124
+ error
1125
+ p
1126
+ 23
1127
+ I
1128
+ 0
1129
+ I
1130
+ 3c
1131
+ I
1132
+ 4
1133
+ I
1134
+ 3e
1135
+ I
1136
+ 18
1137
+ I
1138
+ 3f
1139
+ I
1140
+ 30
1141
+ I
1142
+ 0
1143
+ I
1144
+ 35
1145
+ I
1146
+ 40
1147
+ I
1148
+ 44
1149
+ I
1150
+ 44
1151
+ I
1152
+ 45
1153
+ I
1154
+ 40
1155
+ I
1156
+ 48
1157
+ I
1158
+ 41
1159
+ I
1160
+ 5c
1161
+ I
1162
+ 42
1163
+ I
1164
+ 65
1165
+ I
1166
+ 43
1167
+ I
1168
+ 75
1169
+ I
1170
+ 0
1171
+ I
1172
+ 79
1173
+ x
1174
+ 77
1175
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
1176
+ p
1177
+ 4
1178
+ x
1179
+ 4
1180
+ file
1181
+ x
1182
+ 7
1183
+ content
1184
+ x
1185
+ 1
1186
+ e
1187
+ x
1188
+ 13
1189
+ error_message
1190
+ x
1191
+ 4
1192
+ each
1193
+ p
1194
+ 5
1195
+ I
1196
+ 0
1197
+ I
1198
+ 3b
1199
+ I
1200
+ a
1201
+ I
1202
+ 3c
1203
+ I
1204
+ 12
1205
+ x
1206
+ 77
1207
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
1208
+ p
1209
+ 2
1210
+ x
1211
+ 9
1212
+ directory
1213
+ x
1214
+ 7
1215
+ scripts
1216
+ x
1217
+ 4
1218
+ each
1219
+ x
1220
+ 7
1221
+ compact
1222
+ p
1223
+ 13
1224
+ I
1225
+ -1
1226
+ I
1227
+ 36
1228
+ I
1229
+ 0
1230
+ I
1231
+ 37
1232
+ I
1233
+ 5
1234
+ I
1235
+ 38
1236
+ I
1237
+ a
1238
+ I
1239
+ 39
1240
+ I
1241
+ 18
1242
+ I
1243
+ 3b
1244
+ I
1245
+ 20
1246
+ I
1247
+ 48
1248
+ I
1249
+ 2a
1250
+ x
1251
+ 77
1252
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
1253
+ p
1254
+ 6
1255
+ x
1256
+ 5
1257
+ files
1258
+ x
1259
+ 8
1260
+ watchers
1261
+ x
1262
+ 7
1263
+ options
1264
+ x
1265
+ 6
1266
+ errors
1267
+ x
1268
+ 13
1269
+ changed_files
1270
+ x
1271
+ 11
1272
+ directories
1273
+ x
1274
+ 7
1275
+ compile
1276
+ M
1277
+ 1
1278
+ n
1279
+ n
1280
+ x
1281
+ 7
1282
+ compile
1283
+ i
1284
+ 29
1285
+ 5
1286
+ 20
1287
+ 0
1288
+ 20
1289
+ 1
1290
+ 47
1291
+ 49
1292
+ 0
1293
+ 2
1294
+ 19
1295
+ 2
1296
+ 15
1297
+ 44
1298
+ 43
1299
+ 1
1300
+ 45
1301
+ 2
1302
+ 3
1303
+ 20
1304
+ 0
1305
+ 49
1306
+ 4
1307
+ 1
1308
+ 20
1309
+ 2
1310
+ 49
1311
+ 5
1312
+ 2
1313
+ 11
1314
+ I
1315
+ 6
1316
+ I
1317
+ 3
1318
+ I
1319
+ 2
1320
+ I
1321
+ 2
1322
+ n
1323
+ p
1324
+ 6
1325
+ x
1326
+ 16
1327
+ options_for_file
1328
+ x
1329
+ 12
1330
+ CoffeeScript
1331
+ x
1332
+ 4
1333
+ File
1334
+ n
1335
+ x
1336
+ 4
1337
+ read
1338
+ x
1339
+ 7
1340
+ compile
1341
+ p
1342
+ 7
1343
+ I
1344
+ -1
1345
+ I
1346
+ 50
1347
+ I
1348
+ 0
1349
+ I
1350
+ 51
1351
+ I
1352
+ c
1353
+ I
1354
+ 52
1355
+ I
1356
+ 1d
1357
+ x
1358
+ 77
1359
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
1360
+ p
1361
+ 3
1362
+ x
1363
+ 4
1364
+ file
1365
+ x
1366
+ 7
1367
+ options
1368
+ x
1369
+ 12
1370
+ file_options
1371
+ x
1372
+ 16
1373
+ options_for_file
1374
+ M
1375
+ 1
1376
+ n
1377
+ n
1378
+ x
1379
+ 16
1380
+ options_for_file
1381
+ i
1382
+ 82
1383
+ 20
1384
+ 1
1385
+ 7
1386
+ 0
1387
+ 49
1388
+ 1
1389
+ 1
1390
+ 7
1391
+ 2
1392
+ 49
1393
+ 3
1394
+ 1
1395
+ 9
1396
+ 17
1397
+ 1
1398
+ 8
1399
+ 20
1400
+ 20
1401
+ 1
1402
+ 11
1403
+ 15
1404
+ 20
1405
+ 1
1406
+ 49
1407
+ 4
1408
+ 0
1409
+ 19
1410
+ 2
1411
+ 15
1412
+ 20
1413
+ 0
1414
+ 7
1415
+ 5
1416
+ 13
1417
+ 70
1418
+ 9
1419
+ 49
1420
+ 15
1421
+ 44
1422
+ 43
1423
+ 6
1424
+ 7
1425
+ 7
1426
+ 78
1427
+ 49
1428
+ 8
1429
+ 2
1430
+ 6
1431
+ 5
1432
+ 49
1433
+ 1
1434
+ 1
1435
+ 19
1436
+ 3
1437
+ 15
1438
+ 20
1439
+ 2
1440
+ 7
1441
+ 0
1442
+ 20
1443
+ 2
1444
+ 7
1445
+ 0
1446
+ 49
1447
+ 1
1448
+ 1
1449
+ 20
1450
+ 3
1451
+ 49
1452
+ 2
1453
+ 1
1454
+ 13
1455
+ 18
1456
+ 3
1457
+ 49
1458
+ 9
1459
+ 2
1460
+ 15
1461
+ 15
1462
+ 20
1463
+ 2
1464
+ 11
1465
+ I
1466
+ 8
1467
+ I
1468
+ 4
1469
+ I
1470
+ 2
1471
+ I
1472
+ 2
1473
+ n
1474
+ p
1475
+ 10
1476
+ x
1477
+ 4
1478
+ bare
1479
+ x
1480
+ 2
1481
+ []
1482
+ x
1483
+ 8
1484
+ include?
1485
+ x
1486
+ 11
1487
+ respond_to?
1488
+ x
1489
+ 5
1490
+ clone
1491
+ n
1492
+ x
1493
+ 6
1494
+ Regexp
1495
+ s
1496
+ 16
1497
+ ([^\/]*)\.coffee
1498
+ x
1499
+ 3
1500
+ new
1501
+ x
1502
+ 3
1503
+ []=
1504
+ p
1505
+ 15
1506
+ I
1507
+ -1
1508
+ I
1509
+ 5b
1510
+ I
1511
+ 0
1512
+ I
1513
+ 5c
1514
+ I
1515
+ 14
1516
+ I
1517
+ 0
1518
+ I
1519
+ 15
1520
+ I
1521
+ 5e
1522
+ I
1523
+ 1d
1524
+ I
1525
+ 5f
1526
+ I
1527
+ 37
1528
+ I
1529
+ 60
1530
+ I
1531
+ 4f
1532
+ I
1533
+ 62
1534
+ I
1535
+ 52
1536
+ x
1537
+ 77
1538
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
1539
+ p
1540
+ 4
1541
+ x
1542
+ 4
1543
+ file
1544
+ x
1545
+ 7
1546
+ options
1547
+ x
1548
+ 12
1549
+ file_options
1550
+ x
1551
+ 8
1552
+ filename
1553
+ x
1554
+ 21
1555
+ write_javascript_file
1556
+ M
1557
+ 1
1558
+ n
1559
+ n
1560
+ x
1561
+ 21
1562
+ write_javascript_file
1563
+ i
1564
+ 160
1565
+ 20
1566
+ 2
1567
+ 10
1568
+ 7
1569
+ 2
1570
+ 8
1571
+ 8
1572
+ 3
1573
+ 13
1574
+ 10
1575
+ 17
1576
+ 15
1577
+ 20
1578
+ 2
1579
+ 49
1580
+ 0
1581
+ 0
1582
+ 9
1583
+ 29
1584
+ 45
1585
+ 1
1586
+ 2
1587
+ 49
1588
+ 3
1589
+ 0
1590
+ 19
1591
+ 2
1592
+ 8
1593
+ 30
1594
+ 1
1595
+ 15
1596
+ 45
1597
+ 4
1598
+ 5
1599
+ 20
1600
+ 2
1601
+ 49
1602
+ 6
1603
+ 1
1604
+ 10
1605
+ 44
1606
+ 2
1607
+ 8
1608
+ 45
1609
+ 3
1610
+ 13
1611
+ 9
1612
+ 62
1613
+ 15
1614
+ 20
1615
+ 3
1616
+ 7
1617
+ 7
1618
+ 49
1619
+ 8
1620
+ 1
1621
+ 10
1622
+ 61
1623
+ 2
1624
+ 8
1625
+ 62
1626
+ 3
1627
+ 9
1628
+ 80
1629
+ 45
1630
+ 9
1631
+ 10
1632
+ 45
1633
+ 4
1634
+ 11
1635
+ 20
1636
+ 2
1637
+ 49
1638
+ 12
1639
+ 1
1640
+ 49
1641
+ 13
1642
+ 1
1643
+ 8
1644
+ 81
1645
+ 1
1646
+ 15
1647
+ 45
1648
+ 4
1649
+ 14
1650
+ 20
1651
+ 2
1652
+ 45
1653
+ 4
1654
+ 15
1655
+ 20
1656
+ 1
1657
+ 7
1658
+ 16
1659
+ 13
1660
+ 70
1661
+ 9
1662
+ 110
1663
+ 15
1664
+ 44
1665
+ 43
1666
+ 17
1667
+ 7
1668
+ 18
1669
+ 78
1670
+ 49
1671
+ 19
1672
+ 2
1673
+ 6
1674
+ 16
1675
+ 7
1676
+ 20
1677
+ 64
1678
+ 49
1679
+ 21
1680
+ 2
1681
+ 49
1682
+ 22
1683
+ 1
1684
+ 49
1685
+ 23
1686
+ 2
1687
+ 19
1688
+ 4
1689
+ 15
1690
+ 20
1691
+ 3
1692
+ 7
1693
+ 7
1694
+ 49
1695
+ 8
1696
+ 1
1697
+ 9
1698
+ 137
1699
+ 1
1700
+ 8
1701
+ 156
1702
+ 45
1703
+ 4
1704
+ 24
1705
+ 45
1706
+ 4
1707
+ 25
1708
+ 20
1709
+ 4
1710
+ 49
1711
+ 12
1712
+ 1
1713
+ 7
1714
+ 26
1715
+ 64
1716
+ 56
1717
+ 27
1718
+ 50
1719
+ 28
1720
+ 2
1721
+ 15
1722
+ 20
1723
+ 4
1724
+ 11
1725
+ I
1726
+ c
1727
+ I
1728
+ 5
1729
+ I
1730
+ 4
1731
+ I
1732
+ 4
1733
+ n
1734
+ p
1735
+ 29
1736
+ x
1737
+ 6
1738
+ empty?
1739
+ x
1740
+ 3
1741
+ Dir
1742
+ n
1743
+ x
1744
+ 3
1745
+ pwd
1746
+ x
1747
+ 4
1748
+ File
1749
+ n
1750
+ x
1751
+ 10
1752
+ directory?
1753
+ x
1754
+ 4
1755
+ noop
1756
+ x
1757
+ 2
1758
+ []
1759
+ x
1760
+ 9
1761
+ FileUtils
1762
+ n
1763
+ n
1764
+ x
1765
+ 11
1766
+ expand_path
1767
+ x
1768
+ 7
1769
+ mkdir_p
1770
+ n
1771
+ n
1772
+ n
1773
+ x
1774
+ 6
1775
+ Regexp
1776
+ s
1777
+ 20
1778
+ (js\.coffee|coffee)$
1779
+ x
1780
+ 3
1781
+ new
1782
+ s
1783
+ 2
1784
+ js
1785
+ x
1786
+ 4
1787
+ gsub
1788
+ x
1789
+ 8
1790
+ basename
1791
+ x
1792
+ 4
1793
+ join
1794
+ n
1795
+ n
1796
+ s
1797
+ 1
1798
+ w
1799
+ M
1800
+ 1
1801
+ p
1802
+ 2
1803
+ x
1804
+ 9
1805
+ for_block
1806
+ t
1807
+ n
1808
+ x
1809
+ 21
1810
+ write_javascript_file
1811
+ i
1812
+ 13
1813
+ 57
1814
+ 19
1815
+ 0
1816
+ 15
1817
+ 20
1818
+ 0
1819
+ 21
1820
+ 1
1821
+ 0
1822
+ 49
1823
+ 0
1824
+ 1
1825
+ 11
1826
+ I
1827
+ 4
1828
+ I
1829
+ 1
1830
+ I
1831
+ 1
1832
+ I
1833
+ 1
1834
+ n
1835
+ p
1836
+ 1
1837
+ x
1838
+ 5
1839
+ write
1840
+ p
1841
+ 3
1842
+ I
1843
+ 0
1844
+ I
1845
+ 72
1846
+ I
1847
+ d
1848
+ x
1849
+ 77
1850
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
1851
+ p
1852
+ 1
1853
+ x
1854
+ 1
1855
+ f
1856
+ x
1857
+ 4
1858
+ open
1859
+ p
1860
+ 19
1861
+ I
1862
+ -1
1863
+ I
1864
+ 6e
1865
+ I
1866
+ 0
1867
+ I
1868
+ 6f
1869
+ I
1870
+ 1e
1871
+ I
1872
+ 0
1873
+ I
1874
+ 1f
1875
+ I
1876
+ 70
1877
+ I
1878
+ 51
1879
+ I
1880
+ 0
1881
+ I
1882
+ 52
1883
+ I
1884
+ 71
1885
+ I
1886
+ 7d
1887
+ I
1888
+ 72
1889
+ I
1890
+ 9c
1891
+ I
1892
+ 0
1893
+ I
1894
+ 9d
1895
+ I
1896
+ 74
1897
+ I
1898
+ a0
1899
+ x
1900
+ 77
1901
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
1902
+ p
1903
+ 5
1904
+ x
1905
+ 7
1906
+ content
1907
+ x
1908
+ 4
1909
+ file
1910
+ x
1911
+ 9
1912
+ directory
1913
+ x
1914
+ 7
1915
+ options
1916
+ x
1917
+ 8
1918
+ filename
1919
+ x
1920
+ 25
1921
+ detect_nested_directories
1922
+ M
1923
+ 1
1924
+ n
1925
+ n
1926
+ x
1927
+ 25
1928
+ detect_nested_directories
1929
+ i
1930
+ 61
1931
+ 20
1932
+ 2
1933
+ 7
1934
+ 0
1935
+ 49
1936
+ 1
1937
+ 1
1938
+ 9
1939
+ 33
1940
+ 44
1941
+ 43
1942
+ 2
1943
+ 79
1944
+ 49
1945
+ 3
1946
+ 1
1947
+ 13
1948
+ 20
1949
+ 2
1950
+ 7
1951
+ 4
1952
+ 49
1953
+ 1
1954
+ 1
1955
+ 20
1956
+ 1
1957
+ 49
1958
+ 5
1959
+ 2
1960
+ 15
1961
+ 11
1962
+ 8
1963
+ 34
1964
+ 1
1965
+ 15
1966
+ 44
1967
+ 43
1968
+ 2
1969
+ 78
1970
+ 49
1971
+ 3
1972
+ 1
1973
+ 19
1974
+ 3
1975
+ 15
1976
+ 20
1977
+ 0
1978
+ 20
1979
+ 1
1980
+ 49
1981
+ 6
1982
+ 1
1983
+ 56
1984
+ 7
1985
+ 50
1986
+ 8
1987
+ 0
1988
+ 15
1989
+ 20
1990
+ 3
1991
+ 11
1992
+ I
1993
+ 8
1994
+ I
1995
+ 4
1996
+ I
1997
+ 3
1998
+ I
1999
+ 3
2000
+ n
2001
+ p
2002
+ 9
2003
+ x
2004
+ 7
2005
+ shallow
2006
+ x
2007
+ 2
2008
+ []
2009
+ x
2010
+ 4
2011
+ Hash
2012
+ x
2013
+ 16
2014
+ new_from_literal
2015
+ x
2016
+ 6
2017
+ output
2018
+ x
2019
+ 3
2020
+ []=
2021
+ x
2022
+ 7
2023
+ product
2024
+ M
2025
+ 1
2026
+ p
2027
+ 2
2028
+ x
2029
+ 9
2030
+ for_block
2031
+ t
2032
+ n
2033
+ x
2034
+ 25
2035
+ detect_nested_directories
2036
+ i
2037
+ 140
2038
+ 58
2039
+ 37
2040
+ 19
2041
+ 0
2042
+ 15
2043
+ 37
2044
+ 19
2045
+ 1
2046
+ 15
2047
+ 15
2048
+ 20
2049
+ 1
2050
+ 20
2051
+ 0
2052
+ 49
2053
+ 0
2054
+ 0
2055
+ 49
2056
+ 1
2057
+ 1
2058
+ 19
2059
+ 2
2060
+ 9
2061
+ 138
2062
+ 20
2063
+ 2
2064
+ 79
2065
+ 49
2066
+ 2
2067
+ 1
2068
+ 9
2069
+ 84
2070
+ 45
2071
+ 3
2072
+ 4
2073
+ 21
2074
+ 1
2075
+ 2
2076
+ 7
2077
+ 5
2078
+ 49
2079
+ 2
2080
+ 1
2081
+ 45
2082
+ 3
2083
+ 6
2084
+ 20
2085
+ 2
2086
+ 79
2087
+ 49
2088
+ 2
2089
+ 1
2090
+ 49
2091
+ 7
2092
+ 1
2093
+ 49
2094
+ 8
2095
+ 2
2096
+ 7
2097
+ 9
2098
+ 13
2099
+ 70
2100
+ 9
2101
+ 76
2102
+ 15
2103
+ 44
2104
+ 43
2105
+ 10
2106
+ 7
2107
+ 11
2108
+ 78
2109
+ 49
2110
+ 12
2111
+ 2
2112
+ 6
2113
+ 9
2114
+ 7
2115
+ 13
2116
+ 64
2117
+ 49
2118
+ 14
2119
+ 2
2120
+ 8
2121
+ 92
2122
+ 21
2123
+ 1
2124
+ 2
2125
+ 7
2126
+ 5
2127
+ 49
2128
+ 2
2129
+ 1
2130
+ 19
2131
+ 3
2132
+ 15
2133
+ 21
2134
+ 1
2135
+ 3
2136
+ 20
2137
+ 3
2138
+ 49
2139
+ 2
2140
+ 1
2141
+ 9
2142
+ 120
2143
+ 21
2144
+ 1
2145
+ 3
2146
+ 20
2147
+ 3
2148
+ 49
2149
+ 2
2150
+ 1
2151
+ 20
2152
+ 1
2153
+ 49
2154
+ 15
2155
+ 1
2156
+ 8
2157
+ 136
2158
+ 21
2159
+ 1
2160
+ 3
2161
+ 20
2162
+ 3
2163
+ 20
2164
+ 1
2165
+ 35
2166
+ 1
2167
+ 13
2168
+ 18
2169
+ 3
2170
+ 49
2171
+ 16
2172
+ 2
2173
+ 15
2174
+ 8
2175
+ 139
2176
+ 1
2177
+ 11
2178
+ I
2179
+ a
2180
+ I
2181
+ 4
2182
+ I
2183
+ 2
2184
+ I
2185
+ 2
2186
+ n
2187
+ p
2188
+ 17
2189
+ x
2190
+ 7
2191
+ pattern
2192
+ x
2193
+ 5
2194
+ match
2195
+ x
2196
+ 2
2197
+ []
2198
+ x
2199
+ 4
2200
+ File
2201
+ n
2202
+ x
2203
+ 6
2204
+ output
2205
+ n
2206
+ x
2207
+ 7
2208
+ dirname
2209
+ x
2210
+ 4
2211
+ join
2212
+ n
2213
+ x
2214
+ 6
2215
+ Regexp
2216
+ s
2217
+ 5
2218
+ \/\.$
2219
+ x
2220
+ 3
2221
+ new
2222
+ s
2223
+ 0
2224
+
2225
+ x
2226
+ 4
2227
+ gsub
2228
+ x
2229
+ 2
2230
+ <<
2231
+ x
2232
+ 3
2233
+ []=
2234
+ p
2235
+ 21
2236
+ I
2237
+ 0
2238
+ I
2239
+ 86
2240
+ I
2241
+ a
2242
+ I
2243
+ 87
2244
+ I
2245
+ 18
2246
+ I
2247
+ 88
2248
+ I
2249
+ 5c
2250
+ I
2251
+ 88
2252
+ I
2253
+ 5f
2254
+ I
2255
+ 89
2256
+ I
2257
+ 69
2258
+ I
2259
+ 8a
2260
+ I
2261
+ 78
2262
+ I
2263
+ 8c
2264
+ I
2265
+ 88
2266
+ I
2267
+ 0
2268
+ I
2269
+ 8a
2270
+ I
2271
+ 87
2272
+ I
2273
+ 8b
2274
+ I
2275
+ 0
2276
+ I
2277
+ 8c
2278
+ x
2279
+ 77
2280
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
2281
+ p
2282
+ 4
2283
+ x
2284
+ 7
2285
+ watcher
2286
+ x
2287
+ 4
2288
+ file
2289
+ x
2290
+ 7
2291
+ matches
2292
+ x
2293
+ 6
2294
+ target
2295
+ x
2296
+ 4
2297
+ each
2298
+ p
2299
+ 13
2300
+ I
2301
+ -1
2302
+ I
2303
+ 81
2304
+ I
2305
+ 0
2306
+ I
2307
+ 82
2308
+ I
2309
+ 22
2310
+ I
2311
+ 0
2312
+ I
2313
+ 23
2314
+ I
2315
+ 84
2316
+ I
2317
+ 2d
2318
+ I
2319
+ 86
2320
+ I
2321
+ 3a
2322
+ I
2323
+ 91
2324
+ I
2325
+ 3d
2326
+ x
2327
+ 77
2328
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
2329
+ p
2330
+ 4
2331
+ x
2332
+ 8
2333
+ watchers
2334
+ x
2335
+ 5
2336
+ files
2337
+ x
2338
+ 7
2339
+ options
2340
+ x
2341
+ 11
2342
+ directories
2343
+ x
2344
+ 13
2345
+ notify_result
2346
+ M
2347
+ 1
2348
+ n
2349
+ n
2350
+ x
2351
+ 13
2352
+ notify_result
2353
+ i
2354
+ 165
2355
+ 23
2356
+ 2
2357
+ 10
2358
+ 14
2359
+ 44
2360
+ 43
2361
+ 0
2362
+ 78
2363
+ 49
2364
+ 1
2365
+ 1
2366
+ 19
2367
+ 2
2368
+ 15
2369
+ 20
2370
+ 1
2371
+ 49
2372
+ 2
2373
+ 0
2374
+ 9
2375
+ 115
2376
+ 20
2377
+ 2
2378
+ 7
2379
+ 3
2380
+ 49
2381
+ 4
2382
+ 1
2383
+ 10
2384
+ 33
2385
+ 2
2386
+ 8
2387
+ 34
2388
+ 3
2389
+ 9
2390
+ 112
2391
+ 7
2392
+ 5
2393
+ 20
2394
+ 2
2395
+ 7
2396
+ 6
2397
+ 49
2398
+ 4
2399
+ 1
2400
+ 9
2401
+ 52
2402
+ 7
2403
+ 7
2404
+ 64
2405
+ 8
2406
+ 55
2407
+ 7
2408
+ 8
2409
+ 64
2410
+ 47
2411
+ 101
2412
+ 9
2413
+ 7
2414
+ 10
2415
+ 20
2416
+ 0
2417
+ 7
2418
+ 11
2419
+ 64
2420
+ 49
2421
+ 12
2422
+ 1
2423
+ 47
2424
+ 101
2425
+ 9
2426
+ 63
2427
+ 4
2428
+ 19
2429
+ 3
2430
+ 15
2431
+ 45
2432
+ 13
2433
+ 14
2434
+ 20
2435
+ 3
2436
+ 49
2437
+ 15
2438
+ 1
2439
+ 15
2440
+ 45
2441
+ 13
2442
+ 16
2443
+ 20
2444
+ 3
2445
+ 44
2446
+ 43
2447
+ 0
2448
+ 79
2449
+ 49
2450
+ 1
2451
+ 1
2452
+ 13
2453
+ 7
2454
+ 17
2455
+ 7
2456
+ 18
2457
+ 64
2458
+ 49
2459
+ 19
2460
+ 2
2461
+ 15
2462
+ 49
2463
+ 20
2464
+ 2
2465
+ 8
2466
+ 113
2467
+ 1
2468
+ 8
2469
+ 164
2470
+ 45
2471
+ 13
2472
+ 21
2473
+ 20
2474
+ 1
2475
+ 7
2476
+ 22
2477
+ 64
2478
+ 49
2479
+ 12
2480
+ 1
2481
+ 44
2482
+ 43
2483
+ 0
2484
+ 4
2485
+ 3
2486
+ 49
2487
+ 1
2488
+ 1
2489
+ 13
2490
+ 7
2491
+ 17
2492
+ 7
2493
+ 18
2494
+ 64
2495
+ 49
2496
+ 19
2497
+ 2
2498
+ 15
2499
+ 13
2500
+ 7
2501
+ 23
2502
+ 7
2503
+ 24
2504
+ 49
2505
+ 19
2506
+ 2
2507
+ 15
2508
+ 13
2509
+ 7
2510
+ 25
2511
+ 80
2512
+ 49
2513
+ 19
2514
+ 2
2515
+ 15
2516
+ 49
2517
+ 20
2518
+ 2
2519
+ 11
2520
+ I
2521
+ a
2522
+ I
2523
+ 4
2524
+ I
2525
+ 2
2526
+ I
2527
+ 3
2528
+ n
2529
+ p
2530
+ 26
2531
+ x
2532
+ 4
2533
+ Hash
2534
+ x
2535
+ 16
2536
+ new_from_literal
2537
+ x
2538
+ 6
2539
+ empty?
2540
+ x
2541
+ 12
2542
+ hide_success
2543
+ x
2544
+ 2
2545
+ []
2546
+ s
2547
+ 13
2548
+ Successfully
2549
+ x
2550
+ 4
2551
+ noop
2552
+ s
2553
+ 8
2554
+ verified
2555
+ s
2556
+ 9
2557
+ generated
2558
+ x
2559
+ 4
2560
+ to_s
2561
+ s
2562
+ 1
2563
+
2564
+ s
2565
+ 2
2566
+ ,
2567
+ x
2568
+ 4
2569
+ join
2570
+ x
2571
+ 9
2572
+ Formatter
2573
+ n
2574
+ x
2575
+ 7
2576
+ success
2577
+ n
2578
+ x
2579
+ 5
2580
+ title
2581
+ s
2582
+ 20
2583
+ CoffeeScript results
2584
+ x
2585
+ 3
2586
+ []=
2587
+ x
2588
+ 6
2589
+ notify
2590
+ n
2591
+ s
2592
+ 1
2593
+
2594
+
2595
+ x
2596
+ 5
2597
+ image
2598
+ x
2599
+ 6
2600
+ failed
2601
+ x
2602
+ 8
2603
+ priority
2604
+ p
2605
+ 25
2606
+ I
2607
+ -1
2608
+ I
2609
+ 9c
2610
+ I
2611
+ e
2612
+ I
2613
+ 9d
2614
+ I
2615
+ 15
2616
+ I
2617
+ 9f
2618
+ I
2619
+ 24
2620
+ I
2621
+ a0
2622
+ I
2623
+ 37
2624
+ I
2625
+ 0
2626
+ I
2627
+ 3c
2628
+ I
2629
+ a0
2630
+ I
2631
+ 4c
2632
+ I
2633
+ a1
2634
+ I
2635
+ 55
2636
+ I
2637
+ a2
2638
+ I
2639
+ 70
2640
+ I
2641
+ 9f
2642
+ I
2643
+ 71
2644
+ I
2645
+ 0
2646
+ I
2647
+ 73
2648
+ I
2649
+ 9e
2650
+ I
2651
+ a4
2652
+ I
2653
+ 0
2654
+ I
2655
+ a5
2656
+ x
2657
+ 77
2658
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
2659
+ p
2660
+ 4
2661
+ x
2662
+ 13
2663
+ changed_files
2664
+ x
2665
+ 6
2666
+ errors
2667
+ x
2668
+ 7
2669
+ options
2670
+ x
2671
+ 7
2672
+ message
2673
+ p
2674
+ 19
2675
+ I
2676
+ 2
2677
+ I
2678
+ 17
2679
+ I
2680
+ 10
2681
+ I
2682
+ 22
2683
+ I
2684
+ 14
2685
+ I
2686
+ 2a
2687
+ I
2688
+ 22
2689
+ I
2690
+ 36
2691
+ I
2692
+ 30
2693
+ I
2694
+ 50
2695
+ I
2696
+ 3e
2697
+ I
2698
+ 5b
2699
+ I
2700
+ 4c
2701
+ I
2702
+ 6e
2703
+ I
2704
+ 5a
2705
+ I
2706
+ 81
2707
+ I
2708
+ 68
2709
+ I
2710
+ 9c
2711
+ I
2712
+ 76
2713
+ x
2714
+ 77
2715
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
2716
+ p
2717
+ 0
2718
+ x
2719
+ 13
2720
+ attach_method
2721
+ p
2722
+ 3
2723
+ I
2724
+ 2
2725
+ I
2726
+ 6
2727
+ I
2728
+ 1e
2729
+ x
2730
+ 77
2731
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
2732
+ p
2733
+ 0
2734
+ x
2735
+ 13
2736
+ attach_method
2737
+ p
2738
+ 3
2739
+ I
2740
+ 2
2741
+ I
2742
+ 5
2743
+ I
2744
+ 1c
2745
+ x
2746
+ 77
2747
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
2748
+ p
2749
+ 0
2750
+ x
2751
+ 13
2752
+ attach_method
2753
+ p
2754
+ 3
2755
+ I
2756
+ 2
2757
+ I
2758
+ 4
2759
+ I
2760
+ 1d
2761
+ x
2762
+ 77
2763
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
2764
+ p
2765
+ 0
2766
+ x
2767
+ 13
2768
+ attach_method
2769
+ p
2770
+ 5
2771
+ I
2772
+ 0
2773
+ I
2774
+ 1
2775
+ I
2776
+ 9
2777
+ I
2778
+ 3
2779
+ I
2780
+ 25
2781
+ x
2782
+ 77
2783
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript/runner.rb
2784
+ p
2785
+ 0