compass 0.12.rc.1 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/VERSION.yml +1 -2
  2. data/bin/compass.compiled.rbc +707 -0
  3. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  4. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  5. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  6. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  7. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  8. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf +0 -0
  9. data/features/command_line.feature +14 -15
  10. data/frameworks/compass/stylesheets/compass/_css3.scss +1 -2
  11. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +4 -4
  12. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +59 -38
  13. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +3 -5
  14. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +12 -4
  15. data/frameworks/compass/stylesheets/compass/utilities/_sprites.scss +1 -0
  16. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss +1 -1
  17. data/lib/compass.rb +2 -0
  18. data/lib/compass.rbc +796 -0
  19. data/lib/compass/actions.rbc +2736 -0
  20. data/lib/compass/app_integration.rbc +836 -0
  21. data/lib/compass/app_integration/merb.rbc +106 -0
  22. data/lib/compass/app_integration/rails.rbc +2096 -0
  23. data/lib/compass/app_integration/rails/configuration_defaults.rbc +2430 -0
  24. data/lib/compass/app_integration/rails/installer.rbc +3677 -0
  25. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  26. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  27. data/lib/compass/app_integration/stand_alone/installer.rbc +1487 -0
  28. data/lib/compass/browser_support.rbc +1144 -0
  29. data/lib/compass/commands.rbc +307 -0
  30. data/lib/compass/commands/base.rbc +1044 -0
  31. data/lib/compass/commands/clean_project.rbc +1856 -0
  32. data/lib/compass/commands/create_project.rbc +2691 -0
  33. data/lib/compass/commands/default.rbc +1677 -0
  34. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  35. data/lib/compass/commands/help.rbc +1921 -0
  36. data/lib/compass/commands/imports.rbc +969 -0
  37. data/lib/compass/commands/installer_command.rbc +807 -0
  38. data/lib/compass/commands/interactive.rbc +1341 -0
  39. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  40. data/lib/compass/commands/print_version.rbc +2478 -0
  41. data/lib/compass/commands/project_base.rbc +2085 -0
  42. data/lib/compass/commands/project_stats.rb +28 -13
  43. data/lib/compass/commands/project_stats.rbc +4202 -0
  44. data/lib/compass/commands/registry.rbc +1350 -0
  45. data/lib/compass/commands/sprite.rbc +2212 -0
  46. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  47. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  48. data/lib/compass/commands/update_project.rbc +3002 -0
  49. data/lib/compass/commands/validate_project.rbc +1686 -0
  50. data/lib/compass/commands/watch_project.rbc +4155 -0
  51. data/lib/compass/commands/write_configuration.rbc +2896 -0
  52. data/lib/compass/compiler.rb +3 -1
  53. data/lib/compass/compiler.rbc +4913 -0
  54. data/lib/compass/configuration.rbc +1398 -0
  55. data/lib/compass/configuration/adapters.rbc +2088 -0
  56. data/lib/compass/configuration/comments.rbc +843 -0
  57. data/lib/compass/configuration/data.rbc +2633 -0
  58. data/lib/compass/configuration/defaults.rbc +3617 -0
  59. data/lib/compass/configuration/file_data.rbc +643 -0
  60. data/lib/compass/configuration/helpers.rb +1 -4
  61. data/lib/compass/configuration/helpers.rbc +3500 -0
  62. data/lib/compass/configuration/inheritance.rbc +3592 -0
  63. data/lib/compass/configuration/paths.rbc +412 -0
  64. data/lib/compass/configuration/serialization.rbc +1996 -0
  65. data/lib/compass/dependencies.rbc +232 -0
  66. data/lib/compass/errors.rbc +176 -0
  67. data/lib/compass/exec.rbc +500 -0
  68. data/lib/compass/exec/command_option_parser.rbc +676 -0
  69. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  70. data/lib/compass/exec/helpers.rbc +758 -0
  71. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  72. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  73. data/lib/compass/frameworks.rbc +3640 -0
  74. data/lib/compass/grid_builder.rbc +0 -0
  75. data/lib/compass/installers.rbc +152 -0
  76. data/lib/compass/installers/bare_installer.rbc +939 -0
  77. data/lib/compass/installers/base.rbc +4427 -0
  78. data/lib/compass/installers/manifest.rb +1 -1
  79. data/lib/compass/installers/manifest.rbc +3335 -0
  80. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  81. data/lib/compass/installers/template_context.rbc +1030 -0
  82. data/lib/compass/logger.rbc +2317 -0
  83. data/lib/compass/quick_cache.rbc +324 -0
  84. data/lib/compass/sass_extensions.rbc +213 -0
  85. data/lib/compass/sass_extensions/functions.rb +2 -2
  86. data/lib/compass/sass_extensions/functions.rbc +808 -0
  87. data/lib/compass/sass_extensions/functions/colors.rbc +1279 -0
  88. data/lib/compass/sass_extensions/functions/constants.rbc +1921 -0
  89. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1966 -0
  90. data/lib/compass/sass_extensions/functions/display.rbc +1227 -0
  91. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  92. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  93. data/lib/compass/sass_extensions/functions/font_files.rbc +821 -0
  94. data/lib/compass/sass_extensions/functions/gradient_support.rb +18 -7
  95. data/lib/compass/sass_extensions/functions/gradient_support.rbc +14147 -0
  96. data/lib/compass/sass_extensions/functions/image_size.rbc +3152 -0
  97. data/lib/compass/sass_extensions/functions/inline_image.rb +3 -1
  98. data/lib/compass/sass_extensions/functions/inline_image.rbc +1678 -0
  99. data/lib/compass/sass_extensions/functions/lists.rbc +2601 -0
  100. data/lib/compass/sass_extensions/functions/math.rb +63 -0
  101. data/lib/compass/sass_extensions/functions/selectors.rbc +1592 -0
  102. data/lib/compass/sass_extensions/functions/sprites.rbc +3792 -0
  103. data/lib/compass/sass_extensions/functions/trig.rbc +811 -0
  104. data/lib/compass/sass_extensions/functions/urls.rbc +5248 -0
  105. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  106. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2169 -0
  107. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +660 -0
  108. data/lib/compass/sass_extensions/sprites.rbc +363 -0
  109. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  110. data/lib/compass/sass_extensions/sprites/engines.rbc +662 -0
  111. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +1074 -0
  112. data/lib/compass/sass_extensions/sprites/image.rbc +2961 -0
  113. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  114. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  115. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  116. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  117. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +1991 -0
  118. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  119. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  120. data/lib/compass/sprite_importer.rbc +3573 -0
  121. data/lib/compass/stats.rb +5 -0
  122. data/lib/compass/util.rbc +552 -0
  123. data/lib/compass/version.rbc +1245 -0
  124. data/test/fixtures/stylesheets/compass/css/background-clip.css +1 -1
  125. data/test/fixtures/stylesheets/compass/css/gradients.css +19 -369
  126. data/test/fixtures/stylesheets/compass/css/transition.css +44 -1
  127. data/test/fixtures/stylesheets/compass/css/utilities.css +1 -1
  128. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +1 -1
  129. data/test/fixtures/stylesheets/compass/sass/gradients.sass +8 -143
  130. data/test/fixtures/stylesheets/compass/sass/transition.scss +7 -1
  131. data/test/helpers/command_line.rbc +2820 -0
  132. data/test/helpers/diff.rbc +1104 -0
  133. data/test/helpers/io.rbc +962 -0
  134. data/test/helpers/rails.rbc +1116 -0
  135. data/test/helpers/test_case.rbc +1255 -0
  136. data/test/integrations/compass_test.rbc +6589 -0
  137. data/test/integrations/rails_integration_test.rbc +1342 -0
  138. data/test/integrations/sprites_test.rb +4 -4
  139. data/test/integrations/sprites_test.rbc +6192 -0
  140. data/test/test_helper.rbc +1694 -0
  141. data/test/units/actions_test.rbc +644 -0
  142. data/test/units/command_line_test.rbc +1532 -0
  143. data/test/units/compass_module_test.rb +36 -0
  144. data/test/units/compass_png_test.rbc +0 -0
  145. data/test/units/configuration_test.rbc +3833 -0
  146. data/test/units/rails_configuration_test.rbc +1032 -0
  147. data/test/units/sass_extensions_test.rb +13 -1
  148. data/test/units/sass_extensions_test.rbc +3586 -0
  149. data/test/units/sprites/engine_test.rbc +962 -0
  150. data/test/units/sprites/image_row_test.rbc +1578 -0
  151. data/test/units/sprites/image_test.rbc +2836 -0
  152. data/test/units/sprites/importer_test.rb +1 -1
  153. data/test/units/sprites/importer_test.rbc +2620 -0
  154. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  155. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  156. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  157. metadata +161 -15
  158. data/frameworks/compass/stylesheets/compass/css3/_gradient.scss +0 -99
  159. data/lib/compass/sass_extensions/functions/trig.rb +0 -28
