compass 0.11.5 → 0.11.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/compass +5 -1
  3. data/bin/compass.compiled.rbc +707 -0
  4. data/examples/compass/compass_app_log.txt +6 -0
  5. data/features/command_line.feature +16 -16
  6. data/features/extensions.feature +6 -0
  7. data/features/step_definitions/command_line_steps.rb +2 -0
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  10. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  12. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  13. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  14. data/lib/compass.rbc +42 -36
  15. data/lib/compass/actions.rbc +244 -85
  16. data/lib/compass/app_integration.rbc +28 -20
  17. data/lib/compass/app_integration/merb.rbc +8 -4
  18. data/lib/compass/app_integration/rails.rbc +664 -148
  19. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  20. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  21. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  22. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  23. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  24. data/lib/compass/browser_support.rbc +35 -23
  25. data/lib/compass/commands.rbc +307 -0
  26. data/lib/compass/commands/base.rbc +1044 -0
  27. data/lib/compass/commands/clean_project.rbc +1856 -0
  28. data/lib/compass/commands/create_project.rbc +2691 -0
  29. data/lib/compass/commands/default.rbc +1677 -0
  30. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  31. data/lib/compass/commands/help.rbc +1921 -0
  32. data/lib/compass/commands/imports.rbc +969 -0
  33. data/lib/compass/commands/installer_command.rbc +807 -0
  34. data/lib/compass/commands/interactive.rbc +1341 -0
  35. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  36. data/lib/compass/commands/print_version.rbc +2478 -0
  37. data/lib/compass/commands/project_base.rbc +2085 -0
  38. data/lib/compass/commands/project_stats.rb +7 -7
  39. data/lib/compass/commands/project_stats.rbc +4202 -0
  40. data/lib/compass/commands/registry.rbc +1350 -0
  41. data/lib/compass/commands/sprite.rbc +2212 -0
  42. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  43. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  44. data/lib/compass/commands/update_project.rbc +3002 -0
  45. data/lib/compass/commands/validate_project.rbc +1686 -0
  46. data/lib/compass/commands/watch_project.rbc +4155 -0
  47. data/lib/compass/commands/write_configuration.rbc +2896 -0
  48. data/lib/compass/compiler.rbc +591 -398
  49. data/lib/compass/configuration.rbc +134 -78
  50. data/lib/compass/configuration/adapters.rbc +98 -40
  51. data/lib/compass/configuration/comments.rbc +132 -51
  52. data/lib/compass/configuration/data.rbc +541 -551
  53. data/lib/compass/configuration/defaults.rbc +764 -189
  54. data/lib/compass/configuration/file_data.rbc +37 -125
  55. data/lib/compass/configuration/helpers.rb +7 -2
  56. data/lib/compass/configuration/helpers.rbc +433 -153
  57. data/lib/compass/configuration/inheritance.rbc +412 -165
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rbc +151 -84
  60. data/lib/compass/dependencies.rbc +16 -4
  61. data/lib/compass/errors.rbc +5 -5
  62. data/lib/compass/exec.rbc +500 -0
  63. data/lib/compass/exec/command_option_parser.rbc +676 -0
  64. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  65. data/lib/compass/exec/helpers.rbc +758 -0
  66. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  67. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  68. data/lib/compass/frameworks.rb +10 -4
  69. data/lib/compass/frameworks.rbc +118 -66
  70. data/lib/compass/grid_builder.rbc +0 -0
  71. data/lib/compass/installers.rbc +152 -0
  72. data/lib/compass/installers/bare_installer.rbc +939 -0
  73. data/lib/compass/installers/base.rbc +4427 -0
  74. data/lib/compass/installers/manifest.rbc +3335 -0
  75. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  76. data/lib/compass/installers/template_context.rbc +1030 -0
  77. data/lib/compass/logger.rbc +2317 -0
  78. data/lib/compass/quick_cache.rbc +12 -8
  79. data/lib/compass/sass_extensions.rbc +8 -4
  80. data/lib/compass/sass_extensions/functions.rbc +90 -57
  81. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  82. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  83. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  84. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  85. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  86. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  87. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  88. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  89. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  90. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  91. data/lib/compass/sass_extensions/functions/lists.rb +5 -0
  92. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  93. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  94. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  95. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  96. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  97. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  98. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  99. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  100. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  101. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  102. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  103. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  104. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  105. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  106. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  107. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  108. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  109. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +1 -1
  110. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  111. data/lib/compass/sprite_importer.rbc +1125 -1495
  112. data/lib/compass/util.rbc +19 -11
  113. data/lib/compass/version.rbc +53 -25
  114. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  115. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  116. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  117. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  118. data/test/fixtures/stylesheets/compass/css/user-interface.css +5 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  120. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  121. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  122. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  123. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  124. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  125. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  126. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  127. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  128. data/test/helpers/command_line.rbc +2820 -0
  129. data/test/helpers/diff.rbc +1104 -0
  130. data/test/helpers/io.rbc +962 -0
  131. data/test/helpers/rails.rbc +1116 -0
  132. data/test/helpers/test_case.rbc +1255 -0
  133. data/test/integrations/compass_test.rbc +6589 -0
  134. data/test/integrations/rails_integration_test.rbc +1342 -0
  135. data/test/integrations/sprites_test.rbc +6192 -0
  136. data/test/test_helper.rbc +1694 -0
  137. data/test/units/actions_test.rbc +644 -0
  138. data/test/units/command_line_test.rbc +1532 -0
  139. data/test/units/compass_png_test.rbc +0 -0
  140. data/test/units/configuration_test.rbc +3833 -0
  141. data/test/units/rails_configuration_test.rbc +1032 -0
  142. data/test/units/sass_extensions_test.rb +5 -0
  143. data/test/units/sass_extensions_test.rbc +3586 -0
  144. data/test/units/sprites/engine_test.rbc +962 -0
  145. data/test/units/sprites/image_row_test.rbc +1578 -0
  146. data/test/units/sprites/image_test.rbc +2836 -0
  147. data/test/units/sprites/importer_test.rbc +2620 -0
  148. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  149. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  150. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  151. metadata +157 -51
