guard-coffeescript 0.4.2 → 0.5.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.
data/README.md CHANGED
@@ -159,6 +159,9 @@ There following options can be passed to Guard::CoffeeScript:
159
159
  :hide_success => true # Disable successful compilation messages.
160
160
  # default: false
161
161
 
162
+ :all_on_start => true # Regenerate all files on startup
163
+ # default: false
164
+
162
165
  ### Output short notation
163
166
 
164
167
  In addition to the standard configuration, this Guard has a short notation for configure projects with a single input
@@ -255,13 +258,14 @@ For questions please join us on our [Google group](http://groups.google.com/grou
255
258
 
256
259
  * [Aaron Jensen](https://github.com/aaronjensen)
257
260
  * [Andrew Assarattanakul](https://github.com/vizjerai)
261
+ * [Elijah Miller](https://github.com/jqr)
258
262
  * [Jeremy Raines](https://github.com/jraines)
259
263
  * [Patrick Ewing](https://github.com/hoverbird)
260
264
 
261
265
  ## Acknowledgment
262
266
 
263
- [Jeremy Ashkenas][] for [CoffeeScript][], that little language that compiles into JavaScript and makes me enjoy the
264
- frontend.
267
+ [Jeremy Ashkenas](http://twitter.com/#!/jashkenas) for [CoffeeScript](http://jashkenas.github.com/coffee-script/),
268
+ that little language that compiles into JavaScript and makes me enjoy the frontend.
265
269
 
266
270
  The [Guard Team](https://github.com/guard/guard/contributors) for giving us such a nice piece of software
267
271
  that is so easy to extend, one *has* to make a plugin for it!
@@ -13,6 +13,14 @@ module Guard
13
13
  autoload :Inspector, 'guard/coffeescript/inspector'
14
14
  autoload :Runner, 'guard/coffeescript/runner'
15
15
 
16
+ DEFAULT_OPTIONS = {
17
+ :bare => false,
18
+ :shallow => false,
19
+ :hide_success => false,
20
+ :noop => false,
21
+ :all_on_start => false
22
+ }
23
+
16
24
  # Initialize Guard::CoffeeScript.
17
25
  #
18
26
  # @param [Array<Guard::Watcher>] watchers the watchers in the Guard block
@@ -22,16 +30,12 @@ module Guard
22
30
  # @option options [Boolean] :bare do not wrap the output in a top level function
23
31
  # @option options [Boolean] :shallow do not create nested directories
24
32
  # @option options [Boolean] :hide_success hide success message notification
33
+ # @option options [Boolean] :all_on_start generate all JavaScripts files on start
25
34
  # @option options [Boolean] :noop do not generate an output file
26
35
  #
27
- def initialize(watchers = [], options = { })
36
+ def initialize(watchers = [], options = {})
28
37
  watchers = [] if !watchers
29
- defaults = {
30
- :bare => false,
31
- :shallow => false,
32
- :hide_success => false,
33
- :noop => false
34
- }
38
+ defaults = DEFAULT_OPTIONS.clone
35
39
 
36
40
  if options[:input]
37
41
  defaults.merge!({ :output => options[:input] })
@@ -41,9 +45,17 @@ module Guard
41
45
  super(watchers, defaults.merge(options))
42
46
  end
43
47
 
44
- # Gets called when all specs should be run.
48
+ # Gets called once when Guard starts.
49
+ #
50
+ # @raise [:task_has_failed] when stop has failed
51
+ #
52
+ def start
53
+ run_all if options[:all_on_start]
54
+ end
55
+
56
+ # Gets called when all files should be regenerated.
45
57
  #
46
- # @return [Boolean] when running all specs was successful
58
+ # @raise [:task_has_failed] when stop has failed
47
59
  #
48
60
  def run_all
49
61
  run_on_change(Watcher.match_files(self, Dir.glob(File.join('**', '*.coffee'))))
@@ -52,13 +64,25 @@ module Guard
52
64
  # Gets called when watched paths and files have changes.
53
65
  #
54
66
  # @param [Array<String>] paths the changed paths and files
55
- # @return [Boolean] when running the changed specs was successful
67
+ # @raise [:task_has_failed] when stop has failed
56
68
  #
57
69
  def run_on_change(paths)
58
70
  changed_files, success = Runner.run(Inspector.clean(paths), watchers, options)
59
71
  notify changed_files
60
72
 
61
- success
73
+ throw :task_has_failed unless success
74
+ end
75
+
76
+ # Called on file(s) deletions that the Guard watches.
77
+ #
78
+ # @param [Array<String>] paths the deleted files or paths
79
+ # @raise [:task_has_failed] when run_on_change has failed
80
+ #
81
+ def run_on_deletion(paths)
82
+ Inspector.clean(paths).each do |file|
83
+ javascript = file.gsub(/(js\.coffee|coffee)$/, 'js')
84
+ File.remove(javascript) if File.exists?(javascript)
85
+ end
62
86
  end
63
87
 
64
88
  private
@@ -0,0 +1,1555 @@
1
+ !RBIX
2
+ 16846133056282117387
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 55
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
+ 99
41
+ 7
42
+ 4
43
+ 65
44
+ 49
45
+ 5
46
+ 2
47
+ 13
48
+ 99
49
+ 12
50
+ 7
51
+ 6
52
+ 12
53
+ 7
54
+ 7
55
+ 12
56
+ 65
57
+ 12
58
+ 49
59
+ 8
60
+ 4
61
+ 15
62
+ 49
63
+ 6
64
+ 0
65
+ 15
66
+ 2
67
+ 11
68
+ I
69
+ 6
70
+ I
71
+ 0
72
+ I
73
+ 0
74
+ I
75
+ 0
76
+ n
77
+ p
78
+ 9
79
+ s
80
+ 5
81
+ guard
82
+ x
83
+ 7
84
+ require
85
+ s
86
+ 11
87
+ guard/guard
88
+ s
89
+ 13
90
+ guard/watcher
91
+ x
92
+ 5
93
+ Guard
94
+ x
95
+ 11
96
+ open_module
97
+ x
98
+ 15
99
+ __module_init__
100
+ M
101
+ 1
102
+ n
103
+ n
104
+ x
105
+ 5
106
+ Guard
107
+ i
108
+ 31
109
+ 5
110
+ 66
111
+ 99
112
+ 7
113
+ 0
114
+ 45
115
+ 1
116
+ 2
117
+ 65
118
+ 49
119
+ 3
120
+ 3
121
+ 13
122
+ 99
123
+ 12
124
+ 7
125
+ 4
126
+ 12
127
+ 7
128
+ 5
129
+ 12
130
+ 65
131
+ 12
132
+ 49
133
+ 6
134
+ 4
135
+ 15
136
+ 49
137
+ 4
138
+ 0
139
+ 11
140
+ I
141
+ 6
142
+ I
143
+ 0
144
+ I
145
+ 0
146
+ I
147
+ 0
148
+ n
149
+ p
150
+ 7
151
+ x
152
+ 12
153
+ CoffeeScript
154
+ x
155
+ 5
156
+ Guard
157
+ n
158
+ x
159
+ 10
160
+ open_class
161
+ x
162
+ 14
163
+ __class_init__
164
+ M
165
+ 1
166
+ n
167
+ n
168
+ x
169
+ 12
170
+ CoffeeScript
171
+ i
172
+ 178
173
+ 5
174
+ 66
175
+ 5
176
+ 7
177
+ 0
178
+ 7
179
+ 1
180
+ 64
181
+ 47
182
+ 49
183
+ 2
184
+ 2
185
+ 15
186
+ 5
187
+ 7
188
+ 3
189
+ 7
190
+ 4
191
+ 64
192
+ 47
193
+ 49
194
+ 2
195
+ 2
196
+ 15
197
+ 5
198
+ 7
199
+ 5
200
+ 7
201
+ 6
202
+ 64
203
+ 47
204
+ 49
205
+ 2
206
+ 2
207
+ 15
208
+ 65
209
+ 7
210
+ 7
211
+ 44
212
+ 43
213
+ 8
214
+ 4
215
+ 5
216
+ 49
217
+ 9
218
+ 1
219
+ 13
220
+ 7
221
+ 10
222
+ 3
223
+ 49
224
+ 11
225
+ 2
226
+ 15
227
+ 13
228
+ 7
229
+ 12
230
+ 3
231
+ 49
232
+ 11
233
+ 2
234
+ 15
235
+ 13
236
+ 7
237
+ 13
238
+ 3
239
+ 49
240
+ 11
241
+ 2
242
+ 15
243
+ 13
244
+ 7
245
+ 14
246
+ 3
247
+ 49
248
+ 11
249
+ 2
250
+ 15
251
+ 13
252
+ 7
253
+ 15
254
+ 3
255
+ 49
256
+ 11
257
+ 2
258
+ 15
259
+ 49
260
+ 16
261
+ 2
262
+ 15
263
+ 99
264
+ 7
265
+ 17
266
+ 7
267
+ 18
268
+ 65
269
+ 67
270
+ 49
271
+ 19
272
+ 0
273
+ 49
274
+ 20
275
+ 4
276
+ 15
277
+ 99
278
+ 7
279
+ 21
280
+ 7
281
+ 22
282
+ 65
283
+ 67
284
+ 49
285
+ 19
286
+ 0
287
+ 49
288
+ 20
289
+ 4
290
+ 15
291
+ 99
292
+ 7
293
+ 23
294
+ 7
295
+ 24
296
+ 65
297
+ 67
298
+ 49
299
+ 19
300
+ 0
301
+ 49
302
+ 20
303
+ 4
304
+ 15
305
+ 99
306
+ 7
307
+ 25
308
+ 7
309
+ 26
310
+ 65
311
+ 67
312
+ 49
313
+ 19
314
+ 0
315
+ 49
316
+ 20
317
+ 4
318
+ 15
319
+ 99
320
+ 7
321
+ 27
322
+ 7
323
+ 28
324
+ 65
325
+ 67
326
+ 49
327
+ 19
328
+ 0
329
+ 49
330
+ 20
331
+ 4
332
+ 15
333
+ 5
334
+ 48
335
+ 29
336
+ 15
337
+ 99
338
+ 7
339
+ 30
340
+ 7
341
+ 31
342
+ 65
343
+ 67
344
+ 49
345
+ 19
346
+ 0
347
+ 49
348
+ 20
349
+ 4
350
+ 11
351
+ I
352
+ 6
353
+ I
354
+ 0
355
+ I
356
+ 0
357
+ I
358
+ 0
359
+ n
360
+ p
361
+ 32
362
+ x
363
+ 9
364
+ Formatter
365
+ s
366
+ 28
367
+ guard/coffeescript/formatter
368
+ x
369
+ 8
370
+ autoload
371
+ x
372
+ 9
373
+ Inspector
374
+ s
375
+ 28
376
+ guard/coffeescript/inspector
377
+ x
378
+ 6
379
+ Runner
380
+ s
381
+ 25
382
+ guard/coffeescript/runner
383
+ x
384
+ 15
385
+ DEFAULT_OPTIONS
386
+ x
387
+ 4
388
+ Hash
389
+ x
390
+ 16
391
+ new_from_literal
392
+ x
393
+ 4
394
+ bare
395
+ x
396
+ 3
397
+ []=
398
+ x
399
+ 7
400
+ shallow
401
+ x
402
+ 12
403
+ hide_success
404
+ x
405
+ 4
406
+ noop
407
+ x
408
+ 12
409
+ all_on_start
410
+ x
411
+ 9
412
+ const_set
413
+ x
414
+ 10
415
+ initialize
416
+ M
417
+ 1
418
+ n
419
+ n
420
+ x
421
+ 10
422
+ initialize
423
+ i
424
+ 175
425
+ 23
426
+ 0
427
+ 10
428
+ 9
429
+ 35
430
+ 0
431
+ 19
432
+ 0
433
+ 15
434
+ 23
435
+ 1
436
+ 10
437
+ 23
438
+ 44
439
+ 43
440
+ 0
441
+ 78
442
+ 49
443
+ 1
444
+ 1
445
+ 19
446
+ 1
447
+ 15
448
+ 20
449
+ 0
450
+ 9
451
+ 30
452
+ 1
453
+ 8
454
+ 34
455
+ 35
456
+ 0
457
+ 19
458
+ 0
459
+ 15
460
+ 45
461
+ 2
462
+ 3
463
+ 49
464
+ 4
465
+ 0
466
+ 19
467
+ 2
468
+ 15
469
+ 20
470
+ 1
471
+ 7
472
+ 5
473
+ 49
474
+ 6
475
+ 1
476
+ 9
477
+ 159
478
+ 20
479
+ 2
480
+ 44
481
+ 43
482
+ 0
483
+ 79
484
+ 49
485
+ 1
486
+ 1
487
+ 13
488
+ 7
489
+ 7
490
+ 20
491
+ 1
492
+ 7
493
+ 5
494
+ 49
495
+ 6
496
+ 1
497
+ 49
498
+ 8
499
+ 2
500
+ 15
501
+ 49
502
+ 9
503
+ 1
504
+ 15
505
+ 20
506
+ 0
507
+ 44
508
+ 43
509
+ 10
510
+ 43
511
+ 11
512
+ 13
513
+ 71
514
+ 12
515
+ 47
516
+ 9
517
+ 128
518
+ 47
519
+ 49
520
+ 13
521
+ 0
522
+ 13
523
+ 44
524
+ 43
525
+ 14
526
+ 7
527
+ 15
528
+ 20
529
+ 1
530
+ 7
531
+ 5
532
+ 49
533
+ 16
534
+ 1
535
+ 47
536
+ 101
537
+ 17
538
+ 7
539
+ 18
540
+ 63
541
+ 3
542
+ 78
543
+ 49
544
+ 12
545
+ 2
546
+ 47
547
+ 49
548
+ 19
549
+ 1
550
+ 15
551
+ 8
552
+ 154
553
+ 44
554
+ 43
555
+ 14
556
+ 7
557
+ 15
558
+ 20
559
+ 1
560
+ 7
561
+ 5
562
+ 49
563
+ 16
564
+ 1
565
+ 47
566
+ 101
567
+ 17
568
+ 7
569
+ 18
570
+ 63
571
+ 3
572
+ 78
573
+ 49
574
+ 12
575
+ 2
576
+ 49
577
+ 12
578
+ 1
579
+ 49
580
+ 20
581
+ 1
582
+ 8
583
+ 160
584
+ 1
585
+ 15
586
+ 20
587
+ 0
588
+ 20
589
+ 2
590
+ 20
591
+ 1
592
+ 49
593
+ 21
594
+ 1
595
+ 54
596
+ 52
597
+ 19
598
+ 2
599
+ 11
600
+ I
601
+ a
602
+ I
603
+ 3
604
+ I
605
+ 0
606
+ I
607
+ 2
608
+ n
609
+ p
610
+ 22
611
+ x
612
+ 4
613
+ Hash
614
+ x
615
+ 16
616
+ new_from_literal
617
+ x
618
+ 15
619
+ DEFAULT_OPTIONS
620
+ n
621
+ x
622
+ 5
623
+ clone
624
+ x
625
+ 5
626
+ input
627
+ x
628
+ 2
629
+ []
630
+ x
631
+ 6
632
+ output
633
+ x
634
+ 3
635
+ []=
636
+ x
637
+ 6
638
+ merge!
639
+ x
640
+ 5
641
+ Guard
642
+ x
643
+ 7
644
+ Watcher
645
+ x
646
+ 3
647
+ new
648
+ x
649
+ 8
650
+ allocate
651
+ x
652
+ 6
653
+ Regexp
654
+ s
655
+ 1
656
+ ^
657
+ x
658
+ 6
659
+ delete
660
+ x
661
+ 4
662
+ to_s
663
+ s
664
+ 14
665
+ /(.+\.coffee)$
666
+ x
667
+ 10
668
+ initialize
669
+ x
670
+ 2
671
+ <<
672
+ x
673
+ 5
674
+ merge
675
+ p
676
+ 21
677
+ I
678
+ -1
679
+ I
680
+ 24
681
+ I
682
+ 17
683
+ I
684
+ 25
685
+ I
686
+ 22
687
+ I
688
+ 0
689
+ I
690
+ 23
691
+ I
692
+ 26
693
+ I
694
+ 2c
695
+ I
696
+ 28
697
+ I
698
+ 35
699
+ I
700
+ 29
701
+ I
702
+ 50
703
+ I
704
+ 2a
705
+ I
706
+ 9f
707
+ I
708
+ 28
709
+ I
710
+ a0
711
+ I
712
+ 0
713
+ I
714
+ a1
715
+ I
716
+ 2d
717
+ I
718
+ af
719
+ x
720
+ 70
721
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
722
+ p
723
+ 3
724
+ x
725
+ 8
726
+ watchers
727
+ x
728
+ 7
729
+ options
730
+ x
731
+ 8
732
+ defaults
733
+ x
734
+ 17
735
+ method_visibility
736
+ x
737
+ 15
738
+ add_defn_method
739
+ x
740
+ 5
741
+ start
742
+ M
743
+ 1
744
+ n
745
+ n
746
+ x
747
+ 5
748
+ start
749
+ i
750
+ 17
751
+ 5
752
+ 48
753
+ 0
754
+ 7
755
+ 1
756
+ 49
757
+ 2
758
+ 1
759
+ 9
760
+ 15
761
+ 5
762
+ 48
763
+ 3
764
+ 8
765
+ 16
766
+ 1
767
+ 11
768
+ I
769
+ 2
770
+ I
771
+ 0
772
+ I
773
+ 0
774
+ I
775
+ 0
776
+ n
777
+ p
778
+ 4
779
+ x
780
+ 7
781
+ options
782
+ x
783
+ 12
784
+ all_on_start
785
+ x
786
+ 2
787
+ []
788
+ x
789
+ 7
790
+ run_all
791
+ p
792
+ 7
793
+ I
794
+ -1
795
+ I
796
+ 34
797
+ I
798
+ 0
799
+ I
800
+ 35
801
+ I
802
+ 10
803
+ I
804
+ 0
805
+ I
806
+ 11
807
+ x
808
+ 70
809
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
810
+ p
811
+ 0
812
+ x
813
+ 7
814
+ run_all
815
+ M
816
+ 1
817
+ n
818
+ n
819
+ x
820
+ 7
821
+ run_all
822
+ i
823
+ 31
824
+ 5
825
+ 45
826
+ 0
827
+ 1
828
+ 5
829
+ 45
830
+ 2
831
+ 3
832
+ 45
833
+ 4
834
+ 5
835
+ 7
836
+ 6
837
+ 64
838
+ 7
839
+ 7
840
+ 64
841
+ 49
842
+ 8
843
+ 2
844
+ 49
845
+ 9
846
+ 1
847
+ 49
848
+ 10
849
+ 2
850
+ 47
851
+ 49
852
+ 11
853
+ 1
854
+ 11
855
+ I
856
+ 7
857
+ I
858
+ 0
859
+ I
860
+ 0
861
+ I
862
+ 0
863
+ n
864
+ p
865
+ 12
866
+ x
867
+ 7
868
+ Watcher
869
+ n
870
+ x
871
+ 3
872
+ Dir
873
+ n
874
+ x
875
+ 4
876
+ File
877
+ n
878
+ s
879
+ 2
880
+ **
881
+ s
882
+ 8
883
+ *.coffee
884
+ x
885
+ 4
886
+ join
887
+ x
888
+ 4
889
+ glob
890
+ x
891
+ 11
892
+ match_files
893
+ x
894
+ 13
895
+ run_on_change
896
+ p
897
+ 5
898
+ I
899
+ -1
900
+ I
901
+ 3c
902
+ I
903
+ 0
904
+ I
905
+ 3d
906
+ I
907
+ 1f
908
+ x
909
+ 70
910
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
911
+ p
912
+ 0
913
+ x
914
+ 13
915
+ run_on_change
916
+ M
917
+ 1
918
+ n
919
+ n
920
+ x
921
+ 13
922
+ run_on_change
923
+ i
924
+ 55
925
+ 45
926
+ 0
927
+ 1
928
+ 45
929
+ 2
930
+ 3
931
+ 20
932
+ 0
933
+ 49
934
+ 4
935
+ 1
936
+ 5
937
+ 48
938
+ 5
939
+ 5
940
+ 48
941
+ 6
942
+ 49
943
+ 7
944
+ 3
945
+ 97
946
+ 37
947
+ 19
948
+ 1
949
+ 15
950
+ 37
951
+ 19
952
+ 2
953
+ 15
954
+ 15
955
+ 2
956
+ 15
957
+ 5
958
+ 20
959
+ 1
960
+ 47
961
+ 49
962
+ 8
963
+ 1
964
+ 15
965
+ 20
966
+ 2
967
+ 9
968
+ 47
969
+ 1
970
+ 8
971
+ 54
972
+ 5
973
+ 7
974
+ 9
975
+ 47
976
+ 49
977
+ 10
978
+ 1
979
+ 11
980
+ I
981
+ 7
982
+ I
983
+ 3
984
+ I
985
+ 1
986
+ I
987
+ 1
988
+ n
989
+ p
990
+ 11
991
+ x
992
+ 6
993
+ Runner
994
+ n
995
+ x
996
+ 9
997
+ Inspector
998
+ n
999
+ x
1000
+ 5
1001
+ clean
1002
+ x
1003
+ 8
1004
+ watchers
1005
+ x
1006
+ 7
1007
+ options
1008
+ x
1009
+ 3
1010
+ run
1011
+ x
1012
+ 6
1013
+ notify
1014
+ x
1015
+ 15
1016
+ task_has_failed
1017
+ x
1018
+ 5
1019
+ throw
1020
+ p
1021
+ 11
1022
+ I
1023
+ -1
1024
+ I
1025
+ 45
1026
+ I
1027
+ 0
1028
+ I
1029
+ 46
1030
+ I
1031
+ 20
1032
+ I
1033
+ 47
1034
+ I
1035
+ 28
1036
+ I
1037
+ 49
1038
+ I
1039
+ 36
1040
+ I
1041
+ 0
1042
+ I
1043
+ 37
1044
+ x
1045
+ 70
1046
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
1047
+ p
1048
+ 3
1049
+ x
1050
+ 5
1051
+ paths
1052
+ x
1053
+ 13
1054
+ changed_files
1055
+ x
1056
+ 7
1057
+ success
1058
+ x
1059
+ 15
1060
+ run_on_deletion
1061
+ M
1062
+ 1
1063
+ n
1064
+ n
1065
+ x
1066
+ 15
1067
+ run_on_deletion
1068
+ i
1069
+ 14
1070
+ 45
1071
+ 0
1072
+ 1
1073
+ 20
1074
+ 0
1075
+ 49
1076
+ 2
1077
+ 1
1078
+ 56
1079
+ 3
1080
+ 50
1081
+ 4
1082
+ 0
1083
+ 11
1084
+ I
1085
+ 3
1086
+ I
1087
+ 1
1088
+ I
1089
+ 1
1090
+ I
1091
+ 1
1092
+ n
1093
+ p
1094
+ 5
1095
+ x
1096
+ 9
1097
+ Inspector
1098
+ n
1099
+ x
1100
+ 5
1101
+ clean
1102
+ M
1103
+ 1
1104
+ p
1105
+ 2
1106
+ x
1107
+ 9
1108
+ for_block
1109
+ t
1110
+ n
1111
+ x
1112
+ 15
1113
+ run_on_deletion
1114
+ i
1115
+ 55
1116
+ 57
1117
+ 19
1118
+ 0
1119
+ 15
1120
+ 20
1121
+ 0
1122
+ 7
1123
+ 0
1124
+ 13
1125
+ 70
1126
+ 9
1127
+ 24
1128
+ 15
1129
+ 44
1130
+ 43
1131
+ 1
1132
+ 7
1133
+ 2
1134
+ 78
1135
+ 49
1136
+ 3
1137
+ 2
1138
+ 6
1139
+ 0
1140
+ 7
1141
+ 4
1142
+ 64
1143
+ 49
1144
+ 5
1145
+ 2
1146
+ 19
1147
+ 1
1148
+ 15
1149
+ 45
1150
+ 6
1151
+ 7
1152
+ 20
1153
+ 1
1154
+ 49
1155
+ 8
1156
+ 1
1157
+ 9
1158
+ 53
1159
+ 45
1160
+ 6
1161
+ 9
1162
+ 20
1163
+ 1
1164
+ 49
1165
+ 10
1166
+ 1
1167
+ 8
1168
+ 54
1169
+ 1
1170
+ 11
1171
+ I
1172
+ 7
1173
+ I
1174
+ 2
1175
+ I
1176
+ 1
1177
+ I
1178
+ 1
1179
+ n
1180
+ p
1181
+ 11
1182
+ n
1183
+ x
1184
+ 6
1185
+ Regexp
1186
+ s
1187
+ 20
1188
+ (js\.coffee|coffee)$
1189
+ x
1190
+ 3
1191
+ new
1192
+ s
1193
+ 2
1194
+ js
1195
+ x
1196
+ 4
1197
+ gsub
1198
+ x
1199
+ 4
1200
+ File
1201
+ n
1202
+ x
1203
+ 7
1204
+ exists?
1205
+ n
1206
+ x
1207
+ 6
1208
+ remove
1209
+ p
1210
+ 9
1211
+ I
1212
+ 0
1213
+ I
1214
+ 52
1215
+ I
1216
+ 4
1217
+ I
1218
+ 53
1219
+ I
1220
+ 21
1221
+ I
1222
+ 54
1223
+ I
1224
+ 36
1225
+ I
1226
+ 0
1227
+ I
1228
+ 37
1229
+ x
1230
+ 70
1231
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
1232
+ p
1233
+ 2
1234
+ x
1235
+ 4
1236
+ file
1237
+ x
1238
+ 10
1239
+ javascript
1240
+ x
1241
+ 4
1242
+ each
1243
+ p
1244
+ 5
1245
+ I
1246
+ -1
1247
+ I
1248
+ 51
1249
+ I
1250
+ 0
1251
+ I
1252
+ 52
1253
+ I
1254
+ e
1255
+ x
1256
+ 70
1257
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
1258
+ p
1259
+ 1
1260
+ x
1261
+ 5
1262
+ paths
1263
+ x
1264
+ 7
1265
+ private
1266
+ x
1267
+ 6
1268
+ notify
1269
+ M
1270
+ 1
1271
+ n
1272
+ n
1273
+ x
1274
+ 6
1275
+ notify
1276
+ i
1277
+ 12
1278
+ 44
1279
+ 43
1280
+ 0
1281
+ 49
1282
+ 1
1283
+ 0
1284
+ 56
1285
+ 2
1286
+ 50
1287
+ 3
1288
+ 0
1289
+ 11
1290
+ I
1291
+ 3
1292
+ I
1293
+ 1
1294
+ I
1295
+ 1
1296
+ I
1297
+ 1
1298
+ n
1299
+ p
1300
+ 4
1301
+ x
1302
+ 5
1303
+ Guard
1304
+ x
1305
+ 6
1306
+ guards
1307
+ M
1308
+ 1
1309
+ p
1310
+ 2
1311
+ x
1312
+ 9
1313
+ for_block
1314
+ t
1315
+ n
1316
+ x
1317
+ 6
1318
+ notify
1319
+ i
1320
+ 36
1321
+ 57
1322
+ 19
1323
+ 0
1324
+ 15
1325
+ 45
1326
+ 0
1327
+ 1
1328
+ 20
1329
+ 0
1330
+ 21
1331
+ 1
1332
+ 0
1333
+ 49
1334
+ 2
1335
+ 2
1336
+ 19
1337
+ 1
1338
+ 15
1339
+ 20
1340
+ 1
1341
+ 49
1342
+ 3
1343
+ 0
1344
+ 9
1345
+ 28
1346
+ 1
1347
+ 8
1348
+ 35
1349
+ 20
1350
+ 0
1351
+ 20
1352
+ 1
1353
+ 49
1354
+ 4
1355
+ 1
1356
+ 11
1357
+ I
1358
+ 6
1359
+ I
1360
+ 2
1361
+ I
1362
+ 1
1363
+ I
1364
+ 1
1365
+ n
1366
+ p
1367
+ 5
1368
+ x
1369
+ 7
1370
+ Watcher
1371
+ n
1372
+ x
1373
+ 11
1374
+ match_files
1375
+ x
1376
+ 6
1377
+ empty?
1378
+ x
1379
+ 13
1380
+ run_on_change
1381
+ p
1382
+ 9
1383
+ I
1384
+ 0
1385
+ I
1386
+ 60
1387
+ I
1388
+ 4
1389
+ I
1390
+ 61
1391
+ I
1392
+ 12
1393
+ I
1394
+ 62
1395
+ I
1396
+ 23
1397
+ I
1398
+ 0
1399
+ I
1400
+ 24
1401
+ x
1402
+ 70
1403
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
1404
+ p
1405
+ 2
1406
+ x
1407
+ 5
1408
+ guard
1409
+ x
1410
+ 5
1411
+ paths
1412
+ x
1413
+ 4
1414
+ each
1415
+ p
1416
+ 5
1417
+ I
1418
+ -1
1419
+ I
1420
+ 5f
1421
+ I
1422
+ 0
1423
+ I
1424
+ 60
1425
+ I
1426
+ c
1427
+ x
1428
+ 70
1429
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
1430
+ p
1431
+ 1
1432
+ x
1433
+ 13
1434
+ changed_files
1435
+ p
1436
+ 35
1437
+ I
1438
+ 2
1439
+ I
1440
+ c
1441
+ I
1442
+ d
1443
+ I
1444
+ d
1445
+ I
1446
+ 18
1447
+ I
1448
+ e
1449
+ I
1450
+ 23
1451
+ I
1452
+ 10
1453
+ I
1454
+ 26
1455
+ I
1456
+ 16
1457
+ I
1458
+ 2f
1459
+ I
1460
+ 11
1461
+ I
1462
+ 37
1463
+ I
1464
+ 12
1465
+ I
1466
+ 3f
1467
+ I
1468
+ 13
1469
+ I
1470
+ 47
1471
+ I
1472
+ 14
1473
+ I
1474
+ 4f
1475
+ I
1476
+ 15
1477
+ I
1478
+ 5a
1479
+ I
1480
+ 24
1481
+ I
1482
+ 68
1483
+ I
1484
+ 34
1485
+ I
1486
+ 76
1487
+ I
1488
+ 3c
1489
+ I
1490
+ 84
1491
+ I
1492
+ 45
1493
+ I
1494
+ 92
1495
+ I
1496
+ 51
1497
+ I
1498
+ a0
1499
+ I
1500
+ 58
1501
+ I
1502
+ a4
1503
+ I
1504
+ 5f
1505
+ I
1506
+ b2
1507
+ x
1508
+ 70
1509
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
1510
+ p
1511
+ 0
1512
+ x
1513
+ 13
1514
+ attach_method
1515
+ p
1516
+ 3
1517
+ I
1518
+ 2
1519
+ I
1520
+ a
1521
+ I
1522
+ 1f
1523
+ x
1524
+ 70
1525
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
1526
+ p
1527
+ 0
1528
+ x
1529
+ 13
1530
+ attach_method
1531
+ p
1532
+ 9
1533
+ I
1534
+ 0
1535
+ I
1536
+ 1
1537
+ I
1538
+ 9
1539
+ I
1540
+ 2
1541
+ I
1542
+ 12
1543
+ I
1544
+ 3
1545
+ I
1546
+ 1b
1547
+ I
1548
+ 5
1549
+ I
1550
+ 37
1551
+ x
1552
+ 70
1553
+ /Users/michi/Repositories/guard-coffeescript/lib/guard/coffeescript.rb
1554
+ p
1555
+ 0