@@ -0,0 +1,1487 @@
1
+ !RBIX
2
+ 9595534255132031488
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
+ 84
214
+ /Users/crispee/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
+ 84
559
+ /Users/crispee/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
+ 84
657
+ /Users/crispee/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
+ 84
728
+ /Users/crispee/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
+ 11
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
+ 42
877
+ I
878
+ 1f
879
+ I
880
+ 53
881
+ x
882
+ 84
883
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
884
+ p
885
+ 1
886
+ x
887
+ 12
888
+ project_path
889
+ x
890
+ 7
891
+ prepare
892
+ M
893
+ 1
894
+ n
895
+ n
896
+ x
897
+ 7
898
+ prepare
899
+ i
900
+ 29
901
+ 5
902
+ 47
903
+ 49
904
+ 0
905
+ 0
906
+ 13
907
+ 10
908
+ 20
909
+ 15
910
+ 39
911
+ 1
912
+ 49
913
+ 2
914
+ 0
915
+ 10
916
+ 19
917
+ 2
918
+ 8
919
+ 20
920
+ 3
921
+ 9
922
+ 25
923
+ 1
924
+ 8
925
+ 28
926
+ 5
927
+ 48
928
+ 3
929
+ 11
930
+ I
931
+ 2
932
+ I
933
+ 0
934
+ I
935
+ 0
936
+ I
937
+ 0
938
+ n
939
+ p
940
+ 4
941
+ x
942
+ 19
943
+ config_files_exist?
944
+ x
945
+ 9
946
+ @manifest
947
+ x
948
+ 16
949
+ generate_config?
950
+ x
951
+ 25
952
+ write_configuration_files
953
+ p
954
+ 7
955
+ I
956
+ -1
957
+ I
958
+ 22
959
+ I
960
+ 0
961
+ I
962
+ 23
963
+ I
964
+ 1c
965
+ I
966
+ 0
967
+ I
968
+ 1d
969
+ x
970
+ 84
971
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
972
+ p
973
+ 0
974
+ x
975
+ 23
976
+ completed_configuration
977
+ M
978
+ 1
979
+ n
980
+ n
981
+ x
982
+ 23
983
+ completed_configuration
984
+ i
985
+ 2
986
+ 1
987
+ 11
988
+ I
989
+ 1
990
+ I
991
+ 0
992
+ I
993
+ 0
994
+ I
995
+ 0
996
+ n
997
+ p
998
+ 0
999
+ p
1000
+ 5
1001
+ I
1002
+ -1
1003
+ I
1004
+ 26
1005
+ I
1006
+ 0
1007
+ I
1008
+ 27
1009
+ I
1010
+ 2
1011
+ x
1012
+ 84
1013
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1014
+ p
1015
+ 0
1016
+ x
1017
+ 8
1018
+ finalize
1019
+ M
1020
+ 1
1021
+ n
1022
+ n
1023
+ x
1024
+ 8
1025
+ finalize
1026
+ i
1027
+ 144
1028
+ 23
1029
+ 0
1030
+ 10
1031
+ 14
1032
+ 44
1033
+ 43
1034
+ 0
1035
+ 78
1036
+ 49
1037
+ 1
1038
+ 1
1039
+ 19
1040
+ 0
1041
+ 15
1042
+ 20
1043
+ 0
1044
+ 7
1045
+ 2
1046
+ 49
1047
+ 3
1048
+ 1
1049
+ 13
1050
+ 9
1051
+ 42
1052
+ 15
1053
+ 5
1054
+ 48
1055
+ 4
1056
+ 49
1057
+ 5
1058
+ 0
1059
+ 7
1060
+ 6
1061
+ 49
1062
+ 3
1063
+ 1
1064
+ 10
1065
+ 41
1066
+ 2
1067
+ 8
1068
+ 42
1069
+ 3
1070
+ 9
1071
+ 69
1072
+ 5
1073
+ 7
1074
+ 7
1075
+ 45
1076
+ 8
1077
+ 9
1078
+ 49
1079
+ 10
1080
+ 0
1081
+ 49
1082
+ 11
1083
+ 0
1084
+ 47
1085
+ 101
1086
+ 12
1087
+ 7
1088
+ 13
1089
+ 63
1090
+ 3
1091
+ 47
1092
+ 49
1093
+ 14
1094
+ 1
1095
+ 8
1096
+ 70
1097
+ 1
1098
+ 15
1099
+ 5
1100
+ 48
1101
+ 4
1102
+ 49
1103
+ 15
1104
+ 0
1105
+ 9
1106
+ 92
1107
+ 5
1108
+ 5
1109
+ 48
1110
+ 4
1111
+ 49
1112
+ 15
1113
+ 0
1114
+ 47
1115
+ 49
1116
+ 14
1117
+ 1
1118
+ 8
1119
+ 93
1120
+ 1
1121
+ 15
1122
+ 5
1123
+ 48
1124
+ 4
1125
+ 49
1126
+ 16
1127
+ 0
1128
+ 13
1129
+ 9
1130
+ 121
1131
+ 15
1132
+ 5
1133
+ 48
1134
+ 4
1135
+ 49
1136
+ 5
1137
+ 0
1138
+ 7
1139
+ 6
1140
+ 49
1141
+ 3
1142
+ 1
1143
+ 10
1144
+ 120
1145
+ 2
1146
+ 8
1147
+ 121
1148
+ 3
1149
+ 9
1150
+ 142
1151
+ 5
1152
+ 7
1153
+ 17
1154
+ 64
1155
+ 47
1156
+ 49
1157
+ 14
1158
+ 1
1159
+ 15
1160
+ 5
1161
+ 5
1162
+ 48
1163
+ 18
1164
+ 47
1165
+ 49
1166
+ 14
1167
+ 1
1168
+ 8
1169
+ 143
1170
+ 1
1171
+ 11
1172
+ I
1173
+ 5
1174
+ I
1175
+ 1
1176
+ I
1177
+ 0
1178
+ I
1179
+ 1
1180
+ n
1181
+ p
1182
+ 19
1183
+ x
1184
+ 4
1185
+ Hash
1186
+ x
1187
+ 16
1188
+ new_from_literal
1189
+ x
1190
+ 6
1191
+ create
1192
+ x
1193
+ 2
1194
+ []
1195
+ x
1196
+ 8
1197
+ manifest
1198
+ x
1199
+ 23
1200
+ welcome_message_options
1201
+ x
1202
+ 7
1203
+ replace
1204
+ s
1205
+ 177
1206
+
1207
+ *********************************************************************
1208
+ Congratulations! Your compass project has been created.
1209
+
1210
+ You may now add and edit sass stylesheets in the
1211
+ x
1212
+ 7
1213
+ Compass
1214
+ n
1215
+ x
1216
+ 13
1217
+ configuration
1218
+ x
1219
+ 8
1220
+ sass_dir
1221
+ x
1222
+ 4
1223
+ to_s
1224
+ s
1225
+ 689
1226
+ subdirectory of your project.
1227
+
1228
+ Sass files beginning with an underscore are called partials and won't be
1229
+ compiled to CSS, but they can be imported into other sass stylesheets.
1230
+
1231
+ You can configure your project by editing the config.rb configuration file.
1232
+
1233
+ You must compile your sass stylesheets into CSS when they change.
1234
+ This can be done in one of the following ways:
1235
+ 1. To compile on demand:
1236
+ compass compile [path/to/project]
1237
+ 2. To monitor your project for changes and automatically recompile:
1238
+ compass watch [path/to/project]
1239
+
1240
+ More Resources:
1241
+ * Website: http://compass-style.org/
1242
+ * Sass: http://sass-lang.com
1243
+ * Community: http://groups.google.com/group/compass-users/
1244
+
1245
+
1246
+ x
1247
+ 4
1248
+ puts
1249
+ x
1250
+ 15
1251
+ welcome_message
1252
+ x
1253
+ 15
1254
+ has_stylesheet?
1255
+ s
1256
+ 96
1257
+
1258
+ To import your new stylesheets add the following lines of HTML (or equivalent) to your webpage:
1259
+ x
1260
+ 16
1261
+ stylesheet_links
1262
+ p
1263
+ 29
1264
+ I
1265
+ -1
1266
+ I
1267
+ 2a
1268
+ I
1269
+ e
1270
+ I
1271
+ 2b
1272
+ I
1273
+ 2c
1274
+ I
1275
+ 2c
1276
+ I
1277
+ 2d
1278
+ I
1279
+ 31
1280
+ I
1281
+ 3f
1282
+ I
1283
+ 2c
1284
+ I
1285
+ 45
1286
+ I
1287
+ 2b
1288
+ I
1289
+ 46
1290
+ I
1291
+ 0
1292
+ I
1293
+ 47
1294
+ I
1295
+ 46
1296
+ I
1297
+ 5d
1298
+ I
1299
+ 0
1300
+ I
1301
+ 5e
1302
+ I
1303
+ 47
1304
+ I
1305
+ 7b
1306
+ I
1307
+ 48
1308
+ I
1309
+ 84
1310
+ I
1311
+ 49
1312
+ I
1313
+ 8e
1314
+ I
1315
+ 47
1316
+ I
1317
+ 8f
1318
+ I
1319
+ 0
1320
+ I
1321
+ 90
1322
+ x
1323
+ 84
1324
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1325
+ p
1326
+ 1
1327
+ x
1328
+ 7
1329
+ options
1330
+ x
1331
+ 21
1332
+ compilation_required?
1333
+ M
1334
+ 1
1335
+ n
1336
+ n
1337
+ x
1338
+ 21
1339
+ compilation_required?
1340
+ i
1341
+ 6
1342
+ 39
1343
+ 0
1344
+ 49
1345
+ 1
1346
+ 0
1347
+ 11
1348
+ I
1349
+ 1
1350
+ I
1351
+ 0
1352
+ I
1353
+ 0
1354
+ I
1355
+ 0
1356
+ n
1357
+ p
1358
+ 2
1359
+ x
1360
+ 9
1361
+ @manifest
1362
+ x
1363
+ 8
1364
+ compile?
1365
+ p
1366
+ 5
1367
+ I
1368
+ -1
1369
+ I
1370
+ 4d
1371
+ I
1372
+ 0
1373
+ I
1374
+ 4e
1375
+ I
1376
+ 6
1377
+ x
1378
+ 84
1379
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1380
+ p
1381
+ 0
1382
+ p
1383
+ 17
1384
+ I
1385
+ 2
1386
+ I
1387
+ d
1388
+ I
1389
+ 10
1390
+ I
1391
+ 12
1392
+ I
1393
+ 1e
1394
+ I
1395
+ 17
1396
+ I
1397
+ 2c
1398
+ I
1399
+ 1b
1400
+ I
1401
+ 3a
1402
+ I
1403
+ 22
1404
+ I
1405
+ 48
1406
+ I
1407
+ 26
1408
+ I
1409
+ 56
1410
+ I
1411
+ 2a
1412
+ I
1413
+ 64
1414
+ I
1415
+ 4d
1416
+ I
1417
+ 72
1418
+ x
1419
+ 84
1420
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1421
+ p
1422
+ 0
1423
+ x
1424
+ 13
1425
+ attach_method
1426
+ p
1427
+ 3
1428
+ I
1429
+ 2
1430
+ I
1431
+ b
1432
+ I
1433
+ 23
1434
+ x
1435
+ 84
1436
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1437
+ p
1438
+ 0
1439
+ x
1440
+ 13
1441
+ attach_method
1442
+ p
1443
+ 3
1444
+ I
1445
+ 2
1446
+ I
1447
+ a
1448
+ I
1449
+ 1c
1450
+ x
1451
+ 84
1452
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1453
+ p
1454
+ 0
1455
+ p
1456
+ 5
1457
+ I
1458
+ 2
1459
+ I
1460
+ 2
1461
+ I
1462
+ 1c
1463
+ I
1464
+ 9
1465
+ I
1466
+ 36
1467
+ x
1468
+ 84
1469
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1470
+ p
1471
+ 0
1472
+ x
1473
+ 13
1474
+ attach_method
1475
+ p
1476
+ 3
1477
+ I
1478
+ 0
1479
+ I
1480
+ 1
1481
+ I
1482
+ 1c
1483
+ x
1484
+ 84
1485
+ /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1486
+ p
1487
+ 0