compass 0.11.1 → 0.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,1467 @@
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
+ 82
214
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/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
+ 10
273
+ StandAlone
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
+ 10
286
+ StandAlone
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
+ 114
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
+ 11
477
+ I
478
+ 5
479
+ I
480
+ 0
481
+ I
482
+ 0
483
+ I
484
+ 0
485
+ n
486
+ p
487
+ 18
488
+ x
489
+ 4
490
+ init
491
+ M
492
+ 1
493
+ n
494
+ n
495
+ x
496
+ 4
497
+ init
498
+ i
499
+ 18
500
+ 5
501
+ 5
502
+ 7
503
+ 0
504
+ 64
505
+ 47
506
+ 49
507
+ 1
508
+ 1
509
+ 47
510
+ 49
511
+ 2
512
+ 1
513
+ 15
514
+ 54
515
+ 89
516
+ 3
517
+ 11
518
+ I
519
+ 3
520
+ I
521
+ 0
522
+ I
523
+ 0
524
+ I
525
+ 0
526
+ n
527
+ p
528
+ 4
529
+ s
530
+ 0
531
+
532
+ x
533
+ 9
534
+ targetize
535
+ x
536
+ 9
537
+ directory
538
+ x
539
+ 4
540
+ init
541
+ p
542
+ 7
543
+ I
544
+ -1
545
+ I
546
+ d
547
+ I
548
+ 0
549
+ I
550
+ e
551
+ I
552
+ e
553
+ I
554
+ f
555
+ I
556
+ 12
557
+ x
558
+ 82
559
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
560
+ p
561
+ 0
562
+ x
563
+ 17
564
+ method_visibility
565
+ x
566
+ 15
567
+ add_defn_method
568
+ x
569
+ 25
570
+ write_configuration_files
571
+ M
572
+ 1
573
+ n
574
+ n
575
+ x
576
+ 25
577
+ write_configuration_files
578
+ i
579
+ 36
580
+ 23
581
+ 0
582
+ 10
583
+ 8
584
+ 1
585
+ 19
586
+ 0
587
+ 15
588
+ 20
589
+ 0
590
+ 13
591
+ 10
592
+ 24
593
+ 15
594
+ 5
595
+ 7
596
+ 0
597
+ 64
598
+ 47
599
+ 49
600
+ 1
601
+ 1
602
+ 19
603
+ 0
604
+ 15
605
+ 5
606
+ 20
607
+ 0
608
+ 5
609
+ 48
610
+ 2
611
+ 47
612
+ 49
613
+ 3
614
+ 2
615
+ 11
616
+ I
617
+ 4
618
+ I
619
+ 1
620
+ I
621
+ 0
622
+ I
623
+ 1
624
+ n
625
+ p
626
+ 4
627
+ s
628
+ 9
629
+ config.rb
630
+ x
631
+ 9
632
+ targetize
633
+ x
634
+ 15
635
+ config_contents
636
+ x
637
+ 10
638
+ write_file
639
+ p
640
+ 7
641
+ I
642
+ -1
643
+ I
644
+ 12
645
+ I
646
+ 8
647
+ I
648
+ 13
649
+ I
650
+ 19
651
+ I
652
+ 14
653
+ I
654
+ 24
655
+ x
656
+ 82
657
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
658
+ p
659
+ 1
660
+ x
661
+ 11
662
+ config_file
663
+ x
664
+ 19
665
+ config_files_exist?
666
+ M
667
+ 1
668
+ n
669
+ n
670
+ x
671
+ 19
672
+ config_files_exist?
673
+ i
674
+ 15
675
+ 45
676
+ 0
677
+ 1
678
+ 5
679
+ 7
680
+ 2
681
+ 64
682
+ 47
683
+ 49
684
+ 3
685
+ 1
686
+ 49
687
+ 4
688
+ 1
689
+ 11
690
+ I
691
+ 3
692
+ I
693
+ 0
694
+ I
695
+ 0
696
+ I
697
+ 0
698
+ n
699
+ p
700
+ 5
701
+ x
702
+ 4
703
+ File
704
+ n
705
+ s
706
+ 9
707
+ config.rb
708
+ x
709
+ 9
710
+ targetize
711
+ x
712
+ 7
713
+ exists?
714
+ p
715
+ 5
716
+ I
717
+ -1
718
+ I
719
+ 17
720
+ I
721
+ 0
722
+ I
723
+ 18
724
+ I
725
+ f
726
+ x
727
+ 82
728
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
729
+ p
730
+ 0
731
+ x
732
+ 15
733
+ config_contents
734
+ M
735
+ 1
736
+ n
737
+ n
738
+ x
739
+ 15
740
+ config_contents
741
+ i
742
+ 83
743
+ 29
744
+ 47
745
+ 1
746
+ 26
747
+ 93
748
+ 0
749
+ 15
750
+ 45
751
+ 0
752
+ 1
753
+ 49
754
+ 2
755
+ 0
756
+ 49
757
+ 3
758
+ 0
759
+ 1
760
+ 17
761
+ 2
762
+ 19
763
+ 0
764
+ 15
765
+ 45
766
+ 0
767
+ 4
768
+ 49
769
+ 2
770
+ 0
771
+ 12
772
+ 49
773
+ 5
774
+ 1
775
+ 15
776
+ 2
777
+ 15
778
+ 45
779
+ 0
780
+ 6
781
+ 49
782
+ 2
783
+ 0
784
+ 49
785
+ 7
786
+ 0
787
+ 30
788
+ 8
789
+ 66
790
+ 26
791
+ 45
792
+ 0
793
+ 8
794
+ 49
795
+ 2
796
+ 0
797
+ 20
798
+ 0
799
+ 13
800
+ 18
801
+ 2
802
+ 49
803
+ 5
804
+ 1
805
+ 15
806
+ 15
807
+ 27
808
+ 34
809
+ 45
810
+ 0
811
+ 9
812
+ 49
813
+ 2
814
+ 0
815
+ 20
816
+ 0
817
+ 13
818
+ 18
819
+ 2
820
+ 49
821
+ 5
822
+ 1
823
+ 15
824
+ 15
825
+ 11
826
+ I
827
+ 6
828
+ I
829
+ 1
830
+ I
831
+ 0
832
+ I
833
+ 0
834
+ n
835
+ p
836
+ 10
837
+ x
838
+ 7
839
+ Compass
840
+ n
841
+ x
842
+ 13
843
+ configuration
844
+ x
845
+ 12
846
+ project_path
847
+ n
848
+ x
849
+ 13
850
+ project_path=
851
+ n
852
+ x
853
+ 9
854
+ serialize
855
+ n
856
+ n
857
+ p
858
+ 9
859
+ I
860
+ -1
861
+ I
862
+ 1b
863
+ I
864
+ 0
865
+ I
866
+ 1c
867
+ I
868
+ 23
869
+ I
870
+ 1d
871
+ I
872
+ 30
873
+ I
874
+ 1f
875
+ I
876
+ 53
877
+ x
878
+ 82
879
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
880
+ p
881
+ 1
882
+ x
883
+ 12
884
+ project_path
885
+ x
886
+ 7
887
+ prepare
888
+ M
889
+ 1
890
+ n
891
+ n
892
+ x
893
+ 7
894
+ prepare
895
+ i
896
+ 29
897
+ 5
898
+ 47
899
+ 49
900
+ 0
901
+ 0
902
+ 13
903
+ 10
904
+ 20
905
+ 15
906
+ 39
907
+ 1
908
+ 49
909
+ 2
910
+ 0
911
+ 10
912
+ 19
913
+ 2
914
+ 8
915
+ 20
916
+ 3
917
+ 9
918
+ 25
919
+ 1
920
+ 8
921
+ 28
922
+ 5
923
+ 48
924
+ 3
925
+ 11
926
+ I
927
+ 2
928
+ I
929
+ 0
930
+ I
931
+ 0
932
+ I
933
+ 0
934
+ n
935
+ p
936
+ 4
937
+ x
938
+ 19
939
+ config_files_exist?
940
+ x
941
+ 9
942
+ @manifest
943
+ x
944
+ 16
945
+ generate_config?
946
+ x
947
+ 25
948
+ write_configuration_files
949
+ p
950
+ 5
951
+ I
952
+ -1
953
+ I
954
+ 22
955
+ I
956
+ 0
957
+ I
958
+ 23
959
+ I
960
+ 1d
961
+ x
962
+ 82
963
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
964
+ p
965
+ 0
966
+ x
967
+ 23
968
+ completed_configuration
969
+ M
970
+ 1
971
+ n
972
+ n
973
+ x
974
+ 23
975
+ completed_configuration
976
+ i
977
+ 2
978
+ 1
979
+ 11
980
+ I
981
+ 1
982
+ I
983
+ 0
984
+ I
985
+ 0
986
+ I
987
+ 0
988
+ n
989
+ p
990
+ 0
991
+ p
992
+ 5
993
+ I
994
+ -1
995
+ I
996
+ 26
997
+ I
998
+ 0
999
+ I
1000
+ 27
1001
+ I
1002
+ 2
1003
+ x
1004
+ 82
1005
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1006
+ p
1007
+ 0
1008
+ x
1009
+ 8
1010
+ finalize
1011
+ M
1012
+ 1
1013
+ n
1014
+ n
1015
+ x
1016
+ 8
1017
+ finalize
1018
+ i
1019
+ 144
1020
+ 23
1021
+ 0
1022
+ 10
1023
+ 14
1024
+ 44
1025
+ 43
1026
+ 0
1027
+ 78
1028
+ 49
1029
+ 1
1030
+ 1
1031
+ 19
1032
+ 0
1033
+ 15
1034
+ 20
1035
+ 0
1036
+ 7
1037
+ 2
1038
+ 49
1039
+ 3
1040
+ 1
1041
+ 13
1042
+ 9
1043
+ 42
1044
+ 15
1045
+ 5
1046
+ 48
1047
+ 4
1048
+ 49
1049
+ 5
1050
+ 0
1051
+ 7
1052
+ 6
1053
+ 49
1054
+ 3
1055
+ 1
1056
+ 10
1057
+ 41
1058
+ 2
1059
+ 8
1060
+ 42
1061
+ 3
1062
+ 9
1063
+ 69
1064
+ 5
1065
+ 7
1066
+ 7
1067
+ 45
1068
+ 8
1069
+ 9
1070
+ 49
1071
+ 10
1072
+ 0
1073
+ 49
1074
+ 11
1075
+ 0
1076
+ 47
1077
+ 101
1078
+ 12
1079
+ 7
1080
+ 13
1081
+ 63
1082
+ 3
1083
+ 47
1084
+ 49
1085
+ 14
1086
+ 1
1087
+ 8
1088
+ 70
1089
+ 1
1090
+ 15
1091
+ 5
1092
+ 48
1093
+ 4
1094
+ 49
1095
+ 15
1096
+ 0
1097
+ 9
1098
+ 92
1099
+ 5
1100
+ 5
1101
+ 48
1102
+ 4
1103
+ 49
1104
+ 15
1105
+ 0
1106
+ 47
1107
+ 49
1108
+ 14
1109
+ 1
1110
+ 8
1111
+ 93
1112
+ 1
1113
+ 15
1114
+ 5
1115
+ 48
1116
+ 4
1117
+ 49
1118
+ 16
1119
+ 0
1120
+ 13
1121
+ 9
1122
+ 121
1123
+ 15
1124
+ 5
1125
+ 48
1126
+ 4
1127
+ 49
1128
+ 5
1129
+ 0
1130
+ 7
1131
+ 6
1132
+ 49
1133
+ 3
1134
+ 1
1135
+ 10
1136
+ 120
1137
+ 2
1138
+ 8
1139
+ 121
1140
+ 3
1141
+ 9
1142
+ 142
1143
+ 5
1144
+ 7
1145
+ 17
1146
+ 64
1147
+ 47
1148
+ 49
1149
+ 14
1150
+ 1
1151
+ 15
1152
+ 5
1153
+ 5
1154
+ 48
1155
+ 18
1156
+ 47
1157
+ 49
1158
+ 14
1159
+ 1
1160
+ 8
1161
+ 143
1162
+ 1
1163
+ 11
1164
+ I
1165
+ 5
1166
+ I
1167
+ 1
1168
+ I
1169
+ 0
1170
+ I
1171
+ 1
1172
+ n
1173
+ p
1174
+ 19
1175
+ x
1176
+ 4
1177
+ Hash
1178
+ x
1179
+ 16
1180
+ new_from_literal
1181
+ x
1182
+ 6
1183
+ create
1184
+ x
1185
+ 2
1186
+ []
1187
+ x
1188
+ 8
1189
+ manifest
1190
+ x
1191
+ 23
1192
+ welcome_message_options
1193
+ x
1194
+ 7
1195
+ replace
1196
+ s
1197
+ 177
1198
+
1199
+ *********************************************************************
1200
+ Congratulations! Your compass project has been created.
1201
+
1202
+ You may now add and edit sass stylesheets in the
1203
+ x
1204
+ 7
1205
+ Compass
1206
+ n
1207
+ x
1208
+ 13
1209
+ configuration
1210
+ x
1211
+ 8
1212
+ sass_dir
1213
+ x
1214
+ 4
1215
+ to_s
1216
+ s
1217
+ 689
1218
+ subdirectory of your project.
1219
+
1220
+ Sass files beginning with an underscore are called partials and won't be
1221
+ compiled to CSS, but they can be imported into other sass stylesheets.
1222
+
1223
+ You can configure your project by editing the config.rb configuration file.
1224
+
1225
+ You must compile your sass stylesheets into CSS when they change.
1226
+ This can be done in one of the following ways:
1227
+ 1. To compile on demand:
1228
+ compass compile [path/to/project]
1229
+ 2. To monitor your project for changes and automatically recompile:
1230
+ compass watch [path/to/project]
1231
+
1232
+ More Resources:
1233
+ * Website: http://compass-style.org/
1234
+ * Sass: http://sass-lang.com
1235
+ * Community: http://groups.google.com/group/compass-users/
1236
+
1237
+
1238
+ x
1239
+ 4
1240
+ puts
1241
+ x
1242
+ 15
1243
+ welcome_message
1244
+ x
1245
+ 15
1246
+ has_stylesheet?
1247
+ s
1248
+ 96
1249
+
1250
+ To import your new stylesheets add the following lines of HTML (or equivalent) to your webpage:
1251
+ x
1252
+ 16
1253
+ stylesheet_links
1254
+ p
1255
+ 23
1256
+ I
1257
+ -1
1258
+ I
1259
+ 2a
1260
+ I
1261
+ e
1262
+ I
1263
+ 2b
1264
+ I
1265
+ 2c
1266
+ I
1267
+ 2c
1268
+ I
1269
+ 2d
1270
+ I
1271
+ 31
1272
+ I
1273
+ 3f
1274
+ I
1275
+ 2c
1276
+ I
1277
+ 45
1278
+ I
1279
+ 2b
1280
+ I
1281
+ 47
1282
+ I
1283
+ 46
1284
+ I
1285
+ 5e
1286
+ I
1287
+ 47
1288
+ I
1289
+ 7b
1290
+ I
1291
+ 48
1292
+ I
1293
+ 84
1294
+ I
1295
+ 49
1296
+ I
1297
+ 8e
1298
+ I
1299
+ 47
1300
+ I
1301
+ 90
1302
+ x
1303
+ 82
1304
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1305
+ p
1306
+ 1
1307
+ x
1308
+ 7
1309
+ options
1310
+ x
1311
+ 21
1312
+ compilation_required?
1313
+ M
1314
+ 1
1315
+ n
1316
+ n
1317
+ x
1318
+ 21
1319
+ compilation_required?
1320
+ i
1321
+ 6
1322
+ 39
1323
+ 0
1324
+ 49
1325
+ 1
1326
+ 0
1327
+ 11
1328
+ I
1329
+ 1
1330
+ I
1331
+ 0
1332
+ I
1333
+ 0
1334
+ I
1335
+ 0
1336
+ n
1337
+ p
1338
+ 2
1339
+ x
1340
+ 9
1341
+ @manifest
1342
+ x
1343
+ 8
1344
+ compile?
1345
+ p
1346
+ 5
1347
+ I
1348
+ -1
1349
+ I
1350
+ 4d
1351
+ I
1352
+ 0
1353
+ I
1354
+ 4e
1355
+ I
1356
+ 6
1357
+ x
1358
+ 82
1359
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1360
+ p
1361
+ 0
1362
+ p
1363
+ 17
1364
+ I
1365
+ 2
1366
+ I
1367
+ d
1368
+ I
1369
+ 10
1370
+ I
1371
+ 12
1372
+ I
1373
+ 1e
1374
+ I
1375
+ 17
1376
+ I
1377
+ 2c
1378
+ I
1379
+ 1b
1380
+ I
1381
+ 3a
1382
+ I
1383
+ 22
1384
+ I
1385
+ 48
1386
+ I
1387
+ 26
1388
+ I
1389
+ 56
1390
+ I
1391
+ 2a
1392
+ I
1393
+ 64
1394
+ I
1395
+ 4d
1396
+ I
1397
+ 72
1398
+ x
1399
+ 82
1400
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1401
+ p
1402
+ 0
1403
+ x
1404
+ 13
1405
+ attach_method
1406
+ p
1407
+ 3
1408
+ I
1409
+ 2
1410
+ I
1411
+ b
1412
+ I
1413
+ 23
1414
+ x
1415
+ 82
1416
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1417
+ p
1418
+ 0
1419
+ x
1420
+ 13
1421
+ attach_method
1422
+ p
1423
+ 3
1424
+ I
1425
+ 2
1426
+ I
1427
+ a
1428
+ I
1429
+ 1c
1430
+ x
1431
+ 82
1432
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1433
+ p
1434
+ 0
1435
+ p
1436
+ 5
1437
+ I
1438
+ 2
1439
+ I
1440
+ 2
1441
+ I
1442
+ 1c
1443
+ I
1444
+ 9
1445
+ I
1446
+ 36
1447
+ x
1448
+ 82
1449
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1450
+ p
1451
+ 0
1452
+ x
1453
+ 13
1454
+ attach_method
1455
+ p
1456
+ 3
1457
+ I
1458
+ 0
1459
+ I
1460
+ 1
1461
+ I
1462
+ 1c
1463
+ x
1464
+ 82
1465
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1466
+ p
1467
+ 0