@@ -0,0 +1,4155 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 73
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
+ 5
50
+ 7
51
+ 5
52
+ 64
53
+ 47
54
+ 49
55
+ 1
56
+ 1
57
+ 15
58
+ 99
59
+ 7
60
+ 6
61
+ 65
62
+ 49
63
+ 7
64
+ 2
65
+ 13
66
+ 99
67
+ 12
68
+ 7
69
+ 8
70
+ 12
71
+ 7
72
+ 9
73
+ 12
74
+ 65
75
+ 12
76
+ 49
77
+ 10
78
+ 4
79
+ 15
80
+ 49
81
+ 8
82
+ 0
83
+ 15
84
+ 2
85
+ 11
86
+ I
87
+ 6
88
+ I
89
+ 0
90
+ I
91
+ 0
92
+ I
93
+ 0
94
+ n
95
+ p
96
+ 11
97
+ s
98
+ 9
99
+ fileutils
100
+ x
101
+ 7
102
+ require
103
+ s
104
+ 8
105
+ pathname
106
+ s
107
+ 21
108
+ compass/commands/base
109
+ s
110
+ 31
111
+ compass/commands/update_project
112
+ s
113
+ 11
114
+ sass/plugin
115
+ x
116
+ 7
117
+ Compass
118
+ x
119
+ 11
120
+ open_module
121
+ x
122
+ 15
123
+ __module_init__
124
+ M
125
+ 1
126
+ n
127
+ n
128
+ x
129
+ 7
130
+ Compass
131
+ i
132
+ 28
133
+ 5
134
+ 66
135
+ 99
136
+ 7
137
+ 0
138
+ 65
139
+ 49
140
+ 1
141
+ 2
142
+ 13
143
+ 99
144
+ 12
145
+ 7
146
+ 2
147
+ 12
148
+ 7
149
+ 3
150
+ 12
151
+ 65
152
+ 12
153
+ 49
154
+ 4
155
+ 4
156
+ 15
157
+ 49
158
+ 2
159
+ 0
160
+ 11
161
+ I
162
+ 6
163
+ I
164
+ 0
165
+ I
166
+ 0
167
+ I
168
+ 0
169
+ n
170
+ p
171
+ 5
172
+ x
173
+ 8
174
+ Commands
175
+ x
176
+ 11
177
+ open_module
178
+ x
179
+ 15
180
+ __module_init__
181
+ M
182
+ 1
183
+ n
184
+ n
185
+ x
186
+ 8
187
+ Commands
188
+ i
189
+ 83
190
+ 5
191
+ 66
192
+ 99
193
+ 7
194
+ 0
195
+ 65
196
+ 49
197
+ 1
198
+ 2
199
+ 13
200
+ 99
201
+ 12
202
+ 7
203
+ 2
204
+ 12
205
+ 7
206
+ 3
207
+ 12
208
+ 65
209
+ 12
210
+ 49
211
+ 4
212
+ 4
213
+ 15
214
+ 49
215
+ 2
216
+ 0
217
+ 15
218
+ 99
219
+ 7
220
+ 5
221
+ 65
222
+ 49
223
+ 1
224
+ 2
225
+ 13
226
+ 99
227
+ 12
228
+ 7
229
+ 2
230
+ 12
231
+ 7
232
+ 6
233
+ 12
234
+ 65
235
+ 12
236
+ 49
237
+ 4
238
+ 4
239
+ 15
240
+ 49
241
+ 2
242
+ 0
243
+ 15
244
+ 99
245
+ 7
246
+ 7
247
+ 45
248
+ 8
249
+ 9
250
+ 65
251
+ 49
252
+ 10
253
+ 3
254
+ 13
255
+ 99
256
+ 12
257
+ 7
258
+ 11
259
+ 12
260
+ 7
261
+ 12
262
+ 12
263
+ 65
264
+ 12
265
+ 49
266
+ 4
267
+ 4
268
+ 15
269
+ 49
270
+ 11
271
+ 0
272
+ 11
273
+ I
274
+ 6
275
+ I
276
+ 0
277
+ I
278
+ 0
279
+ I
280
+ 0
281
+ n
282
+ p
283
+ 13
284
+ x
285
+ 25
286
+ WatchProjectOptionsParser
287
+ x
288
+ 11
289
+ open_module
290
+ x
291
+ 15
292
+ __module_init__
293
+ M
294
+ 1
295
+ n
296
+ n
297
+ x
298
+ 25
299
+ WatchProjectOptionsParser
300
+ i
301
+ 16
302
+ 5
303
+ 66
304
+ 99
305
+ 7
306
+ 0
307
+ 7
308
+ 1
309
+ 65
310
+ 67
311
+ 49
312
+ 2
313
+ 0
314
+ 49
315
+ 3
316
+ 4
317
+ 11
318
+ I
319
+ 5
320
+ I
321
+ 0
322
+ I
323
+ 0
324
+ I
325
+ 0
326
+ n
327
+ p
328
+ 4
329
+ x
330
+ 11
331
+ set_options
332
+ M
333
+ 1
334
+ n
335
+ n
336
+ x
337
+ 11
338
+ set_options
339
+ i
340
+ 50
341
+ 54
342
+ 89
343
+ 0
344
+ 15
345
+ 20
346
+ 0
347
+ 7
348
+ 1
349
+ 64
350
+ 7
351
+ 2
352
+ 64
353
+ 49
354
+ 3
355
+ 1
356
+ 56
357
+ 4
358
+ 50
359
+ 5
360
+ 0
361
+ 7
362
+ 2
363
+ 64
364
+ 49
365
+ 6
366
+ 1
367
+ 13
368
+ 18
369
+ 2
370
+ 49
371
+ 7
372
+ 1
373
+ 15
374
+ 15
375
+ 20
376
+ 0
377
+ 7
378
+ 8
379
+ 64
380
+ 7
381
+ 9
382
+ 7
383
+ 10
384
+ 64
385
+ 56
386
+ 11
387
+ 50
388
+ 12
389
+ 3
390
+ 11
391
+ I
392
+ 6
393
+ I
394
+ 1
395
+ I
396
+ 1
397
+ I
398
+ 1
399
+ n
400
+ p
401
+ 13
402
+ x
403
+ 11
404
+ set_options
405
+ s
406
+ 219
407
+
408
+ Usage: compass watch [path/to/project] [path/to/project/src/file.sass ...] [options]
409
+
410
+ Description:
411
+ watch the project for changes and recompile when they occur.
412
+
413
+ Options:
414
+
415
+ s
416
+ 1
417
+
418
+
419
+ x
420
+ 5
421
+ split
422
+ M
423
+ 1
424
+ p
425
+ 2
426
+ x
427
+ 9
428
+ for_block
429
+ t
430
+ n
431
+ x
432
+ 11
433
+ set_options
434
+ i
435
+ 31
436
+ 57
437
+ 19
438
+ 0
439
+ 15
440
+ 20
441
+ 0
442
+ 7
443
+ 0
444
+ 13
445
+ 70
446
+ 9
447
+ 24
448
+ 15
449
+ 44
450
+ 43
451
+ 1
452
+ 7
453
+ 2
454
+ 78
455
+ 49
456
+ 3
457
+ 2
458
+ 6
459
+ 0
460
+ 7
461
+ 4
462
+ 64
463
+ 49
464
+ 5
465
+ 2
466
+ 11
467
+ I
468
+ 6
469
+ I
470
+ 1
471
+ I
472
+ 1
473
+ I
474
+ 1
475
+ n
476
+ p
477
+ 6
478
+ n
479
+ x
480
+ 6
481
+ Regexp
482
+ s
483
+ 3
484
+ ^ *
485
+ x
486
+ 3
487
+ new
488
+ s
489
+ 0
490
+
491
+ x
492
+ 4
493
+ gsub
494
+ p
495
+ 5
496
+ I
497
+ 0
498
+ I
499
+ d
500
+ I
501
+ 1
502
+ I
503
+ 14
504
+ I
505
+ 1f
506
+ x
507
+ 69
508
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
509
+ p
510
+ 1
511
+ x
512
+ 1
513
+ l
514
+ x
515
+ 3
516
+ map
517
+ x
518
+ 4
519
+ join
520
+ x
521
+ 7
522
+ banner=
523
+ s
524
+ 6
525
+ --poll
526
+ x
527
+ 4
528
+ NONE
529
+ s
530
+ 43
531
+ Check periodically if there's been changes.
532
+ M
533
+ 1
534
+ p
535
+ 2
536
+ x
537
+ 9
538
+ for_block
539
+ t
540
+ n
541
+ x
542
+ 11
543
+ set_options
544
+ i
545
+ 15
546
+ 5
547
+ 49
548
+ 0
549
+ 0
550
+ 7
551
+ 1
552
+ 79
553
+ 13
554
+ 18
555
+ 3
556
+ 49
557
+ 2
558
+ 2
559
+ 15
560
+ 11
561
+ I
562
+ 5
563
+ I
564
+ 0
565
+ I
566
+ 0
567
+ I
568
+ 0
569
+ I
570
+ -2
571
+ p
572
+ 3
573
+ x
574
+ 7
575
+ options
576
+ x
577
+ 4
578
+ poll
579
+ x
580
+ 3
581
+ []=
582
+ p
583
+ 3
584
+ I
585
+ 0
586
+ I
587
+ 17
588
+ I
589
+ f
590
+ x
591
+ 69
592
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
593
+ p
594
+ 0
595
+ x
596
+ 2
597
+ on
598
+ p
599
+ 17
600
+ I
601
+ -1
602
+ I
603
+ a
604
+ I
605
+ 0
606
+ I
607
+ b
608
+ I
609
+ 4
610
+ I
611
+ d
612
+ I
613
+ 9
614
+ I
615
+ 14
616
+ I
617
+ c
618
+ I
619
+ d
620
+ I
621
+ 14
622
+ I
623
+ 14
624
+ I
625
+ 17
626
+ I
627
+ d
628
+ I
629
+ 22
630
+ I
631
+ 16
632
+ I
633
+ 32
634
+ x
635
+ 69
636
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
637
+ p
638
+ 1
639
+ x
640
+ 4
641
+ opts
642
+ x
643
+ 17
644
+ method_visibility
645
+ x
646
+ 15
647
+ add_defn_method
648
+ p
649
+ 3
650
+ I
651
+ 2
652
+ I
653
+ a
654
+ I
655
+ 10
656
+ x
657
+ 69
658
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
659
+ p
660
+ 0
661
+ x
662
+ 13
663
+ attach_method
664
+ x
665
+ 14
666
+ MemoryDebugger
667
+ M
668
+ 1
669
+ n
670
+ n
671
+ x
672
+ 14
673
+ MemoryDebugger
674
+ i
675
+ 16
676
+ 5
677
+ 66
678
+ 99
679
+ 7
680
+ 0
681
+ 7
682
+ 1
683
+ 65
684
+ 67
685
+ 49
686
+ 2
687
+ 0
688
+ 49
689
+ 3
690
+ 4
691
+ 11
692
+ I
693
+ 5
694
+ I
695
+ 0
696
+ I
697
+ 0
698
+ I
699
+ 0
700
+ n
701
+ p
702
+ 4
703
+ x
704
+ 19
705
+ report_on_instances
706
+ M
707
+ 1
708
+ n
709
+ n
710
+ x
711
+ 19
712
+ report_on_instances
713
+ i
714
+ 177
715
+ 23
716
+ 1
717
+ 10
718
+ 14
719
+ 44
720
+ 43
721
+ 0
722
+ 78
723
+ 49
724
+ 1
725
+ 1
726
+ 19
727
+ 1
728
+ 15
729
+ 65
730
+ 7
731
+ 2
732
+ 49
733
+ 3
734
+ 1
735
+ 9
736
+ 32
737
+ 65
738
+ 7
739
+ 2
740
+ 49
741
+ 4
742
+ 1
743
+ 13
744
+ 10
745
+ 39
746
+ 15
747
+ 65
748
+ 7
749
+ 2
750
+ 78
751
+ 49
752
+ 5
753
+ 2
754
+ 15
755
+ 65
756
+ 7
757
+ 2
758
+ 65
759
+ 7
760
+ 2
761
+ 49
762
+ 4
763
+ 1
764
+ 79
765
+ 81
766
+ 6
767
+ 49
768
+ 5
769
+ 2
770
+ 15
771
+ 65
772
+ 7
773
+ 7
774
+ 49
775
+ 3
776
+ 1
777
+ 9
778
+ 74
779
+ 65
780
+ 7
781
+ 7
782
+ 49
783
+ 4
784
+ 1
785
+ 13
786
+ 10
787
+ 87
788
+ 15
789
+ 65
790
+ 7
791
+ 7
792
+ 44
793
+ 43
794
+ 0
795
+ 78
796
+ 49
797
+ 1
798
+ 1
799
+ 49
800
+ 5
801
+ 2
802
+ 15
803
+ 65
804
+ 7
805
+ 7
806
+ 49
807
+ 4
808
+ 1
809
+ 20
810
+ 0
811
+ 14
812
+ 2
813
+ 49
814
+ 8
815
+ 1
816
+ 13
817
+ 10
818
+ 116
819
+ 15
820
+ 35
821
+ 0
822
+ 13
823
+ 18
824
+ 3
825
+ 49
826
+ 9
827
+ 2
828
+ 15
829
+ 8
830
+ 120
831
+ 18
832
+ 2
833
+ 16
834
+ 2
835
+ 15
836
+ 45
837
+ 10
838
+ 11
839
+ 49
840
+ 12
841
+ 0
842
+ 15
843
+ 5
844
+ 20
845
+ 1
846
+ 7
847
+ 13
848
+ 79
849
+ 49
850
+ 14
851
+ 2
852
+ 47
853
+ 49
854
+ 15
855
+ 1
856
+ 15
857
+ 45
858
+ 16
859
+ 17
860
+ 20
861
+ 0
862
+ 56
863
+ 18
864
+ 50
865
+ 19
866
+ 1
867
+ 19
868
+ 2
869
+ 15
870
+ 5
871
+ 20
872
+ 0
873
+ 47
874
+ 101
875
+ 20
876
+ 7
877
+ 21
878
+ 20
879
+ 2
880
+ 47
881
+ 101
882
+ 20
883
+ 7
884
+ 22
885
+ 63
886
+ 4
887
+ 47
888
+ 49
889
+ 23
890
+ 1
891
+ 11
892
+ I
893
+ 8
894
+ I
895
+ 3
896
+ I
897
+ 1
898
+ I
899
+ 2
900
+ n
901
+ p
902
+ 24
903
+ x
904
+ 4
905
+ Hash
906
+ x
907
+ 16
908
+ new_from_literal
909
+ x
910
+ 6
911
+ @@runs
912
+ x
913
+ 23
914
+ class_variable_defined?
915
+ x
916
+ 18
917
+ class_variable_get
918
+ x
919
+ 18
920
+ class_variable_set
921
+ x
922
+ 1
923
+ +
924
+ x
925
+ 19
926
+ @@object_id_tracker
927
+ x
928
+ 2
929
+ []
930
+ x
931
+ 3
932
+ []=
933
+ x
934
+ 2
935
+ GC
936
+ n
937
+ x
938
+ 5
939
+ start
940
+ x
941
+ 8
942
+ gc_pause
943
+ x
944
+ 5
945
+ fetch
946
+ x
947
+ 5
948
+ sleep
949
+ x
950
+ 11
951
+ ObjectSpace
952
+ n
953
+ M
954
+ 1
955
+ p
956
+ 2
957
+ x
958
+ 9
959
+ for_block
960
+ t
961
+ n
962
+ x
963
+ 19
964
+ report_on_instances
965
+ i
966
+ 158
967
+ 57
968
+ 19
969
+ 0
970
+ 15
971
+ 21
972
+ 1
973
+ 1
974
+ 7
975
+ 0
976
+ 2
977
+ 49
978
+ 1
979
+ 2
980
+ 9
981
+ 156
982
+ 65
983
+ 7
984
+ 2
985
+ 49
986
+ 3
987
+ 1
988
+ 80
989
+ 85
990
+ 4
991
+ 9
992
+ 132
993
+ 65
994
+ 7
995
+ 5
996
+ 49
997
+ 3
998
+ 1
999
+ 21
1000
+ 1
1001
+ 0
1002
+ 49
1003
+ 6
1004
+ 1
1005
+ 20
1006
+ 0
1007
+ 49
1008
+ 7
1009
+ 0
1010
+ 49
1011
+ 8
1012
+ 1
1013
+ 9
1014
+ 51
1015
+ 1
1016
+ 8
1017
+ 130
1018
+ 26
1019
+ 93
1020
+ 0
1021
+ 15
1022
+ 29
1023
+ 71
1024
+ 0
1025
+ 5
1026
+ 20
1027
+ 0
1028
+ 49
1029
+ 9
1030
+ 0
1031
+ 47
1032
+ 49
1033
+ 10
1034
+ 1
1035
+ 30
1036
+ 8
1037
+ 98
1038
+ 26
1039
+ 93
1040
+ 1
1041
+ 15
1042
+ 24
1043
+ 13
1044
+ 45
1045
+ 11
1046
+ 12
1047
+ 12
1048
+ 49
1049
+ 13
1050
+ 1
1051
+ 10
1052
+ 88
1053
+ 8
1054
+ 93
1055
+ 15
1056
+ 1
1057
+ 25
1058
+ 8
1059
+ 98
1060
+ 15
1061
+ 92
1062
+ 1
1063
+ 27
1064
+ 34
1065
+ 92
1066
+ 0
1067
+ 27
1068
+ 15
1069
+ 5
1070
+ 20
1071
+ 0
1072
+ 49
1073
+ 14
1074
+ 0
1075
+ 49
1076
+ 15
1077
+ 0
1078
+ 47
1079
+ 101
1080
+ 16
1081
+ 7
1082
+ 17
1083
+ 20
1084
+ 0
1085
+ 49
1086
+ 7
1087
+ 0
1088
+ 47
1089
+ 101
1090
+ 16
1091
+ 63
1092
+ 3
1093
+ 47
1094
+ 49
1095
+ 10
1096
+ 1
1097
+ 8
1098
+ 133
1099
+ 1
1100
+ 15
1101
+ 65
1102
+ 7
1103
+ 5
1104
+ 49
1105
+ 3
1106
+ 1
1107
+ 21
1108
+ 1
1109
+ 0
1110
+ 49
1111
+ 6
1112
+ 1
1113
+ 20
1114
+ 0
1115
+ 49
1116
+ 7
1117
+ 0
1118
+ 49
1119
+ 18
1120
+ 1
1121
+ 8
1122
+ 157
1123
+ 1
1124
+ 11
1125
+ I
1126
+ 8
1127
+ I
1128
+ 1
1129
+ I
1130
+ 1
1131
+ I
1132
+ 1
1133
+ n
1134
+ p
1135
+ 19
1136
+ x
1137
+ 7
1138
+ verbose
1139
+ x
1140
+ 5
1141
+ fetch
1142
+ x
1143
+ 6
1144
+ @@runs
1145
+ x
1146
+ 18
1147
+ class_variable_get
1148
+ x
1149
+ 1
1150
+ >
1151
+ x
1152
+ 19
1153
+ @@object_id_tracker
1154
+ x
1155
+ 2
1156
+ []
1157
+ x
1158
+ 9
1159
+ object_id
1160
+ x
1161
+ 8
1162
+ include?
1163
+ x
1164
+ 7
1165
+ inspect
1166
+ x
1167
+ 4
1168
+ puts
1169
+ x
1170
+ 13
1171
+ StandardError
1172
+ n
1173
+ x
1174
+ 3
1175
+ ===
1176
+ x
1177
+ 5
1178
+ class
1179
+ x
1180
+ 4
1181
+ name
1182
+ x
1183
+ 4
1184
+ to_s
1185
+ s
1186
+ 1
1187
+ :
1188
+ x
1189
+ 2
1190
+ <<
1191
+ p
1192
+ 31
1193
+ I
1194
+ 0
1195
+ I
1196
+ 24
1197
+ I
1198
+ 4
1199
+ I
1200
+ 25
1201
+ I
1202
+ f
1203
+ I
1204
+ 26
1205
+ I
1206
+ 1a
1207
+ I
1208
+ 27
1209
+ I
1210
+ 33
1211
+ I
1212
+ 29
1213
+ I
1214
+ 47
1215
+ I
1216
+ 0
1217
+ I
1218
+ 4c
1219
+ I
1220
+ 2b
1221
+ I
1222
+ 62
1223
+ I
1224
+ 0
1225
+ I
1226
+ 66
1227
+ I
1228
+ 2c
1229
+ I
1230
+ 82
1231
+ I
1232
+ 0
1233
+ I
1234
+ 84
1235
+ I
1236
+ 26
1237
+ I
1238
+ 85
1239
+ I
1240
+ 0
1241
+ I
1242
+ 86
1243
+ I
1244
+ 2f
1245
+ I
1246
+ 9c
1247
+ I
1248
+ 25
1249
+ I
1250
+ 9d
1251
+ I
1252
+ 0
1253
+ I
1254
+ 9e
1255
+ x
1256
+ 69
1257
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
1258
+ p
1259
+ 1
1260
+ x
1261
+ 3
1262
+ obj
1263
+ x
1264
+ 11
1265
+ each_object
1266
+ x
1267
+ 4
1268
+ to_s
1269
+ s
1270
+ 2
1271
+ :
1272
+ s
1273
+ 11
1274
+ instances.
1275
+ x
1276
+ 4
1277
+ puts
1278
+ p
1279
+ 19
1280
+ I
1281
+ -1
1282
+ I
1283
+ 1d
1284
+ I
1285
+ e
1286
+ I
1287
+ 1e
1288
+ I
1289
+ 28
1290
+ I
1291
+ 1f
1292
+ I
1293
+ 38
1294
+ I
1295
+ 20
1296
+ I
1297
+ 58
1298
+ I
1299
+ 21
1300
+ I
1301
+ 79
1302
+ I
1303
+ 22
1304
+ I
1305
+ 80
1306
+ I
1307
+ 23
1308
+ I
1309
+ 8e
1310
+ I
1311
+ 24
1312
+ I
1313
+ 9b
1314
+ I
1315
+ 32
1316
+ I
1317
+ b1
1318
+ x
1319
+ 69
1320
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
1321
+ p
1322
+ 3
1323
+ x
1324
+ 4
1325
+ type
1326
+ x
1327
+ 7
1328
+ options
1329
+ x
1330
+ 5
1331
+ count
1332
+ x
1333
+ 17
1334
+ method_visibility
1335
+ x
1336
+ 15
1337
+ add_defn_method
1338
+ p
1339
+ 3
1340
+ I
1341
+ 2
1342
+ I
1343
+ 1d
1344
+ I
1345
+ 10
1346
+ x
1347
+ 69
1348
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
1349
+ p
1350
+ 0
1351
+ x
1352
+ 12
1353
+ WatchProject
1354
+ x
1355
+ 13
1356
+ UpdateProject
1357
+ n
1358
+ x
1359
+ 10
1360
+ open_class
1361
+ x
1362
+ 14
1363
+ __class_init__
1364
+ M
1365
+ 1
1366
+ n
1367
+ n
1368
+ x
1369
+ 12
1370
+ WatchProject
1371
+ i
1372
+ 99
1373
+ 5
1374
+ 66
1375
+ 5
1376
+ 7
1377
+ 0
1378
+ 47
1379
+ 49
1380
+ 1
1381
+ 1
1382
+ 15
1383
+ 5
1384
+ 7
1385
+ 2
1386
+ 7
1387
+ 3
1388
+ 47
1389
+ 49
1390
+ 4
1391
+ 2
1392
+ 15
1393
+ 5
1394
+ 45
1395
+ 5
1396
+ 6
1397
+ 47
1398
+ 49
1399
+ 7
1400
+ 1
1401
+ 15
1402
+ 99
1403
+ 7
1404
+ 8
1405
+ 7
1406
+ 9
1407
+ 65
1408
+ 67
1409
+ 49
1410
+ 10
1411
+ 0
1412
+ 49
1413
+ 11
1414
+ 4
1415
+ 15
1416
+ 99
1417
+ 7
1418
+ 12
1419
+ 7
1420
+ 13
1421
+ 65
1422
+ 67
1423
+ 49
1424
+ 10
1425
+ 0
1426
+ 49
1427
+ 11
1428
+ 4
1429
+ 15
1430
+ 99
1431
+ 7
1432
+ 14
1433
+ 7
1434
+ 15
1435
+ 65
1436
+ 67
1437
+ 49
1438
+ 10
1439
+ 0
1440
+ 49
1441
+ 11
1442
+ 4
1443
+ 15
1444
+ 5
1445
+ 99
1446
+ 43
1447
+ 16
1448
+ 12
1449
+ 49
1450
+ 17
1451
+ 1
1452
+ 13
1453
+ 99
1454
+ 12
1455
+ 7
1456
+ 18
1457
+ 12
1458
+ 7
1459
+ 19
1460
+ 12
1461
+ 65
1462
+ 12
1463
+ 49
1464
+ 20
1465
+ 4
1466
+ 15
1467
+ 54
1468
+ 50
1469
+ 18
1470
+ 0
1471
+ 11
1472
+ I
1473
+ 6
1474
+ I
1475
+ 0
1476
+ I
1477
+ 0
1478
+ I
1479
+ 0
1480
+ n
1481
+ p
1482
+ 21
1483
+ x
1484
+ 5
1485
+ watch
1486
+ x
1487
+ 8
1488
+ register
1489
+ x
1490
+ 16
1491
+ last_update_time
1492
+ x
1493
+ 15
1494
+ last_sass_files
1495
+ x
1496
+ 13
1497
+ attr_accessor
1498
+ x
1499
+ 14
1500
+ MemoryDebugger
1501
+ n
1502
+ x
1503
+ 7
1504
+ include
1505
+ x
1506
+ 7
1507
+ perform
1508
+ M
1509
+ 1
1510
+ n
1511
+ n
1512
+ x
1513
+ 7
1514
+ perform
1515
+ i
1516
+ 269
1517
+ 45
1518
+ 0
1519
+ 1
1520
+ 7
1521
+ 2
1522
+ 64
1523
+ 56
1524
+ 3
1525
+ 50
1526
+ 4
1527
+ 1
1528
+ 15
1529
+ 5
1530
+ 5
1531
+ 48
1532
+ 5
1533
+ 47
1534
+ 49
1535
+ 6
1536
+ 1
1537
+ 15
1538
+ 5
1539
+ 48
1540
+ 7
1541
+ 15
1542
+ 5
1543
+ 7
1544
+ 8
1545
+ 64
1546
+ 47
1547
+ 49
1548
+ 9
1549
+ 1
1550
+ 15
1551
+ 5
1552
+ 48
1553
+ 10
1554
+ 7
1555
+ 11
1556
+ 49
1557
+ 12
1558
+ 1
1559
+ 9
1560
+ 134
1561
+ 5
1562
+ 7
1563
+ 13
1564
+ 64
1565
+ 47
1566
+ 49
1567
+ 9
1568
+ 1
1569
+ 15
1570
+ 99
1571
+ 43
1572
+ 14
1573
+ 7
1574
+ 15
1575
+ 49
1576
+ 12
1577
+ 1
1578
+ 45
1579
+ 16
1580
+ 17
1581
+ 13
1582
+ 71
1583
+ 18
1584
+ 47
1585
+ 9
1586
+ 82
1587
+ 47
1588
+ 49
1589
+ 19
1590
+ 0
1591
+ 13
1592
+ 47
1593
+ 49
1594
+ 20
1595
+ 0
1596
+ 15
1597
+ 8
1598
+ 85
1599
+ 49
1600
+ 18
1601
+ 0
1602
+ 17
1603
+ 2
1604
+ 19
1605
+ 0
1606
+ 15
1607
+ 99
1608
+ 43
1609
+ 14
1610
+ 12
1611
+ 7
1612
+ 15
1613
+ 12
1614
+ 49
1615
+ 21
1616
+ 2
1617
+ 15
1618
+ 2
1619
+ 15
1620
+ 45
1621
+ 22
1622
+ 23
1623
+ 43
1624
+ 24
1625
+ 7
1626
+ 25
1627
+ 64
1628
+ 45
1629
+ 22
1630
+ 26
1631
+ 43
1632
+ 24
1633
+ 43
1634
+ 27
1635
+ 49
1636
+ 28
1637
+ 2
1638
+ 15
1639
+ 99
1640
+ 43
1641
+ 14
1642
+ 7
1643
+ 15
1644
+ 20
1645
+ 0
1646
+ 49
1647
+ 21
1648
+ 2
1649
+ 8
1650
+ 135
1651
+ 1
1652
+ 15
1653
+ 45
1654
+ 22
1655
+ 29
1656
+ 43
1657
+ 24
1658
+ 43
1659
+ 30
1660
+ 49
1661
+ 31
1662
+ 0
1663
+ 7
1664
+ 32
1665
+ 64
1666
+ 83
1667
+ 33
1668
+ 9
1669
+ 158
1670
+ 7
1671
+ 34
1672
+ 64
1673
+ 8
1674
+ 161
1675
+ 7
1676
+ 35
1677
+ 64
1678
+ 19
1679
+ 1
1680
+ 15
1681
+ 5
1682
+ 7
1683
+ 36
1684
+ 20
1685
+ 1
1686
+ 47
1687
+ 101
1688
+ 31
1689
+ 7
1690
+ 37
1691
+ 63
1692
+ 3
1693
+ 47
1694
+ 49
1695
+ 38
1696
+ 1
1697
+ 15
1698
+ 26
1699
+ 93
1700
+ 0
1701
+ 15
1702
+ 29
1703
+ 199
1704
+ 0
1705
+ 45
1706
+ 22
1707
+ 39
1708
+ 56
1709
+ 40
1710
+ 50
1711
+ 41
1712
+ 0
1713
+ 30
1714
+ 8
1715
+ 265
1716
+ 26
1717
+ 93
1718
+ 1
1719
+ 15
1720
+ 24
1721
+ 13
1722
+ 45
1723
+ 22
1724
+ 42
1725
+ 43
1726
+ 43
1727
+ 12
1728
+ 49
1729
+ 44
1730
+ 1
1731
+ 10
1732
+ 218
1733
+ 8
1734
+ 260
1735
+ 15
1736
+ 24
1737
+ 19
1738
+ 2
1739
+ 15
1740
+ 20
1741
+ 2
1742
+ 49
1743
+ 45
1744
+ 0
1745
+ 7
1746
+ 46
1747
+ 13
1748
+ 70
1749
+ 9
1750
+ 246
1751
+ 15
1752
+ 44
1753
+ 43
1754
+ 47
1755
+ 7
1756
+ 48
1757
+ 78
1758
+ 49
1759
+ 18
1760
+ 2
1761
+ 6
1762
+ 46
1763
+ 49
1764
+ 49
1765
+ 1
1766
+ 9
1767
+ 256
1768
+ 5
1769
+ 48
1770
+ 50
1771
+ 8
1772
+ 257
1773
+ 1
1774
+ 25
1775
+ 8
1776
+ 265
1777
+ 15
1778
+ 92
1779
+ 1
1780
+ 27
1781
+ 34
1782
+ 92
1783
+ 0
1784
+ 27
1785
+ 11
1786
+ I
1787
+ 9
1788
+ I
1789
+ 3
1790
+ I
1791
+ 0
1792
+ I
1793
+ 0
1794
+ n
1795
+ p
1796
+ 51
1797
+ x
1798
+ 6
1799
+ Signal
1800
+ n
1801
+ s
1802
+ 3
1803
+ INT
1804
+ M
1805
+ 1
1806
+ p
1807
+ 2
1808
+ x
1809
+ 9
1810
+ for_block
1811
+ t
1812
+ n
1813
+ x
1814
+ 7
1815
+ perform
1816
+ i
1817
+ 16
1818
+ 5
1819
+ 7
1820
+ 0
1821
+ 64
1822
+ 47
1823
+ 49
1824
+ 1
1825
+ 1
1826
+ 15
1827
+ 5
1828
+ 78
1829
+ 47
1830
+ 49
1831
+ 2
1832
+ 1
1833
+ 11
1834
+ I
1835
+ 3
1836
+ I
1837
+ 0
1838
+ I
1839
+ 0
1840
+ I
1841
+ 0
1842
+ I
1843
+ -2
1844
+ p
1845
+ 3
1846
+ s
1847
+ 0
1848
+
1849
+ x
1850
+ 4
1851
+ puts
1852
+ x
1853
+ 4
1854
+ exit
1855
+ p
1856
+ 5
1857
+ I
1858
+ 0
1859
+ I
1860
+ 3f
1861
+ I
1862
+ 9
1863
+ I
1864
+ 40
1865
+ I
1866
+ 10
1867
+ x
1868
+ 69
1869
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
1870
+ p
1871
+ 0
1872
+ x
1873
+ 4
1874
+ trap
1875
+ x
1876
+ 21
1877
+ new_compiler_instance
1878
+ x
1879
+ 21
1880
+ check_for_sass_files!
1881
+ x
1882
+ 9
1883
+ recompile
1884
+ s
1885
+ 4
1886
+ fssm
1887
+ x
1888
+ 7
1889
+ require
1890
+ x
1891
+ 7
1892
+ options
1893
+ x
1894
+ 4
1895
+ poll
1896
+ x
1897
+ 2
1898
+ []
1899
+ s
1900
+ 21
1901
+ fssm/backends/polling
1902
+ x
1903
+ 7
1904
+ Globals
1905
+ x
1906
+ 7
1907
+ $stderr
1908
+ x
1909
+ 8
1910
+ StringIO
1911
+ n
1912
+ x
1913
+ 3
1914
+ new
1915
+ x
1916
+ 8
1917
+ allocate
1918
+ x
1919
+ 10
1920
+ initialize
1921
+ x
1922
+ 3
1923
+ []=
1924
+ x
1925
+ 4
1926
+ FSSM
1927
+ n
1928
+ x
1929
+ 8
1930
+ Backends
1931
+ s
1932
+ 7
1933
+ Default
1934
+ n
1935
+ x
1936
+ 7
1937
+ Polling
1938
+ x
1939
+ 9
1940
+ const_set
1941
+ n
1942
+ x
1943
+ 7
1944
+ Default
1945
+ x
1946
+ 4
1947
+ to_s
1948
+ s
1949
+ 23
1950
+ FSSM::Backends::Polling
1951
+ x
1952
+ 2
1953
+ ==
1954
+ s
1955
+ 7
1956
+ polling
1957
+ s
1958
+ 8
1959
+ watching
1960
+ s
1961
+ 15
1962
+ >>> Compass is
1963
+ s
1964
+ 35
1965
+ for changes. Press Ctrl-C to Stop.
1966
+ x
1967
+ 4
1968
+ puts
1969
+ n
1970
+ M
1971
+ 1
1972
+ p
1973
+ 2
1974
+ x
1975
+ 9
1976
+ for_block
1977
+ t
1978
+ n
1979
+ x
1980
+ 7
1981
+ perform
1982
+ i
1983
+ 34
1984
+ 57
1985
+ 19
1986
+ 0
1987
+ 15
1988
+ 45
1989
+ 0
1990
+ 1
1991
+ 49
1992
+ 2
1993
+ 0
1994
+ 49
1995
+ 3
1996
+ 0
1997
+ 56
1998
+ 4
1999
+ 50
2000
+ 5
2001
+ 0
2002
+ 15
2003
+ 45
2004
+ 0
2005
+ 6
2006
+ 49
2007
+ 2
2008
+ 0
2009
+ 49
2010
+ 7
2011
+ 0
2012
+ 56
2013
+ 8
2014
+ 50
2015
+ 5
2016
+ 0
2017
+ 11
2018
+ I
2019
+ 4
2020
+ I
2021
+ 1
2022
+ I
2023
+ 1
2024
+ I
2025
+ 1
2026
+ n
2027
+ p
2028
+ 9
2029
+ x
2030
+ 7
2031
+ Compass
2032
+ n
2033
+ x
2034
+ 13
2035
+ configuration
2036
+ x
2037
+ 15
2038
+ sass_load_paths
2039
+ M
2040
+ 1
2041
+ p
2042
+ 2
2043
+ x
2044
+ 9
2045
+ for_block
2046
+ t
2047
+ n
2048
+ x
2049
+ 7
2050
+ perform
2051
+ i
2052
+ 51
2053
+ 57
2054
+ 19
2055
+ 0
2056
+ 15
2057
+ 20
2058
+ 0
2059
+ 7
2060
+ 0
2061
+ 49
2062
+ 1
2063
+ 1
2064
+ 9
2065
+ 22
2066
+ 20
2067
+ 0
2068
+ 49
2069
+ 0
2070
+ 0
2071
+ 19
2072
+ 0
2073
+ 8
2074
+ 23
2075
+ 1
2076
+ 15
2077
+ 20
2078
+ 0
2079
+ 45
2080
+ 2
2081
+ 3
2082
+ 49
2083
+ 4
2084
+ 1
2085
+ 9
2086
+ 37
2087
+ 1
2088
+ 8
2089
+ 39
2090
+ 1
2091
+ 11
2092
+ 15
2093
+ 21
2094
+ 1
2095
+ 0
2096
+ 20
2097
+ 0
2098
+ 56
2099
+ 5
2100
+ 50
2101
+ 6
2102
+ 1
2103
+ 11
2104
+ I
2105
+ 5
2106
+ I
2107
+ 1
2108
+ I
2109
+ 1
2110
+ I
2111
+ 1
2112
+ n
2113
+ p
2114
+ 7
2115
+ x
2116
+ 4
2117
+ root
2118
+ x
2119
+ 11
2120
+ respond_to?
2121
+ x
2122
+ 6
2123
+ String
2124
+ n
2125
+ x
2126
+ 5
2127
+ is_a?
2128
+ M
2129
+ 1
2130
+ p
2131
+ 2
2132
+ x
2133
+ 9
2134
+ for_block
2135
+ t
2136
+ n
2137
+ x
2138
+ 7
2139
+ perform
2140
+ i
2141
+ 69
2142
+ 57
2143
+ 19
2144
+ 0
2145
+ 15
2146
+ 20
2147
+ 0
2148
+ 7
2149
+ 0
2150
+ 64
2151
+ 49
2152
+ 1
2153
+ 1
2154
+ 15
2155
+ 20
2156
+ 0
2157
+ 5
2158
+ 7
2159
+ 2
2160
+ 47
2161
+ 49
2162
+ 3
2163
+ 1
2164
+ 13
2165
+ 70
2166
+ 10
2167
+ 33
2168
+ 44
2169
+ 43
2170
+ 4
2171
+ 12
2172
+ 49
2173
+ 5
2174
+ 1
2175
+ 50
2176
+ 6
2177
+ 0
2178
+ 15
2179
+ 20
2180
+ 0
2181
+ 56
2182
+ 7
2183
+ 50
2184
+ 8
2185
+ 0
2186
+ 15
2187
+ 20
2188
+ 0
2189
+ 5
2190
+ 7
2191
+ 2
2192
+ 47
2193
+ 49
2194
+ 3
2195
+ 1
2196
+ 13
2197
+ 70
2198
+ 10
2199
+ 65
2200
+ 44
2201
+ 43
2202
+ 4
2203
+ 12
2204
+ 49
2205
+ 5
2206
+ 1
2207
+ 50
2208
+ 9
2209
+ 0
2210
+ 11
2211
+ I
2212
+ 5
2213
+ I
2214
+ 1
2215
+ I
2216
+ 1
2217
+ I
2218
+ 1
2219
+ n
2220
+ p
2221
+ 10
2222
+ s
2223
+ 12
2224
+ **/*.s[ac]ss
2225
+ x
2226
+ 4
2227
+ glob
2228
+ x
2229
+ 9
2230
+ recompile
2231
+ x
2232
+ 6
2233
+ method
2234
+ x
2235
+ 4
2236
+ Proc
2237
+ x
2238
+ 14
2239
+ __from_block__
2240
+ x
2241
+ 6
2242
+ update
2243
+ M
2244
+ 1
2245
+ p
2246
+ 2
2247
+ x
2248
+ 9
2249
+ for_block
2250
+ t
2251
+ n
2252
+ x
2253
+ 7
2254
+ perform
2255
+ i
2256
+ 30
2257
+ 58
2258
+ 37
2259
+ 19
2260
+ 0
2261
+ 15
2262
+ 37
2263
+ 19
2264
+ 1
2265
+ 15
2266
+ 15
2267
+ 5
2268
+ 20
2269
+ 0
2270
+ 20
2271
+ 1
2272
+ 47
2273
+ 49
2274
+ 0
2275
+ 2
2276
+ 15
2277
+ 5
2278
+ 20
2279
+ 0
2280
+ 20
2281
+ 1
2282
+ 47
2283
+ 49
2284
+ 1
2285
+ 2
2286
+ 11
2287
+ I
2288
+ 6
2289
+ I
2290
+ 2
2291
+ I
2292
+ 2
2293
+ I
2294
+ 2
2295
+ n
2296
+ p
2297
+ 2
2298
+ x
2299
+ 19
2300
+ remove_obsolete_css
2301
+ x
2302
+ 9
2303
+ recompile
2304
+ p
2305
+ 3
2306
+ I
2307
+ 0
2308
+ I
2309
+ 5e
2310
+ I
2311
+ 1e
2312
+ x
2313
+ 69
2314
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2315
+ p
2316
+ 2
2317
+ x
2318
+ 4
2319
+ base
2320
+ x
2321
+ 8
2322
+ relative
2323
+ x
2324
+ 6
2325
+ delete
2326
+ x
2327
+ 6
2328
+ create
2329
+ p
2330
+ 11
2331
+ I
2332
+ 0
2333
+ I
2334
+ 5a
2335
+ I
2336
+ 4
2337
+ I
2338
+ 5b
2339
+ I
2340
+ d
2341
+ I
2342
+ 5d
2343
+ I
2344
+ 25
2345
+ I
2346
+ 5e
2347
+ I
2348
+ 2d
2349
+ I
2350
+ 5f
2351
+ I
2352
+ 45
2353
+ x
2354
+ 69
2355
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2356
+ p
2357
+ 1
2358
+ x
2359
+ 4
2360
+ path
2361
+ x
2362
+ 4
2363
+ path
2364
+ p
2365
+ 13
2366
+ I
2367
+ 0
2368
+ I
2369
+ 57
2370
+ I
2371
+ 4
2372
+ I
2373
+ 58
2374
+ I
2375
+ 17
2376
+ I
2377
+ 0
2378
+ I
2379
+ 18
2380
+ I
2381
+ 59
2382
+ I
2383
+ 27
2384
+ I
2385
+ 0
2386
+ I
2387
+ 28
2388
+ I
2389
+ 5a
2390
+ I
2391
+ 33
2392
+ x
2393
+ 69
2394
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2395
+ p
2396
+ 1
2397
+ x
2398
+ 9
2399
+ load_path
2400
+ x
2401
+ 4
2402
+ each
2403
+ n
2404
+ x
2405
+ 7
2406
+ watches
2407
+ M
2408
+ 1
2409
+ p
2410
+ 2
2411
+ x
2412
+ 9
2413
+ for_block
2414
+ t
2415
+ n
2416
+ x
2417
+ 7
2418
+ perform
2419
+ i
2420
+ 28
2421
+ 58
2422
+ 37
2423
+ 19
2424
+ 0
2425
+ 15
2426
+ 37
2427
+ 19
2428
+ 1
2429
+ 15
2430
+ 15
2431
+ 21
2432
+ 1
2433
+ 0
2434
+ 45
2435
+ 0
2436
+ 1
2437
+ 49
2438
+ 2
2439
+ 0
2440
+ 49
2441
+ 3
2442
+ 0
2443
+ 56
2444
+ 4
2445
+ 50
2446
+ 5
2447
+ 1
2448
+ 11
2449
+ I
2450
+ 6
2451
+ I
2452
+ 2
2453
+ I
2454
+ 2
2455
+ I
2456
+ 2
2457
+ n
2458
+ p
2459
+ 6
2460
+ x
2461
+ 7
2462
+ Compass
2463
+ n
2464
+ x
2465
+ 13
2466
+ configuration
2467
+ x
2468
+ 12
2469
+ project_path
2470
+ M
2471
+ 1
2472
+ p
2473
+ 2
2474
+ x
2475
+ 9
2476
+ for_block
2477
+ t
2478
+ n
2479
+ x
2480
+ 7
2481
+ perform
2482
+ i
2483
+ 37
2484
+ 57
2485
+ 19
2486
+ 0
2487
+ 15
2488
+ 20
2489
+ 0
2490
+ 21
2491
+ 1
2492
+ 0
2493
+ 49
2494
+ 0
2495
+ 1
2496
+ 15
2497
+ 20
2498
+ 0
2499
+ 56
2500
+ 1
2501
+ 50
2502
+ 2
2503
+ 0
2504
+ 15
2505
+ 20
2506
+ 0
2507
+ 56
2508
+ 3
2509
+ 50
2510
+ 4
2511
+ 0
2512
+ 15
2513
+ 20
2514
+ 0
2515
+ 56
2516
+ 5
2517
+ 50
2518
+ 6
2519
+ 0
2520
+ 11
2521
+ I
2522
+ 4
2523
+ I
2524
+ 1
2525
+ I
2526
+ 1
2527
+ I
2528
+ 1
2529
+ n
2530
+ p
2531
+ 7
2532
+ x
2533
+ 4
2534
+ glob
2535
+ M
2536
+ 1
2537
+ p
2538
+ 2
2539
+ x
2540
+ 9
2541
+ for_block
2542
+ t
2543
+ n
2544
+ x
2545
+ 7
2546
+ perform
2547
+ i
2548
+ 36
2549
+ 58
2550
+ 37
2551
+ 19
2552
+ 0
2553
+ 15
2554
+ 37
2555
+ 19
2556
+ 1
2557
+ 15
2558
+ 15
2559
+ 5
2560
+ 7
2561
+ 0
2562
+ 20
2563
+ 1
2564
+ 47
2565
+ 101
2566
+ 1
2567
+ 63
2568
+ 2
2569
+ 47
2570
+ 49
2571
+ 2
2572
+ 1
2573
+ 15
2574
+ 21
2575
+ 2
2576
+ 1
2577
+ 20
2578
+ 0
2579
+ 20
2580
+ 1
2581
+ 49
2582
+ 3
2583
+ 2
2584
+ 11
2585
+ I
2586
+ 6
2587
+ I
2588
+ 2
2589
+ I
2590
+ 2
2591
+ I
2592
+ 2
2593
+ n
2594
+ p
2595
+ 4
2596
+ s
2597
+ 24
2598
+ >>> Change detected to:
2599
+ x
2600
+ 4
2601
+ to_s
2602
+ x
2603
+ 4
2604
+ puts
2605
+ x
2606
+ 4
2607
+ call
2608
+ p
2609
+ 7
2610
+ I
2611
+ 0
2612
+ I
2613
+ 65
2614
+ I
2615
+ a
2616
+ I
2617
+ 66
2618
+ I
2619
+ 19
2620
+ I
2621
+ 67
2622
+ I
2623
+ 24
2624
+ x
2625
+ 69
2626
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2627
+ p
2628
+ 2
2629
+ x
2630
+ 4
2631
+ base
2632
+ x
2633
+ 8
2634
+ relative
2635
+ x
2636
+ 6
2637
+ update
2638
+ M
2639
+ 1
2640
+ p
2641
+ 2
2642
+ x
2643
+ 9
2644
+ for_block
2645
+ t
2646
+ n
2647
+ x
2648
+ 7
2649
+ perform
2650
+ i
2651
+ 36
2652
+ 58
2653
+ 37
2654
+ 19
2655
+ 0
2656
+ 15
2657
+ 37
2658
+ 19
2659
+ 1
2660
+ 15
2661
+ 15
2662
+ 5
2663
+ 7
2664
+ 0
2665
+ 20
2666
+ 1
2667
+ 47
2668
+ 101
2669
+ 1
2670
+ 63
2671
+ 2
2672
+ 47
2673
+ 49
2674
+ 2
2675
+ 1
2676
+ 15
2677
+ 21
2678
+ 2
2679
+ 1
2680
+ 20
2681
+ 0
2682
+ 20
2683
+ 1
2684
+ 49
2685
+ 3
2686
+ 2
2687
+ 11
2688
+ I
2689
+ 6
2690
+ I
2691
+ 2
2692
+ I
2693
+ 2
2694
+ I
2695
+ 2
2696
+ n
2697
+ p
2698
+ 4
2699
+ s
2700
+ 23
2701
+ >>> New file detected:
2702
+ x
2703
+ 4
2704
+ to_s
2705
+ x
2706
+ 4
2707
+ puts
2708
+ x
2709
+ 4
2710
+ call
2711
+ p
2712
+ 7
2713
+ I
2714
+ 0
2715
+ I
2716
+ 69
2717
+ I
2718
+ a
2719
+ I
2720
+ 6a
2721
+ I
2722
+ 19
2723
+ I
2724
+ 6b
2725
+ I
2726
+ 24
2727
+ x
2728
+ 69
2729
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2730
+ p
2731
+ 2
2732
+ x
2733
+ 4
2734
+ base
2735
+ x
2736
+ 8
2737
+ relative
2738
+ x
2739
+ 6
2740
+ create
2741
+ M
2742
+ 1
2743
+ p
2744
+ 2
2745
+ x
2746
+ 9
2747
+ for_block
2748
+ t
2749
+ n
2750
+ x
2751
+ 7
2752
+ perform
2753
+ i
2754
+ 36
2755
+ 58
2756
+ 37
2757
+ 19
2758
+ 0
2759
+ 15
2760
+ 37
2761
+ 19
2762
+ 1
2763
+ 15
2764
+ 15
2765
+ 5
2766
+ 7
2767
+ 0
2768
+ 20
2769
+ 1
2770
+ 47
2771
+ 101
2772
+ 1
2773
+ 63
2774
+ 2
2775
+ 47
2776
+ 49
2777
+ 2
2778
+ 1
2779
+ 15
2780
+ 21
2781
+ 2
2782
+ 1
2783
+ 20
2784
+ 0
2785
+ 20
2786
+ 1
2787
+ 49
2788
+ 3
2789
+ 2
2790
+ 11
2791
+ I
2792
+ 6
2793
+ I
2794
+ 2
2795
+ I
2796
+ 2
2797
+ I
2798
+ 2
2799
+ n
2800
+ p
2801
+ 4
2802
+ s
2803
+ 18
2804
+ >>> File Removed:
2805
+ x
2806
+ 4
2807
+ to_s
2808
+ x
2809
+ 4
2810
+ puts
2811
+ x
2812
+ 4
2813
+ call
2814
+ p
2815
+ 7
2816
+ I
2817
+ 0
2818
+ I
2819
+ 6d
2820
+ I
2821
+ a
2822
+ I
2823
+ 6e
2824
+ I
2825
+ 19
2826
+ I
2827
+ 6f
2828
+ I
2829
+ 24
2830
+ x
2831
+ 69
2832
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2833
+ p
2834
+ 2
2835
+ x
2836
+ 4
2837
+ base
2838
+ x
2839
+ 8
2840
+ relative
2841
+ x
2842
+ 6
2843
+ delete
2844
+ p
2845
+ 11
2846
+ I
2847
+ 0
2848
+ I
2849
+ 63
2850
+ I
2851
+ 4
2852
+ I
2853
+ 64
2854
+ I
2855
+ d
2856
+ I
2857
+ 65
2858
+ I
2859
+ 15
2860
+ I
2861
+ 69
2862
+ I
2863
+ 1d
2864
+ I
2865
+ 6d
2866
+ I
2867
+ 25
2868
+ x
2869
+ 69
2870
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2871
+ p
2872
+ 1
2873
+ x
2874
+ 4
2875
+ path
2876
+ x
2877
+ 4
2878
+ path
2879
+ p
2880
+ 5
2881
+ I
2882
+ 0
2883
+ I
2884
+ 62
2885
+ I
2886
+ a
2887
+ I
2888
+ 63
2889
+ I
2890
+ 1c
2891
+ x
2892
+ 69
2893
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2894
+ p
2895
+ 2
2896
+ x
2897
+ 4
2898
+ glob
2899
+ x
2900
+ 8
2901
+ callback
2902
+ p
2903
+ 7
2904
+ I
2905
+ 0
2906
+ I
2907
+ 56
2908
+ I
2909
+ 4
2910
+ I
2911
+ 57
2912
+ I
2913
+ 13
2914
+ I
2915
+ 62
2916
+ I
2917
+ 22
2918
+ x
2919
+ 69
2920
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
2921
+ p
2922
+ 1
2923
+ x
2924
+ 7
2925
+ monitor
2926
+ x
2927
+ 7
2928
+ monitor
2929
+ n
2930
+ x
2931
+ 13
2932
+ CallbackError
2933
+ x
2934
+ 3
2935
+ ===
2936
+ x
2937
+ 7
2938
+ message
2939
+ n
2940
+ x
2941
+ 6
2942
+ Regexp
2943
+ s
2944
+ 4
2945
+ exit
2946
+ x
2947
+ 2
2948
+ =~
2949
+ x
2950
+ 4
2951
+ exit
2952
+ p
2953
+ 49
2954
+ I
2955
+ -1
2956
+ I
2957
+ 3d
2958
+ I
2959
+ 0
2960
+ I
2961
+ 3e
2962
+ I
2963
+ c
2964
+ I
2965
+ 43
2966
+ I
2967
+ 15
2968
+ I
2969
+ 44
2970
+ I
2971
+ 19
2972
+ I
2973
+ 46
2974
+ I
2975
+ 22
2976
+ I
2977
+ 49
2978
+ I
2979
+ 2c
2980
+ I
2981
+ 4a
2982
+ I
2983
+ 35
2984
+ I
2985
+ 4c
2986
+ I
2987
+ 67
2988
+ I
2989
+ 4d
2990
+ I
2991
+ 7a
2992
+ I
2993
+ 4e
2994
+ I
2995
+ 86
2996
+ I
2997
+ 49
2998
+ I
2999
+ 87
3000
+ I
3001
+ 0
3002
+ I
3003
+ 88
3004
+ I
3005
+ 51
3006
+ I
3007
+ a1
3008
+ I
3009
+ 51
3010
+ I
3011
+ a4
3012
+ I
3013
+ 53
3014
+ I
3015
+ b5
3016
+ I
3017
+ 56
3018
+ I
3019
+ c7
3020
+ I
3021
+ 0
3022
+ I
3023
+ cc
3024
+ I
3025
+ 75
3026
+ I
3027
+ db
3028
+ I
3029
+ 7a
3030
+ I
3031
+ dc
3032
+ I
3033
+ 75
3034
+ I
3035
+ df
3036
+ I
3037
+ 77
3038
+ I
3039
+ fb
3040
+ I
3041
+ 78
3042
+ I
3043
+ 100
3044
+ I
3045
+ 77
3046
+ I
3047
+ 101
3048
+ I
3049
+ 0
3050
+ I
3051
+ 10d
3052
+ x
3053
+ 69
3054
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
3055
+ p
3056
+ 3
3057
+ x
3058
+ 6
3059
+ stderr
3060
+ x
3061
+ 6
3062
+ action
3063
+ x
3064
+ 1
3065
+ e
3066
+ x
3067
+ 17
3068
+ method_visibility
3069
+ x
3070
+ 15
3071
+ add_defn_method
3072
+ x
3073
+ 19
3074
+ remove_obsolete_css
3075
+ M
3076
+ 1
3077
+ n
3078
+ n
3079
+ x
3080
+ 19
3081
+ remove_obsolete_css
3082
+ i
3083
+ 83
3084
+ 23
3085
+ 0
3086
+ 10
3087
+ 8
3088
+ 1
3089
+ 19
3090
+ 0
3091
+ 15
3092
+ 23
3093
+ 1
3094
+ 10
3095
+ 16
3096
+ 1
3097
+ 19
3098
+ 1
3099
+ 15
3100
+ 5
3101
+ 44
3102
+ 43
3103
+ 0
3104
+ 79
3105
+ 49
3106
+ 1
3107
+ 1
3108
+ 13
3109
+ 7
3110
+ 2
3111
+ 2
3112
+ 49
3113
+ 3
3114
+ 2
3115
+ 15
3116
+ 47
3117
+ 49
3118
+ 4
3119
+ 1
3120
+ 19
3121
+ 2
3122
+ 15
3123
+ 20
3124
+ 2
3125
+ 49
3126
+ 5
3127
+ 0
3128
+ 19
3129
+ 3
3130
+ 15
3131
+ 5
3132
+ 48
3133
+ 6
3134
+ 13
3135
+ 10
3136
+ 56
3137
+ 15
3138
+ 35
3139
+ 0
3140
+ 20
3141
+ 3
3142
+ 82
3143
+ 7
3144
+ 19
3145
+ 4
3146
+ 15
3147
+ 20
3148
+ 4
3149
+ 56
3150
+ 8
3151
+ 50
3152
+ 9
3153
+ 0
3154
+ 15
3155
+ 5
3156
+ 20
3157
+ 3
3158
+ 13
3159
+ 18
3160
+ 2
3161
+ 47
3162
+ 49
3163
+ 10
3164
+ 1
3165
+ 15
3166
+ 11
3167
+ I
3168
+ a
3169
+ I
3170
+ 5
3171
+ I
3172
+ 0
3173
+ I
3174
+ 2
3175
+ n
3176
+ p
3177
+ 11
3178
+ x
3179
+ 4
3180
+ Hash
3181
+ x
3182
+ 16
3183
+ new_from_literal
3184
+ x
3185
+ 5
3186
+ quiet
3187
+ x
3188
+ 3
3189
+ []=
3190
+ x
3191
+ 21
3192
+ new_compiler_instance
3193
+ x
3194
+ 10
3195
+ sass_files
3196
+ x
3197
+ 15
3198
+ last_sass_files
3199
+ x
3200
+ 1
3201
+ -
3202
+ M
3203
+ 1
3204
+ p
3205
+ 2
3206
+ x
3207
+ 9
3208
+ for_block
3209
+ t
3210
+ n
3211
+ x
3212
+ 19
3213
+ remove_obsolete_css
3214
+ i
3215
+ 36
3216
+ 57
3217
+ 19
3218
+ 0
3219
+ 15
3220
+ 21
3221
+ 1
3222
+ 2
3223
+ 20
3224
+ 0
3225
+ 49
3226
+ 0
3227
+ 1
3228
+ 19
3229
+ 1
3230
+ 15
3231
+ 45
3232
+ 1
3233
+ 2
3234
+ 20
3235
+ 1
3236
+ 49
3237
+ 3
3238
+ 1
3239
+ 9
3240
+ 34
3241
+ 5
3242
+ 20
3243
+ 1
3244
+ 47
3245
+ 49
3246
+ 4
3247
+ 1
3248
+ 8
3249
+ 35
3250
+ 1
3251
+ 11
3252
+ I
3253
+ 5
3254
+ I
3255
+ 2
3256
+ I
3257
+ 1
3258
+ I
3259
+ 1
3260
+ n
3261
+ p
3262
+ 5
3263
+ x
3264
+ 22
3265
+ corresponding_css_file
3266
+ x
3267
+ 4
3268
+ File
3269
+ n
3270
+ x
3271
+ 7
3272
+ exists?
3273
+ x
3274
+ 6
3275
+ remove
3276
+ p
3277
+ 9
3278
+ I
3279
+ 0
3280
+ I
3281
+ 81
3282
+ I
3283
+ 4
3284
+ I
3285
+ 82
3286
+ I
3287
+ f
3288
+ I
3289
+ 83
3290
+ I
3291
+ 23
3292
+ I
3293
+ 0
3294
+ I
3295
+ 24
3296
+ x
3297
+ 69
3298
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
3299
+ p
3300
+ 2
3301
+ x
3302
+ 17
3303
+ deleted_sass_file
3304
+ x
3305
+ 8
3306
+ css_file
3307
+ x
3308
+ 4
3309
+ each
3310
+ x
3311
+ 16
3312
+ last_sass_files=
3313
+ p
3314
+ 15
3315
+ I
3316
+ -1
3317
+ I
3318
+ 7d
3319
+ I
3320
+ 10
3321
+ I
3322
+ 7e
3323
+ I
3324
+ 27
3325
+ I
3326
+ 7f
3327
+ I
3328
+ 2f
3329
+ I
3330
+ 80
3331
+ I
3332
+ 3f
3333
+ I
3334
+ 81
3335
+ I
3336
+ 47
3337
+ I
3338
+ a5
3339
+ I
3340
+ 48
3341
+ I
3342
+ 85
3343
+ I
3344
+ 53
3345
+ x
3346
+ 69
3347
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
3348
+ p
3349
+ 5
3350
+ x
3351
+ 4
3352
+ base
3353
+ x
3354
+ 8
3355
+ relative
3356
+ x
3357
+ 8
3358
+ compiler
3359
+ x
3360
+ 10
3361
+ sass_files
3362
+ x
3363
+ 18
3364
+ deleted_sass_files
3365
+ x
3366
+ 9
3367
+ recompile
3368
+ M
3369
+ 1
3370
+ n
3371
+ n
3372
+ x
3373
+ 9
3374
+ recompile
3375
+ i
3376
+ 176
3377
+ 23
3378
+ 0
3379
+ 10
3380
+ 8
3381
+ 1
3382
+ 19
3383
+ 0
3384
+ 15
3385
+ 23
3386
+ 1
3387
+ 10
3388
+ 16
3389
+ 1
3390
+ 19
3391
+ 1
3392
+ 15
3393
+ 39
3394
+ 0
3395
+ 9
3396
+ 27
3397
+ 39
3398
+ 0
3399
+ 49
3400
+ 1
3401
+ 0
3402
+ 8
3403
+ 28
3404
+ 1
3405
+ 15
3406
+ 5
3407
+ 44
3408
+ 43
3409
+ 2
3410
+ 80
3411
+ 49
3412
+ 3
3413
+ 1
3414
+ 13
3415
+ 7
3416
+ 4
3417
+ 2
3418
+ 49
3419
+ 5
3420
+ 2
3421
+ 15
3422
+ 13
3423
+ 7
3424
+ 6
3425
+ 7
3426
+ 7
3427
+ 7
3428
+ 8
3429
+ 7
3430
+ 9
3431
+ 35
3432
+ 3
3433
+ 49
3434
+ 5
3435
+ 2
3436
+ 15
3437
+ 47
3438
+ 49
3439
+ 10
3440
+ 1
3441
+ 19
3442
+ 2
3443
+ 15
3444
+ 20
3445
+ 2
3446
+ 49
3447
+ 11
3448
+ 0
3449
+ 19
3450
+ 3
3451
+ 9
3452
+ 174
3453
+ 26
3454
+ 93
3455
+ 0
3456
+ 15
3457
+ 29
3458
+ 124
3459
+ 0
3460
+ 5
3461
+ 7
3462
+ 12
3463
+ 20
3464
+ 1
3465
+ 13
3466
+ 10
3467
+ 99
3468
+ 15
3469
+ 20
3470
+ 2
3471
+ 20
3472
+ 3
3473
+ 49
3474
+ 13
3475
+ 1
3476
+ 47
3477
+ 101
3478
+ 14
3479
+ 63
3480
+ 2
3481
+ 47
3482
+ 49
3483
+ 15
3484
+ 1
3485
+ 15
3486
+ 20
3487
+ 2
3488
+ 49
3489
+ 16
3490
+ 0
3491
+ 15
3492
+ 45
3493
+ 17
3494
+ 18
3495
+ 49
3496
+ 19
3497
+ 0
3498
+ 30
3499
+ 8
3500
+ 169
3501
+ 26
3502
+ 93
3503
+ 1
3504
+ 15
3505
+ 24
3506
+ 13
3507
+ 45
3508
+ 20
3509
+ 21
3510
+ 12
3511
+ 49
3512
+ 22
3513
+ 1
3514
+ 10
3515
+ 141
3516
+ 8
3517
+ 164
3518
+ 15
3519
+ 24
3520
+ 19
3521
+ 4
3522
+ 15
3523
+ 44
3524
+ 43
3525
+ 23
3526
+ 43
3527
+ 24
3528
+ 43
3529
+ 25
3530
+ 20
3531
+ 4
3532
+ 5
3533
+ 48
3534
+ 26
3535
+ 49
3536
+ 27
3537
+ 2
3538
+ 25
3539
+ 8
3540
+ 169
3541
+ 15
3542
+ 92
3543
+ 1
3544
+ 27
3545
+ 34
3546
+ 92
3547
+ 0
3548
+ 27
3549
+ 8
3550
+ 175
3551
+ 1
3552
+ 11
3553
+ I
3554
+ e
3555
+ I
3556
+ 5
3557
+ I
3558
+ 0
3559
+ I
3560
+ 2
3561
+ n
3562
+ p
3563
+ 28
3564
+ x
3565
+ 13
3566
+ @memory_cache
3567
+ x
3568
+ 6
3569
+ reset!
3570
+ x
3571
+ 4
3572
+ Hash
3573
+ x
3574
+ 16
3575
+ new_from_literal
3576
+ x
3577
+ 5
3578
+ quiet
3579
+ x
3580
+ 3
3581
+ []=
3582
+ x
3583
+ 4
3584
+ loud
3585
+ x
3586
+ 9
3587
+ identical
3588
+ x
3589
+ 9
3590
+ overwrite
3591
+ x
3592
+ 6
3593
+ create
3594
+ x
3595
+ 21
3596
+ new_compiler_instance
3597
+ x
3598
+ 12
3599
+ out_of_date?
3600
+ s
3601
+ 24
3602
+ >>> Change detected to:
3603
+ x
3604
+ 24
3605
+ relative_stylesheet_name
3606
+ x
3607
+ 4
3608
+ to_s
3609
+ x
3610
+ 4
3611
+ puts
3612
+ x
3613
+ 3
3614
+ run
3615
+ x
3616
+ 2
3617
+ GC
3618
+ n
3619
+ x
3620
+ 5
3621
+ start
3622
+ x
3623
+ 13
3624
+ StandardError
3625
+ n
3626
+ x
3627
+ 3
3628
+ ===
3629
+ x
3630
+ 7
3631
+ Compass
3632
+ x
3633
+ 4
3634
+ Exec
3635
+ x
3636
+ 7
3637
+ Helpers
3638
+ x
3639
+ 7
3640
+ options
3641
+ x
3642
+ 12
3643
+ report_error
3644
+ p
3645
+ 33
3646
+ I
3647
+ -1
3648
+ I
3649
+ 88
3650
+ I
3651
+ 10
3652
+ I
3653
+ 89
3654
+ I
3655
+ 1c
3656
+ I
3657
+ 0
3658
+ I
3659
+ 1d
3660
+ I
3661
+ 8a
3662
+ I
3663
+ 43
3664
+ I
3665
+ 8b
3666
+ I
3667
+ 4c
3668
+ I
3669
+ 8d
3670
+ I
3671
+ 6d
3672
+ I
3673
+ 8e
3674
+ I
3675
+ 73
3676
+ I
3677
+ 8f
3678
+ I
3679
+ 7c
3680
+ I
3681
+ 0
3682
+ I
3683
+ 81
3684
+ I
3685
+ 90
3686
+ I
3687
+ 8e
3688
+ I
3689
+ 92
3690
+ I
3691
+ 8f
3692
+ I
3693
+ 90
3694
+ I
3695
+ 92
3696
+ I
3697
+ 91
3698
+ I
3699
+ a9
3700
+ I
3701
+ 0
3702
+ I
3703
+ ae
3704
+ I
3705
+ 8b
3706
+ I
3707
+ af
3708
+ I
3709
+ 0
3710
+ I
3711
+ b0
3712
+ x
3713
+ 69
3714
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
3715
+ p
3716
+ 5
3717
+ x
3718
+ 4
3719
+ base
3720
+ x
3721
+ 8
3722
+ relative
3723
+ x
3724
+ 8
3725
+ compiler
3726
+ x
3727
+ 4
3728
+ file
3729
+ x
3730
+ 1
3731
+ e
3732
+ x
3733
+ 4
3734
+ Type
3735
+ x
3736
+ 22
3737
+ object_singleton_class
3738
+ x
3739
+ 18
3740
+ __metaclass_init__
3741
+ M
3742
+ 1
3743
+ n
3744
+ n
3745
+ x
3746
+ 18
3747
+ __metaclass_init__
3748
+ i
3749
+ 30
3750
+ 5
3751
+ 66
3752
+ 99
3753
+ 7
3754
+ 0
3755
+ 7
3756
+ 1
3757
+ 65
3758
+ 67
3759
+ 49
3760
+ 2
3761
+ 0
3762
+ 49
3763
+ 3
3764
+ 4
3765
+ 15
3766
+ 99
3767
+ 7
3768
+ 4
3769
+ 7
3770
+ 5
3771
+ 65
3772
+ 67
3773
+ 49
3774
+ 2
3775
+ 0
3776
+ 49
3777
+ 3
3778
+ 4
3779
+ 11
3780
+ I
3781
+ 5
3782
+ I
3783
+ 0
3784
+ I
3785
+ 0
3786
+ I
3787
+ 0
3788
+ n
3789
+ p
3790
+ 6
3791
+ x
3792
+ 11
3793
+ description
3794
+ M
3795
+ 1
3796
+ n
3797
+ n
3798
+ x
3799
+ 11
3800
+ description
3801
+ i
3802
+ 4
3803
+ 7
3804
+ 0
3805
+ 64
3806
+ 11
3807
+ I
3808
+ 2
3809
+ I
3810
+ 1
3811
+ I
3812
+ 1
3813
+ I
3814
+ 1
3815
+ n
3816
+ p
3817
+ 1
3818
+ s
3819
+ 48
3820
+ Compile Sass stylesheets to CSS when they change
3821
+ p
3822
+ 5
3823
+ I
3824
+ -1
3825
+ I
3826
+ 97
3827
+ I
3828
+ 0
3829
+ I
3830
+ 98
3831
+ I
3832
+ 4
3833
+ x
3834
+ 69
3835
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
3836
+ p
3837
+ 1
3838
+ x
3839
+ 7
3840
+ command
3841
+ x
3842
+ 17
3843
+ method_visibility
3844
+ x
3845
+ 15
3846
+ add_defn_method
3847
+ x
3848
+ 13
3849
+ option_parser
3850
+ M
3851
+ 1
3852
+ n
3853
+ n
3854
+ x
3855
+ 13
3856
+ option_parser
3857
+ i
3858
+ 79
3859
+ 45
3860
+ 0
3861
+ 1
3862
+ 43
3863
+ 2
3864
+ 43
3865
+ 3
3866
+ 13
3867
+ 71
3868
+ 4
3869
+ 47
3870
+ 9
3871
+ 27
3872
+ 47
3873
+ 49
3874
+ 5
3875
+ 0
3876
+ 13
3877
+ 20
3878
+ 0
3879
+ 47
3880
+ 49
3881
+ 6
3882
+ 1
3883
+ 15
3884
+ 8
3885
+ 32
3886
+ 20
3887
+ 0
3888
+ 49
3889
+ 4
3890
+ 1
3891
+ 19
3892
+ 1
3893
+ 15
3894
+ 20
3895
+ 1
3896
+ 45
3897
+ 0
3898
+ 7
3899
+ 43
3900
+ 2
3901
+ 43
3902
+ 8
3903
+ 49
3904
+ 9
3905
+ 1
3906
+ 15
3907
+ 20
3908
+ 1
3909
+ 45
3910
+ 0
3911
+ 10
3912
+ 43
3913
+ 2
3914
+ 43
3915
+ 11
3916
+ 49
3917
+ 9
3918
+ 1
3919
+ 15
3920
+ 20
3921
+ 1
3922
+ 45
3923
+ 12
3924
+ 13
3925
+ 49
3926
+ 9
3927
+ 1
3928
+ 15
3929
+ 20
3930
+ 1
3931
+ 45
3932
+ 14
3933
+ 15
3934
+ 49
3935
+ 9
3936
+ 1
3937
+ 11
3938
+ I
3939
+ 5
3940
+ I
3941
+ 2
3942
+ I
3943
+ 1
3944
+ I
3945
+ 1
3946
+ n
3947
+ p
3948
+ 16
3949
+ x
3950
+ 7
3951
+ Compass
3952
+ n
3953
+ x
3954
+ 4
3955
+ Exec
3956
+ x
3957
+ 19
3958
+ CommandOptionParser
3959
+ x
3960
+ 3
3961
+ new
3962
+ x
3963
+ 8
3964
+ allocate
3965
+ x
3966
+ 10
3967
+ initialize
3968
+ n
3969
+ x
3970
+ 19
3971
+ GlobalOptionsParser
3972
+ x
3973
+ 6
3974
+ extend
3975
+ n
3976
+ x
3977
+ 20
3978
+ ProjectOptionsParser
3979
+ x
3980
+ 27
3981
+ CompileProjectOptionsParser
3982
+ n
3983
+ x
3984
+ 25
3985
+ WatchProjectOptionsParser
3986
+ n
3987
+ p
3988
+ 13
3989
+ I
3990
+ -1
3991
+ I
3992
+ 9b
3993
+ I
3994
+ 0
3995
+ I
3996
+ 9c
3997
+ I
3998
+ 23
3999
+ I
4000
+ 9d
4001
+ I
4002
+ 30
4003
+ I
4004
+ 9e
4005
+ I
4006
+ 3d
4007
+ I
4008
+ 9f
4009
+ I
4010
+ 46
4011
+ I
4012
+ a0
4013
+ I
4014
+ 4f
4015
+ x
4016
+ 69
4017
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
4018
+ p
4019
+ 2
4020
+ x
4021
+ 9
4022
+ arguments
4023
+ x
4024
+ 6
4025
+ parser
4026
+ p
4027
+ 5
4028
+ I
4029
+ 2
4030
+ I
4031
+ 97
4032
+ I
4033
+ 10
4034
+ I
4035
+ 9b
4036
+ I
4037
+ 1e
4038
+ x
4039
+ 69
4040
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
4041
+ p
4042
+ 0
4043
+ x
4044
+ 13
4045
+ attach_method
4046
+ p
4047
+ 15
4048
+ I
4049
+ 2
4050
+ I
4051
+ 37
4052
+ I
4053
+ a
4054
+ I
4055
+ 39
4056
+ I
4057
+ 14
4058
+ I
4059
+ 3b
4060
+ I
4061
+ 1d
4062
+ I
4063
+ 3d
4064
+ I
4065
+ 2b
4066
+ I
4067
+ 7d
4068
+ I
4069
+ 39
4070
+ I
4071
+ 88
4072
+ I
4073
+ 47
4074
+ I
4075
+ 96
4076
+ I
4077
+ 63
4078
+ x
4079
+ 69
4080
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
4081
+ p
4082
+ 0
4083
+ p
4084
+ 7
4085
+ I
4086
+ 2
4087
+ I
4088
+ 9
4089
+ I
4090
+ 1c
4091
+ I
4092
+ 1c
4093
+ I
4094
+ 36
4095
+ I
4096
+ 35
4097
+ I
4098
+ 53
4099
+ x
4100
+ 69
4101
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
4102
+ p
4103
+ 0
4104
+ x
4105
+ 13
4106
+ attach_method
4107
+ p
4108
+ 3
4109
+ I
4110
+ 2
4111
+ I
4112
+ 8
4113
+ I
4114
+ 1c
4115
+ x
4116
+ 69
4117
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
4118
+ p
4119
+ 0
4120
+ x
4121
+ 13
4122
+ attach_method
4123
+ p
4124
+ 13
4125
+ I
4126
+ 0
4127
+ I
4128
+ 1
4129
+ I
4130
+ 9
4131
+ I
4132
+ 2
4133
+ I
4134
+ 12
4135
+ I
4136
+ 3
4137
+ I
4138
+ 1b
4139
+ I
4140
+ 4
4141
+ I
4142
+ 24
4143
+ I
4144
+ 5
4145
+ I
4146
+ 2d
4147
+ I
4148
+ 7
4149
+ I
4150
+ 49
4151
+ x
4152
+ 69
4153
+ /Users/crispee/Projects/compass/lib/compass/commands/watch_project.rb
4154
+ p
4155
+ 0