compass 0.11.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/Rakefile +1 -15
  2. data/VERSION.yml +1 -1
  3. data/features/command_line.feature +2 -0
  4. data/features/extensions.feature +2 -1
  5. data/features/step_definitions/command_line_steps.rb +7 -1
  6. data/frameworks/compass/stylesheets/compass/_support.scss +6 -8
  7. data/frameworks/compass/stylesheets/compass/css3/_images.scss +2 -0
  8. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +4 -3
  9. data/lib/compass.rb +7 -1
  10. data/lib/compass.rbc +714 -0
  11. data/lib/compass/actions.rbc +2334 -0
  12. data/lib/compass/app_integration.rbc +828 -0
  13. data/lib/compass/app_integration/merb.rbc +102 -0
  14. data/lib/compass/app_integration/rails.rbc +1580 -0
  15. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1673 -0
  16. data/lib/compass/app_integration/rails/installer.rbc +3593 -0
  17. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  18. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  19. data/lib/compass/app_integration/stand_alone/installer.rbc +1467 -0
  20. data/lib/compass/browser_support.rbc +1132 -0
  21. data/lib/compass/compiler.rbc +4628 -0
  22. data/lib/compass/configuration.rbc +1342 -0
  23. data/lib/compass/configuration/adapters.rbc +2030 -0
  24. data/lib/compass/configuration/comments.rbc +762 -0
  25. data/lib/compass/configuration/data.rbc +2643 -0
  26. data/lib/compass/configuration/defaults.rbc +3042 -0
  27. data/lib/compass/configuration/file_data.rbc +731 -0
  28. data/lib/compass/configuration/helpers.rbc +3220 -0
  29. data/lib/compass/configuration/inheritance.rbc +3345 -0
  30. data/lib/compass/configuration/paths.rbc +412 -0
  31. data/lib/compass/configuration/serialization.rbc +1929 -0
  32. data/lib/compass/dependencies.rbc +220 -0
  33. data/lib/compass/errors.rbc +176 -0
  34. data/lib/compass/frameworks.rbc +3588 -0
  35. data/lib/compass/quick_cache.rbc +320 -0
  36. data/lib/compass/sass_extensions.rb +4 -0
  37. data/lib/compass/sass_extensions.rbc +111 -0
  38. data/lib/compass/sass_extensions/functions.rbc +775 -0
  39. data/lib/compass/sass_extensions/functions/colors.rbc +1275 -0
  40. data/lib/compass/sass_extensions/functions/constants.rbc +1901 -0
  41. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1954 -0
  42. data/lib/compass/sass_extensions/functions/display.rbc +993 -0
  43. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  44. data/lib/compass/sass_extensions/functions/font_files.rbc +404 -0
  45. data/lib/compass/sass_extensions/functions/gradient_support.rb +3 -1
  46. data/lib/compass/sass_extensions/functions/gradient_support.rbc +13899 -0
  47. data/lib/compass/sass_extensions/functions/image_size.rbc +2837 -0
  48. data/lib/compass/sass_extensions/functions/inline_image.rbc +1624 -0
  49. data/lib/compass/sass_extensions/functions/lists.rbc +2565 -0
  50. data/lib/compass/sass_extensions/functions/selectors.rbc +1584 -0
  51. data/lib/compass/sass_extensions/functions/sprites.rb +13 -1
  52. data/lib/compass/sass_extensions/functions/sprites.rbc +3491 -0
  53. data/lib/compass/sass_extensions/functions/trig.rbc +809 -0
  54. data/lib/compass/sass_extensions/functions/urls.rbc +3141 -0
  55. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  56. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2153 -0
  57. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +640 -0
  58. data/lib/compass/sass_extensions/sprites.rbc +299 -0
  59. data/lib/compass/sass_extensions/sprites/base.rb +20 -7
  60. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  61. data/lib/compass/sass_extensions/sprites/engines.rbc +53 -0
  62. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +908 -0
  63. data/lib/compass/sass_extensions/sprites/image.rbc +2583 -0
  64. data/lib/compass/sass_extensions/sprites/sprite_map.rb +15 -3
  65. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +2615 -0
  66. data/lib/compass/sass_extensions/sprites/sprites.rb +3 -3
  67. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  68. data/lib/compass/util.rbc +544 -0
  69. data/lib/compass/version.rb +3 -3
  70. data/lib/compass/version.rbc +1259 -0
  71. data/test/fixtures/sprites/public/images/colors/blue.png +0 -0
  72. data/test/fixtures/sprites/public/images/colors/yellow.png +0 -0
  73. data/test/fixtures/sprites/public/images/ko/default_background.png +0 -0
  74. data/test/fixtures/sprites/public/images/ko/starbg26x27.png +0 -0
  75. data/test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png +0 -0
  76. data/test/fixtures/sprites/public/images/prefix/20-by-20.png +0 -0
  77. data/test/fixtures/sprites/public/images/prefix/ten-by-ten.png +0 -0
  78. data/test/fixtures/sprites/public/images/selectors/ten-by-ten.png +0 -0
  79. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_active.png +0 -0
  80. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_hover.png +0 -0
  81. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png +0 -0
  82. data/test/fixtures/sprites/public/images/squares/ten-by-ten.png +0 -0
  83. data/test/fixtures/sprites/public/images/squares/twenty-by-twenty.png +0 -0
  84. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -0
  85. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -0
  86. data/test/fixtures/stylesheets/compass/css/gradients.css +57 -0
  87. data/test/fixtures/stylesheets/compass/css/grid_background.css +7 -0
  88. data/test/fixtures/stylesheets/compass/css/pie.css +1 -0
  89. data/test/fixtures/stylesheets/relative/config.rb +1 -0
  90. data/test/{command_line_helper.rb → helpers/command_line.rb} +0 -0
  91. data/test/helpers/diff.rb +49 -0
  92. data/test/{io_helper.rb → helpers/io.rb} +0 -0
  93. data/test/{rails_helper.rb → helpers/rails.rb} +0 -0
  94. data/test/helpers/test_case.rb +55 -0
  95. data/test/{compass_test.rb → integrations/compass_test.rb} +8 -8
  96. data/test/{rails_integration_test.rb → integrations/rails_integration_test.rb} +2 -1
  97. data/test/integrations/sprites_test.rb +607 -0
  98. data/test/{test_rails_helper.rb → integrations/test_rails_helper.rb} +0 -0
  99. data/test/test_helper.rb +13 -4
  100. data/test/{command_line_test.rb → units/command_line_test.rb} +0 -0
  101. data/test/{compass_png_test.rb → units/compass_png_test.rb} +1 -1
  102. data/test/{configuration_test.rb → units/configuration_test.rb} +37 -12
  103. data/test/{sass_extensions_test.rb → units/sass_extensions_test.rb} +0 -0
  104. data/test/units/sprites/base_test.rb +90 -0
  105. data/test/units/sprites/image_test.rb +97 -0
  106. metadata +114 -26
  107. data/test/test_case_helper.rb +0 -13
