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