@@ -0,0 +1,3593 @@
1
+ !RBIX
2
+ 333337424968067900
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 7
54
+ Compass
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 7
67
+ Compass
68
+ i
69
+ 54
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 15
98
+ 99
99
+ 7
100
+ 5
101
+ 65
102
+ 49
103
+ 1
104
+ 2
105
+ 13
106
+ 99
107
+ 12
108
+ 7
109
+ 2
110
+ 12
111
+ 7
112
+ 6
113
+ 12
114
+ 65
115
+ 12
116
+ 49
117
+ 4
118
+ 4
119
+ 15
120
+ 49
121
+ 2
122
+ 0
123
+ 11
124
+ I
125
+ 6
126
+ I
127
+ 0
128
+ I
129
+ 0
130
+ I
131
+ 0
132
+ n
133
+ p
134
+ 7
135
+ x
136
+ 10
137
+ Installers
138
+ x
139
+ 11
140
+ open_module
141
+ x
142
+ 15
143
+ __module_init__
144
+ M
145
+ 1
146
+ n
147
+ n
148
+ x
149
+ 10
150
+ Installers
151
+ i
152
+ 26
153
+ 5
154
+ 66
155
+ 99
156
+ 7
157
+ 0
158
+ 1
159
+ 65
160
+ 49
161
+ 1
162
+ 3
163
+ 15
164
+ 1
165
+ 15
166
+ 99
167
+ 7
168
+ 2
169
+ 45
170
+ 0
171
+ 3
172
+ 65
173
+ 49
174
+ 1
175
+ 3
176
+ 15
177
+ 1
178
+ 11
179
+ I
180
+ 4
181
+ I
182
+ 0
183
+ I
184
+ 0
185
+ I
186
+ 0
187
+ n
188
+ p
189
+ 4
190
+ x
191
+ 4
192
+ Base
193
+ x
194
+ 10
195
+ open_class
196
+ x
197
+ 17
198
+ ManifestInstaller
199
+ n
200
+ p
201
+ 5
202
+ I
203
+ 2
204
+ I
205
+ 3
206
+ I
207
+ d
208
+ I
209
+ 5
210
+ I
211
+ 1a
212
+ x
213
+ 76
214
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
215
+ p
216
+ 0
217
+ x
218
+ 13
219
+ attach_method
220
+ x
221
+ 14
222
+ AppIntegration
223
+ M
224
+ 1
225
+ n
226
+ n
227
+ x
228
+ 14
229
+ AppIntegration
230
+ i
231
+ 28
232
+ 5
233
+ 66
234
+ 99
235
+ 7
236
+ 0
237
+ 65
238
+ 49
239
+ 1
240
+ 2
241
+ 13
242
+ 99
243
+ 12
244
+ 7
245
+ 2
246
+ 12
247
+ 7
248
+ 3
249
+ 12
250
+ 65
251
+ 12
252
+ 49
253
+ 4
254
+ 4
255
+ 15
256
+ 49
257
+ 2
258
+ 0
259
+ 11
260
+ I
261
+ 6
262
+ I
263
+ 0
264
+ I
265
+ 0
266
+ I
267
+ 0
268
+ n
269
+ p
270
+ 5
271
+ x
272
+ 5
273
+ Rails
274
+ x
275
+ 11
276
+ open_module
277
+ x
278
+ 15
279
+ __module_init__
280
+ M
281
+ 1
282
+ n
283
+ n
284
+ x
285
+ 5
286
+ Rails
287
+ i
288
+ 35
289
+ 5
290
+ 66
291
+ 99
292
+ 7
293
+ 0
294
+ 45
295
+ 1
296
+ 2
297
+ 43
298
+ 3
299
+ 43
300
+ 4
301
+ 65
302
+ 49
303
+ 5
304
+ 3
305
+ 13
306
+ 99
307
+ 12
308
+ 7
309
+ 6
310
+ 12
311
+ 7
312
+ 7
313
+ 12
314
+ 65
315
+ 12
316
+ 49
317
+ 8
318
+ 4
319
+ 15
320
+ 49
321
+ 6
322
+ 0
323
+ 11
324
+ I
325
+ 6
326
+ I
327
+ 0
328
+ I
329
+ 0
330
+ I
331
+ 0
332
+ n
333
+ p
334
+ 9
335
+ x
336
+ 9
337
+ Installer
338
+ x
339
+ 7
340
+ Compass
341
+ n
342
+ x
343
+ 10
344
+ Installers
345
+ x
346
+ 17
347
+ ManifestInstaller
348
+ x
349
+ 10
350
+ open_class
351
+ x
352
+ 14
353
+ __class_init__
354
+ M
355
+ 1
356
+ n
357
+ n
358
+ x
359
+ 9
360
+ Installer
361
+ i
362
+ 226
363
+ 5
364
+ 66
365
+ 99
366
+ 7
367
+ 0
368
+ 7
369
+ 1
370
+ 65
371
+ 67
372
+ 49
373
+ 2
374
+ 0
375
+ 49
376
+ 3
377
+ 4
378
+ 15
379
+ 99
380
+ 7
381
+ 4
382
+ 7
383
+ 5
384
+ 65
385
+ 67
386
+ 49
387
+ 2
388
+ 0
389
+ 49
390
+ 3
391
+ 4
392
+ 15
393
+ 99
394
+ 7
395
+ 6
396
+ 7
397
+ 7
398
+ 65
399
+ 67
400
+ 49
401
+ 2
402
+ 0
403
+ 49
404
+ 3
405
+ 4
406
+ 15
407
+ 99
408
+ 7
409
+ 8
410
+ 7
411
+ 9
412
+ 65
413
+ 67
414
+ 49
415
+ 2
416
+ 0
417
+ 49
418
+ 3
419
+ 4
420
+ 15
421
+ 99
422
+ 7
423
+ 10
424
+ 7
425
+ 11
426
+ 65
427
+ 67
428
+ 49
429
+ 2
430
+ 0
431
+ 49
432
+ 3
433
+ 4
434
+ 15
435
+ 99
436
+ 7
437
+ 12
438
+ 7
439
+ 13
440
+ 65
441
+ 67
442
+ 49
443
+ 2
444
+ 0
445
+ 49
446
+ 3
447
+ 4
448
+ 15
449
+ 99
450
+ 7
451
+ 14
452
+ 7
453
+ 15
454
+ 65
455
+ 67
456
+ 49
457
+ 2
458
+ 0
459
+ 49
460
+ 3
461
+ 4
462
+ 15
463
+ 99
464
+ 7
465
+ 16
466
+ 7
467
+ 17
468
+ 65
469
+ 67
470
+ 49
471
+ 2
472
+ 0
473
+ 49
474
+ 3
475
+ 4
476
+ 15
477
+ 99
478
+ 7
479
+ 18
480
+ 7
481
+ 19
482
+ 65
483
+ 67
484
+ 49
485
+ 2
486
+ 0
487
+ 49
488
+ 3
489
+ 4
490
+ 15
491
+ 99
492
+ 7
493
+ 20
494
+ 7
495
+ 21
496
+ 65
497
+ 67
498
+ 49
499
+ 2
500
+ 0
501
+ 49
502
+ 3
503
+ 4
504
+ 15
505
+ 99
506
+ 7
507
+ 22
508
+ 7
509
+ 23
510
+ 65
511
+ 67
512
+ 49
513
+ 2
514
+ 0
515
+ 49
516
+ 3
517
+ 4
518
+ 15
519
+ 99
520
+ 7
521
+ 24
522
+ 7
523
+ 25
524
+ 65
525
+ 67
526
+ 49
527
+ 2
528
+ 0
529
+ 49
530
+ 3
531
+ 4
532
+ 15
533
+ 99
534
+ 7
535
+ 26
536
+ 7
537
+ 27
538
+ 65
539
+ 67
540
+ 49
541
+ 2
542
+ 0
543
+ 49
544
+ 3
545
+ 4
546
+ 15
547
+ 99
548
+ 7
549
+ 28
550
+ 7
551
+ 29
552
+ 65
553
+ 67
554
+ 49
555
+ 2
556
+ 0
557
+ 49
558
+ 3
559
+ 4
560
+ 15
561
+ 99
562
+ 7
563
+ 30
564
+ 7
565
+ 31
566
+ 65
567
+ 67
568
+ 49
569
+ 2
570
+ 0
571
+ 49
572
+ 3
573
+ 4
574
+ 15
575
+ 99
576
+ 7
577
+ 32
578
+ 7
579
+ 33
580
+ 65
581
+ 67
582
+ 49
583
+ 2
584
+ 0
585
+ 49
586
+ 3
587
+ 4
588
+ 11
589
+ I
590
+ 5
591
+ I
592
+ 0
593
+ I
594
+ 0
595
+ I
596
+ 0
597
+ n
598
+ p
599
+ 34
600
+ x
601
+ 23
602
+ completed_configuration
603
+ M
604
+ 1
605
+ n
606
+ n
607
+ x
608
+ 23
609
+ completed_configuration
610
+ i
611
+ 69
612
+ 44
613
+ 43
614
+ 0
615
+ 78
616
+ 49
617
+ 1
618
+ 1
619
+ 19
620
+ 0
621
+ 15
622
+ 5
623
+ 48
624
+ 2
625
+ 9
626
+ 18
627
+ 1
628
+ 8
629
+ 32
630
+ 20
631
+ 0
632
+ 7
633
+ 3
634
+ 5
635
+ 48
636
+ 4
637
+ 13
638
+ 18
639
+ 3
640
+ 49
641
+ 5
642
+ 2
643
+ 15
644
+ 15
645
+ 5
646
+ 48
647
+ 6
648
+ 9
649
+ 41
650
+ 1
651
+ 8
652
+ 55
653
+ 20
654
+ 0
655
+ 7
656
+ 7
657
+ 5
658
+ 48
659
+ 8
660
+ 13
661
+ 18
662
+ 3
663
+ 49
664
+ 5
665
+ 2
666
+ 15
667
+ 15
668
+ 20
669
+ 0
670
+ 49
671
+ 9
672
+ 0
673
+ 9
674
+ 66
675
+ 1
676
+ 8
677
+ 68
678
+ 20
679
+ 0
680
+ 11
681
+ I
682
+ 5
683
+ I
684
+ 1
685
+ I
686
+ 0
687
+ I
688
+ 0
689
+ n
690
+ p
691
+ 10
692
+ x
693
+ 4
694
+ Hash
695
+ x
696
+ 16
697
+ new_from_literal
698
+ x
699
+ 24
700
+ sass_dir_without_default
701
+ x
702
+ 8
703
+ sass_dir
704
+ x
705
+ 15
706
+ prompt_sass_dir
707
+ x
708
+ 3
709
+ []=
710
+ x
711
+ 23
712
+ css_dir_without_default
713
+ x
714
+ 7
715
+ css_dir
716
+ x
717
+ 14
718
+ prompt_css_dir
719
+ x
720
+ 6
721
+ empty?
722
+ p
723
+ 11
724
+ I
725
+ -1
726
+ I
727
+ d
728
+ I
729
+ 0
730
+ I
731
+ e
732
+ I
733
+ a
734
+ I
735
+ f
736
+ I
737
+ 21
738
+ I
739
+ 10
740
+ I
741
+ 38
742
+ I
743
+ 11
744
+ I
745
+ 45
746
+ x
747
+ 76
748
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
749
+ p
750
+ 1
751
+ x
752
+ 6
753
+ config
754
+ x
755
+ 17
756
+ method_visibility
757
+ x
758
+ 15
759
+ add_defn_method
760
+ x
761
+ 25
762
+ write_configuration_files
763
+ M
764
+ 1
765
+ n
766
+ n
767
+ x
768
+ 25
769
+ write_configuration_files
770
+ i
771
+ 110
772
+ 23
773
+ 0
774
+ 10
775
+ 8
776
+ 1
777
+ 19
778
+ 0
779
+ 15
780
+ 20
781
+ 0
782
+ 13
783
+ 10
784
+ 24
785
+ 15
786
+ 5
787
+ 7
788
+ 0
789
+ 64
790
+ 47
791
+ 49
792
+ 1
793
+ 1
794
+ 19
795
+ 0
796
+ 15
797
+ 45
798
+ 2
799
+ 3
800
+ 20
801
+ 0
802
+ 49
803
+ 4
804
+ 1
805
+ 9
806
+ 38
807
+ 1
808
+ 8
809
+ 62
810
+ 5
811
+ 45
812
+ 2
813
+ 5
814
+ 20
815
+ 0
816
+ 49
817
+ 6
818
+ 1
819
+ 47
820
+ 49
821
+ 7
822
+ 1
823
+ 15
824
+ 5
825
+ 20
826
+ 0
827
+ 5
828
+ 48
829
+ 8
830
+ 47
831
+ 49
832
+ 9
833
+ 2
834
+ 15
835
+ 5
836
+ 47
837
+ 49
838
+ 10
839
+ 0
840
+ 9
841
+ 73
842
+ 1
843
+ 8
844
+ 109
845
+ 5
846
+ 45
847
+ 2
848
+ 11
849
+ 5
850
+ 7
851
+ 12
852
+ 64
853
+ 47
854
+ 49
855
+ 1
856
+ 1
857
+ 49
858
+ 6
859
+ 1
860
+ 47
861
+ 49
862
+ 7
863
+ 1
864
+ 15
865
+ 5
866
+ 5
867
+ 7
868
+ 12
869
+ 64
870
+ 47
871
+ 49
872
+ 1
873
+ 1
874
+ 5
875
+ 48
876
+ 13
877
+ 47
878
+ 49
879
+ 9
880
+ 2
881
+ 11
882
+ I
883
+ 5
884
+ I
885
+ 1
886
+ I
887
+ 0
888
+ I
889
+ 1
890
+ n
891
+ p
892
+ 14
893
+ s
894
+ 17
895
+ config/compass.rb
896
+ x
897
+ 9
898
+ targetize
899
+ x
900
+ 4
901
+ File
902
+ n
903
+ x
904
+ 7
905
+ exists?
906
+ n
907
+ x
908
+ 7
909
+ dirname
910
+ x
911
+ 9
912
+ directory
913
+ x
914
+ 15
915
+ config_contents
916
+ x
917
+ 10
918
+ write_file
919
+ x
920
+ 7
921
+ rails3?
922
+ n
923
+ s
924
+ 30
925
+ config/initializers/compass.rb
926
+ x
927
+ 20
928
+ initializer_contents
929
+ p
930
+ 17
931
+ I
932
+ -1
933
+ I
934
+ 14
935
+ I
936
+ 8
937
+ I
938
+ 15
939
+ I
940
+ 19
941
+ I
942
+ 16
943
+ I
944
+ 26
945
+ I
946
+ 17
947
+ I
948
+ 34
949
+ I
950
+ 18
951
+ I
952
+ 3f
953
+ I
954
+ 1a
955
+ I
956
+ 49
957
+ I
958
+ 1b
959
+ I
960
+ 5d
961
+ I
962
+ 1c
963
+ I
964
+ 6e
965
+ x
966
+ 76
967
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
968
+ p
969
+ 1
970
+ x
971
+ 11
972
+ config_file
973
+ x
974
+ 7
975
+ rails3?
976
+ M
977
+ 1
978
+ n
979
+ n
980
+ x
981
+ 7
982
+ rails3?
983
+ i
984
+ 15
985
+ 45
986
+ 0
987
+ 1
988
+ 5
989
+ 7
990
+ 2
991
+ 64
992
+ 47
993
+ 49
994
+ 3
995
+ 1
996
+ 49
997
+ 4
998
+ 1
999
+ 11
1000
+ I
1001
+ 3
1002
+ I
1003
+ 0
1004
+ I
1005
+ 0
1006
+ I
1007
+ 0
1008
+ n
1009
+ p
1010
+ 5
1011
+ x
1012
+ 4
1013
+ File
1014
+ n
1015
+ s
1016
+ 21
1017
+ config/application.rb
1018
+ x
1019
+ 9
1020
+ targetize
1021
+ x
1022
+ 7
1023
+ exists?
1024
+ p
1025
+ 5
1026
+ I
1027
+ -1
1028
+ I
1029
+ 20
1030
+ I
1031
+ 0
1032
+ I
1033
+ 21
1034
+ I
1035
+ f
1036
+ x
1037
+ 76
1038
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1039
+ p
1040
+ 0
1041
+ x
1042
+ 7
1043
+ prepare
1044
+ M
1045
+ 1
1046
+ n
1047
+ n
1048
+ x
1049
+ 7
1050
+ prepare
1051
+ i
1052
+ 4
1053
+ 5
1054
+ 48
1055
+ 0
1056
+ 11
1057
+ I
1058
+ 1
1059
+ I
1060
+ 0
1061
+ I
1062
+ 0
1063
+ I
1064
+ 0
1065
+ n
1066
+ p
1067
+ 1
1068
+ x
1069
+ 25
1070
+ write_configuration_files
1071
+ p
1072
+ 5
1073
+ I
1074
+ -1
1075
+ I
1076
+ 24
1077
+ I
1078
+ 0
1079
+ I
1080
+ 25
1081
+ I
1082
+ 4
1083
+ x
1084
+ 76
1085
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1086
+ p
1087
+ 0
1088
+ x
1089
+ 23
1090
+ gem_config_instructions
1091
+ M
1092
+ 1
1093
+ n
1094
+ n
1095
+ x
1096
+ 23
1097
+ gem_config_instructions
1098
+ i
1099
+ 38
1100
+ 5
1101
+ 47
1102
+ 49
1103
+ 0
1104
+ 0
1105
+ 9
1106
+ 23
1107
+ 7
1108
+ 1
1109
+ 45
1110
+ 2
1111
+ 3
1112
+ 43
1113
+ 4
1114
+ 47
1115
+ 101
1116
+ 5
1117
+ 7
1118
+ 6
1119
+ 63
1120
+ 3
1121
+ 8
1122
+ 37
1123
+ 7
1124
+ 7
1125
+ 45
1126
+ 2
1127
+ 8
1128
+ 43
1129
+ 4
1130
+ 47
1131
+ 101
1132
+ 5
1133
+ 7
1134
+ 6
1135
+ 63
1136
+ 3
1137
+ 11
1138
+ I
1139
+ 3
1140
+ I
1141
+ 0
1142
+ I
1143
+ 0
1144
+ I
1145
+ 0
1146
+ n
1147
+ p
1148
+ 9
1149
+ x
1150
+ 7
1151
+ rails3?
1152
+ s
1153
+ 59
1154
+ Add the following to your Gemfile:
1155
+
1156
+ gem "compass", ">=
1157
+ x
1158
+ 7
1159
+ Compass
1160
+ n
1161
+ x
1162
+ 7
1163
+ VERSION
1164
+ x
1165
+ 4
1166
+ to_s
1167
+ s
1168
+ 1
1169
+ "
1170
+ s
1171
+ 85
1172
+ Add the following to your environment.rb:
1173
+
1174
+ config.gem "compass", :version => ">=
1175
+ n
1176
+ p
1177
+ 9
1178
+ I
1179
+ -1
1180
+ I
1181
+ 28
1182
+ I
1183
+ 0
1184
+ I
1185
+ 29
1186
+ I
1187
+ 7
1188
+ I
1189
+ 2a
1190
+ I
1191
+ 17
1192
+ I
1193
+ 2c
1194
+ I
1195
+ 26
1196
+ x
1197
+ 76
1198
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1199
+ p
1200
+ 0
1201
+ x
1202
+ 8
1203
+ finalize
1204
+ M
1205
+ 1
1206
+ n
1207
+ n
1208
+ x
1209
+ 8
1210
+ finalize
1211
+ i
1212
+ 85
1213
+ 23
1214
+ 0
1215
+ 10
1216
+ 14
1217
+ 44
1218
+ 43
1219
+ 0
1220
+ 78
1221
+ 49
1222
+ 1
1223
+ 1
1224
+ 19
1225
+ 0
1226
+ 15
1227
+ 20
1228
+ 0
1229
+ 7
1230
+ 2
1231
+ 49
1232
+ 3
1233
+ 1
1234
+ 9
1235
+ 42
1236
+ 5
1237
+ 7
1238
+ 4
1239
+ 5
1240
+ 48
1241
+ 5
1242
+ 47
1243
+ 101
1244
+ 6
1245
+ 7
1246
+ 7
1247
+ 63
1248
+ 3
1249
+ 47
1250
+ 49
1251
+ 8
1252
+ 1
1253
+ 8
1254
+ 43
1255
+ 1
1256
+ 15
1257
+ 20
1258
+ 0
1259
+ 7
1260
+ 9
1261
+ 49
1262
+ 3
1263
+ 1
1264
+ 9
1265
+ 56
1266
+ 1
1267
+ 8
1268
+ 84
1269
+ 5
1270
+ 48
1271
+ 10
1272
+ 49
1273
+ 11
1274
+ 0
1275
+ 9
1276
+ 83
1277
+ 5
1278
+ 7
1279
+ 12
1280
+ 64
1281
+ 47
1282
+ 49
1283
+ 8
1284
+ 1
1285
+ 15
1286
+ 5
1287
+ 5
1288
+ 48
1289
+ 13
1290
+ 47
1291
+ 49
1292
+ 8
1293
+ 1
1294
+ 8
1295
+ 84
1296
+ 1
1297
+ 11
1298
+ I
1299
+ 5
1300
+ I
1301
+ 1
1302
+ I
1303
+ 0
1304
+ I
1305
+ 1
1306
+ n
1307
+ p
1308
+ 14
1309
+ x
1310
+ 4
1311
+ Hash
1312
+ x
1313
+ 16
1314
+ new_from_literal
1315
+ x
1316
+ 6
1317
+ create
1318
+ x
1319
+ 2
1320
+ []
1321
+ s
1322
+ 112
1323
+
1324
+ Congratulations! Your rails project has been configured to use Compass.
1325
+ Just a couple more things left to do.
1326
+
1327
+
1328
+ x
1329
+ 23
1330
+ gem_config_instructions
1331
+ x
1332
+ 4
1333
+ to_s
1334
+ s
1335
+ 165
1336
+
1337
+
1338
+ Then, make sure you restart your server.
1339
+
1340
+ Sass will automatically compile your stylesheets during the next
1341
+ page request and keep them up to date when they change.
1342
+
1343
+ x
1344
+ 4
1345
+ puts
1346
+ x
1347
+ 7
1348
+ prepare
1349
+ x
1350
+ 8
1351
+ manifest
1352
+ x
1353
+ 15
1354
+ has_stylesheet?
1355
+ s
1356
+ 53
1357
+
1358
+ Now add these lines to the head of your layout(s):
1359
+
1360
+
1361
+ x
1362
+ 16
1363
+ stylesheet_links
1364
+ p
1365
+ 23
1366
+ I
1367
+ -1
1368
+ I
1369
+ 30
1370
+ I
1371
+ e
1372
+ I
1373
+ 31
1374
+ I
1375
+ 17
1376
+ I
1377
+ 32
1378
+ I
1379
+ 18
1380
+ I
1381
+ 37
1382
+ I
1383
+ 24
1384
+ I
1385
+ 32
1386
+ I
1387
+ 2a
1388
+ I
1389
+ 31
1390
+ I
1391
+ 2c
1392
+ I
1393
+ 3f
1394
+ I
1395
+ 38
1396
+ I
1397
+ 40
1398
+ I
1399
+ 40
1400
+ I
1401
+ 41
1402
+ I
1403
+ 49
1404
+ I
1405
+ 42
1406
+ I
1407
+ 53
1408
+ I
1409
+ 40
1410
+ I
1411
+ 55
1412
+ x
1413
+ 76
1414
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1415
+ p
1416
+ 1
1417
+ x
1418
+ 7
1419
+ options
1420
+ x
1421
+ 8
1422
+ hamlize?
1423
+ M
1424
+ 1
1425
+ n
1426
+ n
1427
+ x
1428
+ 8
1429
+ hamlize?
1430
+ i
1431
+ 51
1432
+ 26
1433
+ 93
1434
+ 0
1435
+ 15
1436
+ 29
1437
+ 20
1438
+ 0
1439
+ 5
1440
+ 7
1441
+ 0
1442
+ 64
1443
+ 47
1444
+ 49
1445
+ 1
1446
+ 1
1447
+ 15
1448
+ 2
1449
+ 30
1450
+ 8
1451
+ 47
1452
+ 26
1453
+ 93
1454
+ 1
1455
+ 15
1456
+ 24
1457
+ 13
1458
+ 45
1459
+ 2
1460
+ 3
1461
+ 12
1462
+ 49
1463
+ 4
1464
+ 1
1465
+ 10
1466
+ 37
1467
+ 8
1468
+ 42
1469
+ 15
1470
+ 3
1471
+ 25
1472
+ 8
1473
+ 47
1474
+ 15
1475
+ 92
1476
+ 1
1477
+ 27
1478
+ 34
1479
+ 92
1480
+ 0
1481
+ 27
1482
+ 11
1483
+ I
1484
+ 5
1485
+ I
1486
+ 0
1487
+ I
1488
+ 0
1489
+ I
1490
+ 0
1491
+ n
1492
+ p
1493
+ 5
1494
+ s
1495
+ 4
1496
+ haml
1497
+ x
1498
+ 7
1499
+ require
1500
+ x
1501
+ 9
1502
+ LoadError
1503
+ n
1504
+ x
1505
+ 3
1506
+ ===
1507
+ p
1508
+ 11
1509
+ I
1510
+ -1
1511
+ I
1512
+ 47
1513
+ I
1514
+ 0
1515
+ I
1516
+ 49
1517
+ I
1518
+ 10
1519
+ I
1520
+ 4a
1521
+ I
1522
+ 19
1523
+ I
1524
+ 4b
1525
+ I
1526
+ 26
1527
+ I
1528
+ 4c
1529
+ I
1530
+ 33
1531
+ x
1532
+ 76
1533
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1534
+ p
1535
+ 0
1536
+ x
1537
+ 25
1538
+ install_location_for_html
1539
+ M
1540
+ 1
1541
+ n
1542
+ n
1543
+ x
1544
+ 25
1545
+ install_location_for_html
1546
+ i
1547
+ 21
1548
+ 5
1549
+ 7
1550
+ 0
1551
+ 5
1552
+ 48
1553
+ 1
1554
+ 47
1555
+ 101
1556
+ 2
1557
+ 20
1558
+ 0
1559
+ 47
1560
+ 101
1561
+ 2
1562
+ 63
1563
+ 3
1564
+ 47
1565
+ 49
1566
+ 3
1567
+ 1
1568
+ 11
1569
+ I
1570
+ 6
1571
+ I
1572
+ 2
1573
+ I
1574
+ 2
1575
+ I
1576
+ 2
1577
+ n
1578
+ p
1579
+ 4
1580
+ s
1581
+ 7
1582
+ public/
1583
+ x
1584
+ 19
1585
+ pattern_name_as_dir
1586
+ x
1587
+ 4
1588
+ to_s
1589
+ x
1590
+ 8
1591
+ separate
1592
+ p
1593
+ 5
1594
+ I
1595
+ -1
1596
+ I
1597
+ 4f
1598
+ I
1599
+ 0
1600
+ I
1601
+ 50
1602
+ I
1603
+ 15
1604
+ x
1605
+ 76
1606
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1607
+ p
1608
+ 2
1609
+ x
1610
+ 2
1611
+ to
1612
+ x
1613
+ 7
1614
+ options
1615
+ x
1616
+ 15
1617
+ prompt_sass_dir
1618
+ M
1619
+ 1
1620
+ n
1621
+ n
1622
+ x
1623
+ 15
1624
+ prompt_sass_dir
1625
+ i
1626
+ 92
1627
+ 5
1628
+ 47
1629
+ 49
1630
+ 0
1631
+ 0
1632
+ 9
1633
+ 10
1634
+ 1
1635
+ 8
1636
+ 91
1637
+ 5
1638
+ 7
1639
+ 1
1640
+ 64
1641
+ 47
1642
+ 49
1643
+ 2
1644
+ 1
1645
+ 19
1646
+ 0
1647
+ 15
1648
+ 5
1649
+ 7
1650
+ 3
1651
+ 64
1652
+ 47
1653
+ 49
1654
+ 2
1655
+ 1
1656
+ 19
1657
+ 1
1658
+ 15
1659
+ 5
1660
+ 7
1661
+ 4
1662
+ 20
1663
+ 0
1664
+ 47
1665
+ 101
1666
+ 5
1667
+ 7
1668
+ 6
1669
+ 20
1670
+ 1
1671
+ 47
1672
+ 101
1673
+ 5
1674
+ 7
1675
+ 7
1676
+ 63
1677
+ 5
1678
+ 47
1679
+ 49
1680
+ 8
1681
+ 1
1682
+ 15
1683
+ 99
1684
+ 43
1685
+ 9
1686
+ 7
1687
+ 10
1688
+ 49
1689
+ 11
1690
+ 1
1691
+ 49
1692
+ 12
1693
+ 0
1694
+ 49
1695
+ 13
1696
+ 0
1697
+ 78
1698
+ 49
1699
+ 11
1700
+ 1
1701
+ 19
1702
+ 2
1703
+ 15
1704
+ 20
1705
+ 2
1706
+ 4
1707
+ 110
1708
+ 83
1709
+ 14
1710
+ 9
1711
+ 89
1712
+ 20
1713
+ 1
1714
+ 8
1715
+ 91
1716
+ 20
1717
+ 0
1718
+ 11
1719
+ I
1720
+ 9
1721
+ I
1722
+ 3
1723
+ I
1724
+ 0
1725
+ I
1726
+ 0
1727
+ n
1728
+ p
1729
+ 15
1730
+ x
1731
+ 7
1732
+ rails3?
1733
+ s
1734
+ 15
1735
+ app/stylesheets
1736
+ x
1737
+ 8
1738
+ separate
1739
+ s
1740
+ 23
1741
+ public/stylesheets/sass
1742
+ s
1743
+ 53
1744
+ Compass recommends that you keep your stylesheets in
1745
+ x
1746
+ 4
1747
+ to_s
1748
+ s
1749
+ 43
1750
+
1751
+ instead of the Sass default location of
1752
+ s
1753
+ 22
1754
+ .
1755
+ Is this OK? (Y/n)
1756
+ x
1757
+ 5
1758
+ print
1759
+ x
1760
+ 7
1761
+ Globals
1762
+ x
1763
+ 6
1764
+ $stdin
1765
+ x
1766
+ 2
1767
+ []
1768
+ x
1769
+ 4
1770
+ gets
1771
+ x
1772
+ 8
1773
+ downcase
1774
+ x
1775
+ 2
1776
+ ==
1777
+ p
1778
+ 23
1779
+ I
1780
+ -1
1781
+ I
1782
+ 53
1783
+ I
1784
+ 0
1785
+ I
1786
+ 54
1787
+ I
1788
+ 7
1789
+ I
1790
+ 55
1791
+ I
1792
+ a
1793
+ I
1794
+ 57
1795
+ I
1796
+ 15
1797
+ I
1798
+ 58
1799
+ I
1800
+ 20
1801
+ I
1802
+ 5b
1803
+ I
1804
+ 21
1805
+ I
1806
+ 59
1807
+ I
1808
+ 2a
1809
+ I
1810
+ 5a
1811
+ I
1812
+ 33
1813
+ I
1814
+ 5b
1815
+ I
1816
+ 38
1817
+ I
1818
+ 5c
1819
+ I
1820
+ 4d
1821
+ I
1822
+ 5d
1823
+ I
1824
+ 5c
1825
+ x
1826
+ 76
1827
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1828
+ p
1829
+ 3
1830
+ x
1831
+ 20
1832
+ recommended_location
1833
+ x
1834
+ 16
1835
+ default_location
1836
+ x
1837
+ 6
1838
+ answer
1839
+ x
1840
+ 14
1841
+ prompt_css_dir
1842
+ M
1843
+ 1
1844
+ n
1845
+ n
1846
+ x
1847
+ 14
1848
+ prompt_css_dir
1849
+ i
1850
+ 115
1851
+ 5
1852
+ 47
1853
+ 49
1854
+ 0
1855
+ 0
1856
+ 9
1857
+ 10
1858
+ 1
1859
+ 8
1860
+ 114
1861
+ 5
1862
+ 7
1863
+ 1
1864
+ 64
1865
+ 47
1866
+ 49
1867
+ 2
1868
+ 1
1869
+ 19
1870
+ 0
1871
+ 15
1872
+ 5
1873
+ 7
1874
+ 3
1875
+ 64
1876
+ 47
1877
+ 49
1878
+ 2
1879
+ 1
1880
+ 19
1881
+ 1
1882
+ 15
1883
+ 5
1884
+ 48
1885
+ 4
1886
+ 15
1887
+ 5
1888
+ 7
1889
+ 5
1890
+ 20
1891
+ 0
1892
+ 47
1893
+ 101
1894
+ 6
1895
+ 7
1896
+ 7
1897
+ 20
1898
+ 1
1899
+ 47
1900
+ 101
1901
+ 6
1902
+ 7
1903
+ 8
1904
+ 20
1905
+ 1
1906
+ 47
1907
+ 101
1908
+ 6
1909
+ 7
1910
+ 9
1911
+ 20
1912
+ 0
1913
+ 47
1914
+ 101
1915
+ 6
1916
+ 7
1917
+ 10
1918
+ 63
1919
+ 9
1920
+ 47
1921
+ 49
1922
+ 11
1923
+ 1
1924
+ 15
1925
+ 99
1926
+ 43
1927
+ 12
1928
+ 7
1929
+ 13
1930
+ 49
1931
+ 14
1932
+ 1
1933
+ 49
1934
+ 15
1935
+ 0
1936
+ 19
1937
+ 2
1938
+ 15
1939
+ 20
1940
+ 2
1941
+ 49
1942
+ 16
1943
+ 0
1944
+ 78
1945
+ 49
1946
+ 14
1947
+ 1
1948
+ 19
1949
+ 2
1950
+ 15
1951
+ 20
1952
+ 2
1953
+ 4
1954
+ 110
1955
+ 83
1956
+ 17
1957
+ 9
1958
+ 112
1959
+ 20
1960
+ 1
1961
+ 8
1962
+ 114
1963
+ 20
1964
+ 0
1965
+ 11
1966
+ I
1967
+ d
1968
+ I
1969
+ 3
1970
+ I
1971
+ 0
1972
+ I
1973
+ 0
1974
+ n
1975
+ p
1976
+ 18
1977
+ x
1978
+ 7
1979
+ rails3?
1980
+ s
1981
+ 27
1982
+ public/stylesheets/compiled
1983
+ x
1984
+ 8
1985
+ separate
1986
+ s
1987
+ 18
1988
+ public/stylesheets
1989
+ x
1990
+ 4
1991
+ puts
1992
+ s
1993
+ 54
1994
+ Compass recommends that you keep your compiled css in
1995
+ x
1996
+ 4
1997
+ to_s
1998
+ s
1999
+ 32
2000
+ /
2001
+ instead the Sass default of
2002
+ s
2003
+ 53
2004
+ /.
2005
+ However, if you're exclusively using Sass, then
2006
+ s
2007
+ 49
2008
+ / is recommended.
2009
+ Emit compiled stylesheets to
2010
+ s
2011
+ 9
2012
+ /? (Y/n)
2013
+ x
2014
+ 5
2015
+ print
2016
+ x
2017
+ 7
2018
+ Globals
2019
+ x
2020
+ 6
2021
+ $stdin
2022
+ x
2023
+ 2
2024
+ []
2025
+ x
2026
+ 4
2027
+ gets
2028
+ x
2029
+ 8
2030
+ downcase
2031
+ x
2032
+ 2
2033
+ ==
2034
+ p
2035
+ 29
2036
+ I
2037
+ -1
2038
+ I
2039
+ 61
2040
+ I
2041
+ 0
2042
+ I
2043
+ 62
2044
+ I
2045
+ 7
2046
+ I
2047
+ 63
2048
+ I
2049
+ a
2050
+ I
2051
+ 65
2052
+ I
2053
+ 15
2054
+ I
2055
+ 66
2056
+ I
2057
+ 20
2058
+ I
2059
+ 67
2060
+ I
2061
+ 24
2062
+ I
2063
+ 6b
2064
+ I
2065
+ 25
2066
+ I
2067
+ 68
2068
+ I
2069
+ 2e
2070
+ I
2071
+ 69
2072
+ I
2073
+ 35
2074
+ I
2075
+ 6a
2076
+ I
2077
+ 3c
2078
+ I
2079
+ 6b
2080
+ I
2081
+ 4a
2082
+ I
2083
+ 6c
2084
+ I
2085
+ 58
2086
+ I
2087
+ 6d
2088
+ I
2089
+ 64
2090
+ I
2091
+ 6e
2092
+ I
2093
+ 73
2094
+ x
2095
+ 76
2096
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2097
+ p
2098
+ 3
2099
+ x
2100
+ 20
2101
+ recommended_location
2102
+ x
2103
+ 16
2104
+ default_location
2105
+ x
2106
+ 6
2107
+ answer
2108
+ x
2109
+ 15
2110
+ config_contents
2111
+ M
2112
+ 1
2113
+ n
2114
+ n
2115
+ x
2116
+ 15
2117
+ config_contents
2118
+ i
2119
+ 88
2120
+ 29
2121
+ 52
2122
+ 1
2123
+ 26
2124
+ 93
2125
+ 0
2126
+ 15
2127
+ 45
2128
+ 0
2129
+ 1
2130
+ 49
2131
+ 2
2132
+ 0
2133
+ 49
2134
+ 3
2135
+ 0
2136
+ 1
2137
+ 17
2138
+ 2
2139
+ 19
2140
+ 0
2141
+ 15
2142
+ 45
2143
+ 0
2144
+ 4
2145
+ 49
2146
+ 2
2147
+ 0
2148
+ 12
2149
+ 49
2150
+ 5
2151
+ 1
2152
+ 15
2153
+ 2
2154
+ 15
2155
+ 7
2156
+ 6
2157
+ 64
2158
+ 45
2159
+ 0
2160
+ 7
2161
+ 49
2162
+ 2
2163
+ 0
2164
+ 49
2165
+ 8
2166
+ 0
2167
+ 81
2168
+ 9
2169
+ 30
2170
+ 8
2171
+ 71
2172
+ 26
2173
+ 45
2174
+ 0
2175
+ 10
2176
+ 49
2177
+ 2
2178
+ 0
2179
+ 20
2180
+ 0
2181
+ 13
2182
+ 18
2183
+ 2
2184
+ 49
2185
+ 5
2186
+ 1
2187
+ 15
2188
+ 15
2189
+ 27
2190
+ 34
2191
+ 45
2192
+ 0
2193
+ 11
2194
+ 49
2195
+ 2
2196
+ 0
2197
+ 20
2198
+ 0
2199
+ 13
2200
+ 18
2201
+ 2
2202
+ 49
2203
+ 5
2204
+ 1
2205
+ 15
2206
+ 15
2207
+ 11
2208
+ I
2209
+ 6
2210
+ I
2211
+ 1
2212
+ I
2213
+ 0
2214
+ I
2215
+ 0
2216
+ n
2217
+ p
2218
+ 12
2219
+ x
2220
+ 7
2221
+ Compass
2222
+ n
2223
+ x
2224
+ 13
2225
+ configuration
2226
+ x
2227
+ 12
2228
+ project_path
2229
+ n
2230
+ x
2231
+ 13
2232
+ project_path=
2233
+ s
2234
+ 90
2235
+ # This configuration file works with both the Compass command line tool and within Rails.
2236
+
2237
+ n
2238
+ x
2239
+ 9
2240
+ serialize
2241
+ x
2242
+ 1
2243
+ +
2244
+ n
2245
+ n
2246
+ p
2247
+ 11
2248
+ I
2249
+ -1
2250
+ I
2251
+ 72
2252
+ I
2253
+ 0
2254
+ I
2255
+ 73
2256
+ I
2257
+ 23
2258
+ I
2259
+ 74
2260
+ I
2261
+ 26
2262
+ I
2263
+ 75
2264
+ I
2265
+ 35
2266
+ I
2267
+ 77
2268
+ I
2269
+ 58
2270
+ x
2271
+ 76
2272
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2273
+ p
2274
+ 1
2275
+ x
2276
+ 12
2277
+ project_path
2278
+ x
2279
+ 20
2280
+ initializer_contents
2281
+ M
2282
+ 1
2283
+ n
2284
+ n
2285
+ x
2286
+ 20
2287
+ initializer_contents
2288
+ i
2289
+ 28
2290
+ 7
2291
+ 0
2292
+ 64
2293
+ 7
2294
+ 1
2295
+ 13
2296
+ 70
2297
+ 9
2298
+ 21
2299
+ 15
2300
+ 44
2301
+ 43
2302
+ 2
2303
+ 7
2304
+ 3
2305
+ 78
2306
+ 49
2307
+ 4
2308
+ 2
2309
+ 6
2310
+ 1
2311
+ 7
2312
+ 5
2313
+ 64
2314
+ 49
2315
+ 6
2316
+ 2
2317
+ 11
2318
+ I
2319
+ 4
2320
+ I
2321
+ 0
2322
+ I
2323
+ 0
2324
+ I
2325
+ 0
2326
+ n
2327
+ p
2328
+ 7
2329
+ s
2330
+ 140
2331
+ require 'compass'
2332
+ |require 'compass/app_integration/rails'
2333
+ |Compass::AppIntegration::Rails.initialize!
2334
+ |
2335
+ n
2336
+ x
2337
+ 6
2338
+ Regexp
2339
+ s
2340
+ 6
2341
+ ^\s+\|
2342
+ x
2343
+ 3
2344
+ new
2345
+ s
2346
+ 0
2347
+
2348
+ x
2349
+ 4
2350
+ gsub
2351
+ p
2352
+ 9
2353
+ I
2354
+ -1
2355
+ I
2356
+ 7a
2357
+ I
2358
+ 0
2359
+ I
2360
+ 7b
2361
+ I
2362
+ 3
2363
+ I
2364
+ 7e
2365
+ I
2366
+ 18
2367
+ I
2368
+ 7b
2369
+ I
2370
+ 1c
2371
+ x
2372
+ 76
2373
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2374
+ p
2375
+ 0
2376
+ x
2377
+ 17
2378
+ stylesheet_prefix
2379
+ M
2380
+ 1
2381
+ n
2382
+ n
2383
+ x
2384
+ 17
2385
+ stylesheet_prefix
2386
+ i
2387
+ 39
2388
+ 5
2389
+ 48
2390
+ 0
2391
+ 49
2392
+ 1
2393
+ 0
2394
+ 4
2395
+ 19
2396
+ 49
2397
+ 2
2398
+ 1
2399
+ 9
2400
+ 37
2401
+ 5
2402
+ 48
2403
+ 0
2404
+ 44
2405
+ 43
2406
+ 3
2407
+ 4
2408
+ 19
2409
+ 77
2410
+ 49
2411
+ 4
2412
+ 2
2413
+ 49
2414
+ 5
2415
+ 1
2416
+ 47
2417
+ 101
2418
+ 6
2419
+ 7
2420
+ 7
2421
+ 63
2422
+ 2
2423
+ 8
2424
+ 38
2425
+ 1
2426
+ 11
2427
+ I
2428
+ 4
2429
+ I
2430
+ 0
2431
+ I
2432
+ 0
2433
+ I
2434
+ 0
2435
+ n
2436
+ p
2437
+ 8
2438
+ x
2439
+ 7
2440
+ css_dir
2441
+ x
2442
+ 6
2443
+ length
2444
+ x
2445
+ 2
2446
+ >=
2447
+ x
2448
+ 5
2449
+ Range
2450
+ x
2451
+ 3
2452
+ new
2453
+ x
2454
+ 2
2455
+ []
2456
+ x
2457
+ 4
2458
+ to_s
2459
+ s
2460
+ 1
2461
+ /
2462
+ p
2463
+ 9
2464
+ I
2465
+ -1
2466
+ I
2467
+ 81
2468
+ I
2469
+ 0
2470
+ I
2471
+ 82
2472
+ I
2473
+ d
2474
+ I
2475
+ 83
2476
+ I
2477
+ 25
2478
+ I
2479
+ 85
2480
+ I
2481
+ 27
2482
+ x
2483
+ 76
2484
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2485
+ p
2486
+ 0
2487
+ x
2488
+ 16
2489
+ stylesheet_links
2490
+ M
2491
+ 1
2492
+ n
2493
+ n
2494
+ x
2495
+ 16
2496
+ stylesheet_links
2497
+ i
2498
+ 16
2499
+ 5
2500
+ 47
2501
+ 49
2502
+ 0
2503
+ 0
2504
+ 9
2505
+ 12
2506
+ 5
2507
+ 48
2508
+ 1
2509
+ 8
2510
+ 15
2511
+ 5
2512
+ 48
2513
+ 2
2514
+ 11
2515
+ I
2516
+ 1
2517
+ I
2518
+ 0
2519
+ I
2520
+ 0
2521
+ I
2522
+ 0
2523
+ n
2524
+ p
2525
+ 3
2526
+ x
2527
+ 8
2528
+ hamlize?
2529
+ x
2530
+ 21
2531
+ haml_stylesheet_links
2532
+ x
2533
+ 21
2534
+ html_stylesheet_links
2535
+ p
2536
+ 9
2537
+ I
2538
+ -1
2539
+ I
2540
+ 89
2541
+ I
2542
+ 0
2543
+ I
2544
+ 8a
2545
+ I
2546
+ 7
2547
+ I
2548
+ 8b
2549
+ I
2550
+ c
2551
+ I
2552
+ 8d
2553
+ I
2554
+ 10
2555
+ x
2556
+ 76
2557
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2558
+ p
2559
+ 0
2560
+ x
2561
+ 21
2562
+ haml_stylesheet_links
2563
+ M
2564
+ 1
2565
+ n
2566
+ n
2567
+ x
2568
+ 21
2569
+ haml_stylesheet_links
2570
+ i
2571
+ 18
2572
+ 7
2573
+ 0
2574
+ 64
2575
+ 19
2576
+ 0
2577
+ 15
2578
+ 5
2579
+ 48
2580
+ 1
2581
+ 56
2582
+ 2
2583
+ 50
2584
+ 3
2585
+ 0
2586
+ 15
2587
+ 20
2588
+ 0
2589
+ 11
2590
+ I
2591
+ 3
2592
+ I
2593
+ 1
2594
+ I
2595
+ 0
2596
+ I
2597
+ 0
2598
+ n
2599
+ p
2600
+ 4
2601
+ s
2602
+ 6
2603
+ %head
2604
+
2605
+ x
2606
+ 8
2607
+ manifest
2608
+ M
2609
+ 1
2610
+ p
2611
+ 2
2612
+ x
2613
+ 9
2614
+ for_block
2615
+ t
2616
+ n
2617
+ x
2618
+ 21
2619
+ haml_stylesheet_links
2620
+ i
2621
+ 182
2622
+ 57
2623
+ 19
2624
+ 0
2625
+ 15
2626
+ 45
2627
+ 0
2628
+ 1
2629
+ 20
2630
+ 0
2631
+ 49
2632
+ 2
2633
+ 0
2634
+ 49
2635
+ 3
2636
+ 1
2637
+ 44
2638
+ 43
2639
+ 4
2640
+ 78
2641
+ 78
2642
+ 49
2643
+ 5
2644
+ 2
2645
+ 49
2646
+ 6
2647
+ 1
2648
+ 7
2649
+ 7
2650
+ 64
2651
+ 83
2652
+ 8
2653
+ 9
2654
+ 37
2655
+ 1
2656
+ 11
2657
+ 8
2658
+ 38
2659
+ 1
2660
+ 15
2661
+ 7
2662
+ 9
2663
+ 5
2664
+ 48
2665
+ 10
2666
+ 47
2667
+ 101
2668
+ 11
2669
+ 20
2670
+ 0
2671
+ 49
2672
+ 12
2673
+ 0
2674
+ 7
2675
+ 13
2676
+ 13
2677
+ 70
2678
+ 9
2679
+ 70
2680
+ 15
2681
+ 44
2682
+ 43
2683
+ 14
2684
+ 7
2685
+ 15
2686
+ 78
2687
+ 49
2688
+ 5
2689
+ 2
2690
+ 6
2691
+ 13
2692
+ 7
2693
+ 16
2694
+ 64
2695
+ 49
2696
+ 17
2697
+ 2
2698
+ 47
2699
+ 101
2700
+ 11
2701
+ 7
2702
+ 18
2703
+ 63
2704
+ 4
2705
+ 19
2706
+ 1
2707
+ 15
2708
+ 20
2709
+ 0
2710
+ 49
2711
+ 19
2712
+ 0
2713
+ 7
2714
+ 20
2715
+ 49
2716
+ 6
2717
+ 1
2718
+ 9
2719
+ 125
2720
+ 20
2721
+ 1
2722
+ 7
2723
+ 21
2724
+ 20
2725
+ 0
2726
+ 49
2727
+ 19
2728
+ 0
2729
+ 7
2730
+ 20
2731
+ 49
2732
+ 6
2733
+ 1
2734
+ 47
2735
+ 101
2736
+ 11
2737
+ 7
2738
+ 18
2739
+ 63
2740
+ 3
2741
+ 81
2742
+ 22
2743
+ 19
2744
+ 1
2745
+ 8
2746
+ 126
2747
+ 1
2748
+ 15
2749
+ 20
2750
+ 0
2751
+ 49
2752
+ 19
2753
+ 0
2754
+ 7
2755
+ 23
2756
+ 49
2757
+ 6
2758
+ 1
2759
+ 9
2760
+ 166
2761
+ 7
2762
+ 24
2763
+ 20
2764
+ 0
2765
+ 49
2766
+ 19
2767
+ 0
2768
+ 7
2769
+ 23
2770
+ 49
2771
+ 6
2772
+ 1
2773
+ 47
2774
+ 101
2775
+ 11
2776
+ 7
2777
+ 25
2778
+ 63
2779
+ 3
2780
+ 20
2781
+ 1
2782
+ 81
2783
+ 22
2784
+ 19
2785
+ 1
2786
+ 8
2787
+ 167
2788
+ 1
2789
+ 15
2790
+ 21
2791
+ 1
2792
+ 0
2793
+ 20
2794
+ 1
2795
+ 7
2796
+ 26
2797
+ 64
2798
+ 81
2799
+ 22
2800
+ 49
2801
+ 27
2802
+ 1
2803
+ 11
2804
+ I
2805
+ 9
2806
+ I
2807
+ 2
2808
+ I
2809
+ 1
2810
+ I
2811
+ 1
2812
+ n
2813
+ p
2814
+ 28
2815
+ x
2816
+ 4
2817
+ File
2818
+ n
2819
+ x
2820
+ 4
2821
+ from
2822
+ x
2823
+ 8
2824
+ basename
2825
+ x
2826
+ 5
2827
+ Range
2828
+ x
2829
+ 3
2830
+ new
2831
+ x
2832
+ 2
2833
+ []
2834
+ s
2835
+ 1
2836
+ _
2837
+ x
2838
+ 2
2839
+ ==
2840
+ s
2841
+ 25
2842
+ = stylesheet_link_tag '
2843
+ x
2844
+ 17
2845
+ stylesheet_prefix
2846
+ x
2847
+ 4
2848
+ to_s
2849
+ x
2850
+ 2
2851
+ to
2852
+ n
2853
+ x
2854
+ 6
2855
+ Regexp
2856
+ s
2857
+ 10
2858
+ \.s[ac]ss$
2859
+ s
2860
+ 4
2861
+ .css
2862
+ x
2863
+ 3
2864
+ sub
2865
+ s
2866
+ 1
2867
+ '
2868
+ x
2869
+ 7
2870
+ options
2871
+ x
2872
+ 5
2873
+ media
2874
+ s
2875
+ 13
2876
+ , :media => '
2877
+ x
2878
+ 1
2879
+ +
2880
+ x
2881
+ 9
2882
+ condition
2883
+ s
2884
+ 7
2885
+ /[if
2886
+ s
2887
+ 4
2888
+ ]
2889
+
2890
+ s
2891
+ 1
2892
+
2893
+
2894
+ x
2895
+ 2
2896
+ <<
2897
+ p
2898
+ 21
2899
+ I
2900
+ 0
2901
+ I
2902
+ 93
2903
+ I
2904
+ 4
2905
+ I
2906
+ 95
2907
+ I
2908
+ 27
2909
+ I
2910
+ 96
2911
+ I
2912
+ 56
2913
+ I
2914
+ 97
2915
+ I
2916
+ 62
2917
+ I
2918
+ 98
2919
+ I
2920
+ 7d
2921
+ I
2922
+ 97
2923
+ I
2924
+ 7f
2925
+ I
2926
+ 9a
2927
+ I
2928
+ 8b
2929
+ I
2930
+ 9b
2931
+ I
2932
+ a6
2933
+ I
2934
+ 9a
2935
+ I
2936
+ a8
2937
+ I
2938
+ 9d
2939
+ I
2940
+ b6
2941
+ x
2942
+ 76
2943
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2944
+ p
2945
+ 2
2946
+ x
2947
+ 10
2948
+ stylesheet
2949
+ x
2950
+ 7
2951
+ ss_line
2952
+ x
2953
+ 15
2954
+ each_stylesheet
2955
+ p
2956
+ 9
2957
+ I
2958
+ -1
2959
+ I
2960
+ 91
2961
+ I
2962
+ 0
2963
+ I
2964
+ 92
2965
+ I
2966
+ 6
2967
+ I
2968
+ 93
2969
+ I
2970
+ f
2971
+ I
2972
+ 9f
2973
+ I
2974
+ 12
2975
+ x
2976
+ 76
2977
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2978
+ p
2979
+ 1
2980
+ x
2981
+ 4
2982
+ html
2983
+ x
2984
+ 21
2985
+ html_stylesheet_links
2986
+ M
2987
+ 1
2988
+ n
2989
+ n
2990
+ x
2991
+ 21
2992
+ html_stylesheet_links
2993
+ i
2994
+ 27
2995
+ 7
2996
+ 0
2997
+ 64
2998
+ 19
2999
+ 0
3000
+ 15
3001
+ 5
3002
+ 48
3003
+ 1
3004
+ 56
3005
+ 2
3006
+ 50
3007
+ 3
3008
+ 0
3009
+ 15
3010
+ 20
3011
+ 0
3012
+ 7
3013
+ 4
3014
+ 64
3015
+ 49
3016
+ 5
3017
+ 1
3018
+ 15
3019
+ 20
3020
+ 0
3021
+ 11
3022
+ I
3023
+ 3
3024
+ I
3025
+ 1
3026
+ I
3027
+ 0
3028
+ I
3029
+ 0
3030
+ n
3031
+ p
3032
+ 6
3033
+ s
3034
+ 7
3035
+ <head>
3036
+
3037
+ x
3038
+ 8
3039
+ manifest
3040
+ M
3041
+ 1
3042
+ p
3043
+ 2
3044
+ x
3045
+ 9
3046
+ for_block
3047
+ t
3048
+ n
3049
+ x
3050
+ 21
3051
+ html_stylesheet_links
3052
+ i
3053
+ 201
3054
+ 57
3055
+ 19
3056
+ 0
3057
+ 15
3058
+ 45
3059
+ 0
3060
+ 1
3061
+ 20
3062
+ 0
3063
+ 49
3064
+ 2
3065
+ 0
3066
+ 49
3067
+ 3
3068
+ 1
3069
+ 44
3070
+ 43
3071
+ 4
3072
+ 78
3073
+ 78
3074
+ 49
3075
+ 5
3076
+ 2
3077
+ 49
3078
+ 6
3079
+ 1
3080
+ 7
3081
+ 7
3082
+ 64
3083
+ 83
3084
+ 8
3085
+ 9
3086
+ 37
3087
+ 1
3088
+ 11
3089
+ 8
3090
+ 38
3091
+ 1
3092
+ 15
3093
+ 7
3094
+ 9
3095
+ 5
3096
+ 48
3097
+ 10
3098
+ 47
3099
+ 101
3100
+ 11
3101
+ 20
3102
+ 0
3103
+ 49
3104
+ 12
3105
+ 0
3106
+ 7
3107
+ 13
3108
+ 13
3109
+ 70
3110
+ 9
3111
+ 70
3112
+ 15
3113
+ 44
3114
+ 43
3115
+ 14
3116
+ 7
3117
+ 15
3118
+ 78
3119
+ 49
3120
+ 5
3121
+ 2
3122
+ 6
3123
+ 13
3124
+ 7
3125
+ 16
3126
+ 64
3127
+ 49
3128
+ 17
3129
+ 2
3130
+ 47
3131
+ 101
3132
+ 11
3133
+ 7
3134
+ 18
3135
+ 63
3136
+ 4
3137
+ 19
3138
+ 1
3139
+ 15
3140
+ 20
3141
+ 0
3142
+ 49
3143
+ 19
3144
+ 0
3145
+ 7
3146
+ 20
3147
+ 49
3148
+ 6
3149
+ 1
3150
+ 9
3151
+ 125
3152
+ 20
3153
+ 1
3154
+ 7
3155
+ 21
3156
+ 20
3157
+ 0
3158
+ 49
3159
+ 19
3160
+ 0
3161
+ 7
3162
+ 20
3163
+ 49
3164
+ 6
3165
+ 1
3166
+ 47
3167
+ 101
3168
+ 11
3169
+ 7
3170
+ 18
3171
+ 63
3172
+ 3
3173
+ 81
3174
+ 22
3175
+ 19
3176
+ 1
3177
+ 8
3178
+ 126
3179
+ 1
3180
+ 15
3181
+ 20
3182
+ 1
3183
+ 7
3184
+ 23
3185
+ 64
3186
+ 81
3187
+ 22
3188
+ 19
3189
+ 1
3190
+ 15
3191
+ 20
3192
+ 0
3193
+ 49
3194
+ 19
3195
+ 0
3196
+ 7
3197
+ 24
3198
+ 49
3199
+ 6
3200
+ 1
3201
+ 9
3202
+ 181
3203
+ 7
3204
+ 25
3205
+ 20
3206
+ 0
3207
+ 49
3208
+ 19
3209
+ 0
3210
+ 7
3211
+ 24
3212
+ 49
3213
+ 6
3214
+ 1
3215
+ 47
3216
+ 101
3217
+ 11
3218
+ 7
3219
+ 26
3220
+ 63
3221
+ 3
3222
+ 20
3223
+ 1
3224
+ 81
3225
+ 22
3226
+ 7
3227
+ 27
3228
+ 64
3229
+ 81
3230
+ 22
3231
+ 19
3232
+ 1
3233
+ 8
3234
+ 182
3235
+ 1
3236
+ 15
3237
+ 21
3238
+ 1
3239
+ 0
3240
+ 7
3241
+ 28
3242
+ 20
3243
+ 1
3244
+ 47
3245
+ 101
3246
+ 11
3247
+ 7
3248
+ 29
3249
+ 63
3250
+ 3
3251
+ 49
3252
+ 30
3253
+ 1
3254
+ 11
3255
+ I
3256
+ 9
3257
+ I
3258
+ 2
3259
+ I
3260
+ 1
3261
+ I
3262
+ 1
3263
+ n
3264
+ p
3265
+ 31
3266
+ x
3267
+ 4
3268
+ File
3269
+ n
3270
+ x
3271
+ 4
3272
+ from
3273
+ x
3274
+ 8
3275
+ basename
3276
+ x
3277
+ 5
3278
+ Range
3279
+ x
3280
+ 3
3281
+ new
3282
+ x
3283
+ 2
3284
+ []
3285
+ s
3286
+ 1
3287
+ _
3288
+ x
3289
+ 2
3290
+ ==
3291
+ s
3292
+ 25
3293
+ <%= stylesheet_link_tag '
3294
+ x
3295
+ 17
3296
+ stylesheet_prefix
3297
+ x
3298
+ 4
3299
+ to_s
3300
+ x
3301
+ 2
3302
+ to
3303
+ n
3304
+ x
3305
+ 6
3306
+ Regexp
3307
+ s
3308
+ 10
3309
+ \.s[ac]ss$
3310
+ s
3311
+ 4
3312
+ .css
3313
+ x
3314
+ 3
3315
+ sub
3316
+ s
3317
+ 1
3318
+ '
3319
+ x
3320
+ 7
3321
+ options
3322
+ x
3323
+ 5
3324
+ media
3325
+ s
3326
+ 13
3327
+ , :media => '
3328
+ x
3329
+ 1
3330
+ +
3331
+ s
3332
+ 3
3333
+ %>
3334
+ x
3335
+ 9
3336
+ condition
3337
+ s
3338
+ 8
3339
+ <!--[if
3340
+ s
3341
+ 2
3342
+ ]>
3343
+ s
3344
+ 12
3345
+ <![endif]-->
3346
+ s
3347
+ 2
3348
+
3349
+ s
3350
+ 1
3351
+
3352
+
3353
+ x
3354
+ 2
3355
+ <<
3356
+ p
3357
+ 23
3358
+ I
3359
+ 0
3360
+ I
3361
+ a3
3362
+ I
3363
+ 4
3364
+ I
3365
+ a5
3366
+ I
3367
+ 27
3368
+ I
3369
+ a6
3370
+ I
3371
+ 56
3372
+ I
3373
+ a7
3374
+ I
3375
+ 62
3376
+ I
3377
+ a8
3378
+ I
3379
+ 7d
3380
+ I
3381
+ a7
3382
+ I
3383
+ 7f
3384
+ I
3385
+ aa
3386
+ I
3387
+ 89
3388
+ I
3389
+ ab
3390
+ I
3391
+ 95
3392
+ I
3393
+ ac
3394
+ I
3395
+ b5
3396
+ I
3397
+ ab
3398
+ I
3399
+ b7
3400
+ I
3401
+ ae
3402
+ I
3403
+ c9
3404
+ x
3405
+ 76
3406
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3407
+ p
3408
+ 2
3409
+ x
3410
+ 10
3411
+ stylesheet
3412
+ x
3413
+ 7
3414
+ ss_line
3415
+ x
3416
+ 15
3417
+ each_stylesheet
3418
+ s
3419
+ 7
3420
+ </head>
3421
+ x
3422
+ 2
3423
+ <<
3424
+ p
3425
+ 11
3426
+ I
3427
+ -1
3428
+ I
3429
+ a1
3430
+ I
3431
+ 0
3432
+ I
3433
+ a2
3434
+ I
3435
+ 6
3436
+ I
3437
+ a3
3438
+ I
3439
+ f
3440
+ I
3441
+ b0
3442
+ I
3443
+ 18
3444
+ I
3445
+ b1
3446
+ I
3447
+ 1b
3448
+ x
3449
+ 76
3450
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3451
+ p
3452
+ 1
3453
+ x
3454
+ 4
3455
+ html
3456
+ p
3457
+ 33
3458
+ I
3459
+ 2
3460
+ I
3461
+ d
3462
+ I
3463
+ 10
3464
+ I
3465
+ 14
3466
+ I
3467
+ 1e
3468
+ I
3469
+ 20
3470
+ I
3471
+ 2c
3472
+ I
3473
+ 24
3474
+ I
3475
+ 3a
3476
+ I
3477
+ 28
3478
+ I
3479
+ 48
3480
+ I
3481
+ 30
3482
+ I
3483
+ 56
3484
+ I
3485
+ 47
3486
+ I
3487
+ 64
3488
+ I
3489
+ 4f
3490
+ I
3491
+ 72
3492
+ I
3493
+ 53
3494
+ I
3495
+ 80
3496
+ I
3497
+ 61
3498
+ I
3499
+ 8e
3500
+ I
3501
+ 72
3502
+ I
3503
+ 9c
3504
+ I
3505
+ 7a
3506
+ I
3507
+ aa
3508
+ I
3509
+ 81
3510
+ I
3511
+ b8
3512
+ I
3513
+ 89
3514
+ I
3515
+ c6
3516
+ I
3517
+ 91
3518
+ I
3519
+ d4
3520
+ I
3521
+ a1
3522
+ I
3523
+ e2
3524
+ x
3525
+ 76
3526
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3527
+ p
3528
+ 0
3529
+ x
3530
+ 13
3531
+ attach_method
3532
+ p
3533
+ 3
3534
+ I
3535
+ 2
3536
+ I
3537
+ b
3538
+ I
3539
+ 23
3540
+ x
3541
+ 76
3542
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3543
+ p
3544
+ 0
3545
+ x
3546
+ 13
3547
+ attach_method
3548
+ p
3549
+ 3
3550
+ I
3551
+ 2
3552
+ I
3553
+ a
3554
+ I
3555
+ 1c
3556
+ x
3557
+ 76
3558
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3559
+ p
3560
+ 0
3561
+ p
3562
+ 5
3563
+ I
3564
+ 2
3565
+ I
3566
+ 2
3567
+ I
3568
+ 1c
3569
+ I
3570
+ 9
3571
+ I
3572
+ 36
3573
+ x
3574
+ 76
3575
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3576
+ p
3577
+ 0
3578
+ x
3579
+ 13
3580
+ attach_method
3581
+ p
3582
+ 3
3583
+ I
3584
+ 0
3585
+ I
3586
+ 1
3587
+ I
3588
+ 1c
3589
+ x
3590
+ 76
3591
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3592
+ p
3593
+ 0