compass 0.11.5 → 0.11.6

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 (151) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/compass +5 -1
  3. data/bin/compass.compiled.rbc +707 -0
  4. data/examples/compass/compass_app_log.txt +6 -0
  5. data/features/command_line.feature +16 -16
  6. data/features/extensions.feature +6 -0
  7. data/features/step_definitions/command_line_steps.rb +2 -0
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  10. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  12. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  13. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  14. data/lib/compass.rbc +42 -36
  15. data/lib/compass/actions.rbc +244 -85
  16. data/lib/compass/app_integration.rbc +28 -20
  17. data/lib/compass/app_integration/merb.rbc +8 -4
  18. data/lib/compass/app_integration/rails.rbc +664 -148
  19. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  20. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  21. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  22. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  23. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  24. data/lib/compass/browser_support.rbc +35 -23
  25. data/lib/compass/commands.rbc +307 -0
  26. data/lib/compass/commands/base.rbc +1044 -0
  27. data/lib/compass/commands/clean_project.rbc +1856 -0
  28. data/lib/compass/commands/create_project.rbc +2691 -0
  29. data/lib/compass/commands/default.rbc +1677 -0
  30. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  31. data/lib/compass/commands/help.rbc +1921 -0
  32. data/lib/compass/commands/imports.rbc +969 -0
  33. data/lib/compass/commands/installer_command.rbc +807 -0
  34. data/lib/compass/commands/interactive.rbc +1341 -0
  35. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  36. data/lib/compass/commands/print_version.rbc +2478 -0
  37. data/lib/compass/commands/project_base.rbc +2085 -0
  38. data/lib/compass/commands/project_stats.rb +7 -7
  39. data/lib/compass/commands/project_stats.rbc +4202 -0
  40. data/lib/compass/commands/registry.rbc +1350 -0
  41. data/lib/compass/commands/sprite.rbc +2212 -0
  42. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  43. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  44. data/lib/compass/commands/update_project.rbc +3002 -0
  45. data/lib/compass/commands/validate_project.rbc +1686 -0
  46. data/lib/compass/commands/watch_project.rbc +4155 -0
  47. data/lib/compass/commands/write_configuration.rbc +2896 -0
  48. data/lib/compass/compiler.rbc +591 -398
  49. data/lib/compass/configuration.rbc +134 -78
  50. data/lib/compass/configuration/adapters.rbc +98 -40
  51. data/lib/compass/configuration/comments.rbc +132 -51
  52. data/lib/compass/configuration/data.rbc +541 -551
  53. data/lib/compass/configuration/defaults.rbc +764 -189
  54. data/lib/compass/configuration/file_data.rbc +37 -125
  55. data/lib/compass/configuration/helpers.rb +7 -2
  56. data/lib/compass/configuration/helpers.rbc +433 -153
  57. data/lib/compass/configuration/inheritance.rbc +412 -165
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rbc +151 -84
  60. data/lib/compass/dependencies.rbc +16 -4
  61. data/lib/compass/errors.rbc +5 -5
  62. data/lib/compass/exec.rbc +500 -0
  63. data/lib/compass/exec/command_option_parser.rbc +676 -0
  64. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  65. data/lib/compass/exec/helpers.rbc +758 -0
  66. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  67. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  68. data/lib/compass/frameworks.rb +10 -4
  69. data/lib/compass/frameworks.rbc +118 -66
  70. data/lib/compass/grid_builder.rbc +0 -0
  71. data/lib/compass/installers.rbc +152 -0
  72. data/lib/compass/installers/bare_installer.rbc +939 -0
  73. data/lib/compass/installers/base.rbc +4427 -0
  74. data/lib/compass/installers/manifest.rbc +3335 -0
  75. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  76. data/lib/compass/installers/template_context.rbc +1030 -0
  77. data/lib/compass/logger.rbc +2317 -0
  78. data/lib/compass/quick_cache.rbc +12 -8
  79. data/lib/compass/sass_extensions.rbc +8 -4
  80. data/lib/compass/sass_extensions/functions.rbc +90 -57
  81. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  82. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  83. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  84. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  85. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  86. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  87. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  88. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  89. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  90. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  91. data/lib/compass/sass_extensions/functions/lists.rb +5 -0
  92. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  93. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  94. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  95. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  96. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  97. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  98. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  99. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  100. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  101. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  102. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  103. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  104. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  105. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  106. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  107. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  108. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  109. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +1 -1
  110. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  111. data/lib/compass/sprite_importer.rbc +1125 -1495
  112. data/lib/compass/util.rbc +19 -11
  113. data/lib/compass/version.rbc +53 -25
  114. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  115. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  116. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  117. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  118. data/test/fixtures/stylesheets/compass/css/user-interface.css +5 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  120. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  121. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  122. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  123. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  124. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  125. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  126. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  127. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  128. data/test/helpers/command_line.rbc +2820 -0
  129. data/test/helpers/diff.rbc +1104 -0
  130. data/test/helpers/io.rbc +962 -0
  131. data/test/helpers/rails.rbc +1116 -0
  132. data/test/helpers/test_case.rbc +1255 -0
  133. data/test/integrations/compass_test.rbc +6589 -0
  134. data/test/integrations/rails_integration_test.rbc +1342 -0
  135. data/test/integrations/sprites_test.rbc +6192 -0
  136. data/test/test_helper.rbc +1694 -0
  137. data/test/units/actions_test.rbc +644 -0
  138. data/test/units/command_line_test.rbc +1532 -0
  139. data/test/units/compass_png_test.rbc +0 -0
  140. data/test/units/configuration_test.rbc +3833 -0
  141. data/test/units/rails_configuration_test.rbc +1032 -0
  142. data/test/units/sass_extensions_test.rb +5 -0
  143. data/test/units/sass_extensions_test.rbc +3586 -0
  144. data/test/units/sprites/engine_test.rbc +962 -0
  145. data/test/units/sprites/image_row_test.rbc +1578 -0
  146. data/test/units/sprites/image_test.rbc +2836 -0
  147. data/test/units/sprites/importer_test.rbc +2620 -0
  148. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  149. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  150. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  151. metadata +157 -51
@@ -0,0 +1,1515 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 32
13
+ 99
14
+ 7
15
+ 0
16
+ 45
17
+ 1
18
+ 2
19
+ 43
20
+ 3
21
+ 49
22
+ 4
23
+ 2
24
+ 13
25
+ 99
26
+ 12
27
+ 7
28
+ 5
29
+ 12
30
+ 7
31
+ 6
32
+ 12
33
+ 65
34
+ 12
35
+ 49
36
+ 7
37
+ 4
38
+ 15
39
+ 49
40
+ 5
41
+ 0
42
+ 15
43
+ 2
44
+ 11
45
+ I
46
+ 6
47
+ I
48
+ 0
49
+ I
50
+ 0
51
+ I
52
+ 0
53
+ n
54
+ p
55
+ 8
56
+ x
57
+ 20
58
+ ProjectOptionsParser
59
+ x
60
+ 7
61
+ Compass
62
+ n
63
+ x
64
+ 4
65
+ Exec
66
+ x
67
+ 17
68
+ open_module_under
69
+ x
70
+ 15
71
+ __module_init__
72
+ M
73
+ 1
74
+ n
75
+ n
76
+ x
77
+ 20
78
+ ProjectOptionsParser
79
+ i
80
+ 44
81
+ 5
82
+ 66
83
+ 99
84
+ 7
85
+ 0
86
+ 7
87
+ 1
88
+ 65
89
+ 67
90
+ 49
91
+ 2
92
+ 0
93
+ 49
94
+ 3
95
+ 4
96
+ 15
97
+ 99
98
+ 7
99
+ 4
100
+ 7
101
+ 5
102
+ 65
103
+ 67
104
+ 49
105
+ 2
106
+ 0
107
+ 49
108
+ 3
109
+ 4
110
+ 15
111
+ 99
112
+ 7
113
+ 6
114
+ 7
115
+ 7
116
+ 65
117
+ 67
118
+ 49
119
+ 2
120
+ 0
121
+ 49
122
+ 3
123
+ 4
124
+ 11
125
+ I
126
+ 5
127
+ I
128
+ 0
129
+ I
130
+ 0
131
+ I
132
+ 0
133
+ n
134
+ p
135
+ 8
136
+ x
137
+ 11
138
+ set_options
139
+ M
140
+ 1
141
+ n
142
+ n
143
+ x
144
+ 11
145
+ set_options
146
+ i
147
+ 12
148
+ 54
149
+ 89
150
+ 0
151
+ 15
152
+ 5
153
+ 20
154
+ 0
155
+ 47
156
+ 49
157
+ 1
158
+ 1
159
+ 11
160
+ I
161
+ 3
162
+ I
163
+ 1
164
+ I
165
+ 1
166
+ I
167
+ 1
168
+ n
169
+ p
170
+ 2
171
+ x
172
+ 11
173
+ set_options
174
+ x
175
+ 19
176
+ set_project_options
177
+ p
178
+ 7
179
+ I
180
+ -1
181
+ I
182
+ 2
183
+ I
184
+ 0
185
+ I
186
+ 3
187
+ I
188
+ 4
189
+ I
190
+ 4
191
+ I
192
+ c
193
+ x
194
+ 74
195
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
196
+ p
197
+ 1
198
+ x
199
+ 4
200
+ opts
201
+ x
202
+ 17
203
+ method_visibility
204
+ x
205
+ 15
206
+ add_defn_method
207
+ x
208
+ 15
209
+ set_dir_or_path
210
+ M
211
+ 1
212
+ n
213
+ n
214
+ x
215
+ 15
216
+ set_dir_or_path
217
+ i
218
+ 106
219
+ 45
220
+ 0
221
+ 1
222
+ 13
223
+ 71
224
+ 2
225
+ 47
226
+ 9
227
+ 23
228
+ 47
229
+ 49
230
+ 3
231
+ 0
232
+ 13
233
+ 20
234
+ 1
235
+ 47
236
+ 49
237
+ 4
238
+ 1
239
+ 15
240
+ 8
241
+ 28
242
+ 20
243
+ 1
244
+ 49
245
+ 2
246
+ 1
247
+ 49
248
+ 5
249
+ 0
250
+ 9
251
+ 70
252
+ 5
253
+ 49
254
+ 6
255
+ 0
256
+ 20
257
+ 0
258
+ 47
259
+ 101
260
+ 7
261
+ 7
262
+ 8
263
+ 63
264
+ 2
265
+ 47
266
+ 49
267
+ 9
268
+ 0
269
+ 20
270
+ 1
271
+ 7
272
+ 10
273
+ 64
274
+ 7
275
+ 11
276
+ 64
277
+ 49
278
+ 12
279
+ 2
280
+ 13
281
+ 18
282
+ 3
283
+ 49
284
+ 13
285
+ 2
286
+ 15
287
+ 8
288
+ 105
289
+ 5
290
+ 49
291
+ 6
292
+ 0
293
+ 20
294
+ 0
295
+ 47
296
+ 101
297
+ 7
298
+ 7
299
+ 14
300
+ 63
301
+ 2
302
+ 47
303
+ 49
304
+ 9
305
+ 0
306
+ 20
307
+ 1
308
+ 7
309
+ 10
310
+ 64
311
+ 7
312
+ 11
313
+ 64
314
+ 49
315
+ 12
316
+ 2
317
+ 13
318
+ 18
319
+ 3
320
+ 49
321
+ 13
322
+ 2
323
+ 15
324
+ 11
325
+ I
326
+ 7
327
+ I
328
+ 2
329
+ I
330
+ 2
331
+ I
332
+ 2
333
+ n
334
+ p
335
+ 15
336
+ x
337
+ 8
338
+ Pathname
339
+ n
340
+ x
341
+ 3
342
+ new
343
+ x
344
+ 8
345
+ allocate
346
+ x
347
+ 10
348
+ initialize
349
+ x
350
+ 9
351
+ absolute?
352
+ x
353
+ 7
354
+ options
355
+ x
356
+ 4
357
+ to_s
358
+ s
359
+ 5
360
+ _path
361
+ x
362
+ 6
363
+ to_sym
364
+ s
365
+ 1
366
+ \
367
+ s
368
+ 1
369
+ /
370
+ x
371
+ 2
372
+ tr
373
+ x
374
+ 3
375
+ []=
376
+ s
377
+ 4
378
+ _dir
379
+ p
380
+ 11
381
+ I
382
+ -1
383
+ I
384
+ 6
385
+ I
386
+ 0
387
+ I
388
+ 7
389
+ I
390
+ 21
391
+ I
392
+ 8
393
+ I
394
+ 46
395
+ I
396
+ a
397
+ I
398
+ 69
399
+ I
400
+ 0
401
+ I
402
+ 6a
403
+ x
404
+ 74
405
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
406
+ p
407
+ 2
408
+ x
409
+ 4
410
+ type
411
+ x
412
+ 3
413
+ dir
414
+ x
415
+ 19
416
+ set_project_options
417
+ M
418
+ 1
419
+ n
420
+ n
421
+ x
422
+ 19
423
+ set_project_options
424
+ i
425
+ 175
426
+ 20
427
+ 0
428
+ 7
429
+ 0
430
+ 64
431
+ 7
432
+ 1
433
+ 64
434
+ 7
435
+ 2
436
+ 64
437
+ 56
438
+ 3
439
+ 50
440
+ 4
441
+ 3
442
+ 15
443
+ 20
444
+ 0
445
+ 7
446
+ 5
447
+ 64
448
+ 7
449
+ 6
450
+ 64
451
+ 56
452
+ 7
453
+ 50
454
+ 4
455
+ 2
456
+ 15
457
+ 20
458
+ 0
459
+ 7
460
+ 8
461
+ 64
462
+ 7
463
+ 9
464
+ 64
465
+ 56
466
+ 10
467
+ 50
468
+ 4
469
+ 2
470
+ 15
471
+ 20
472
+ 0
473
+ 7
474
+ 11
475
+ 64
476
+ 7
477
+ 12
478
+ 64
479
+ 56
480
+ 13
481
+ 50
482
+ 4
483
+ 2
484
+ 15
485
+ 20
486
+ 0
487
+ 7
488
+ 14
489
+ 64
490
+ 7
491
+ 15
492
+ 64
493
+ 56
494
+ 16
495
+ 50
496
+ 4
497
+ 2
498
+ 15
499
+ 20
500
+ 0
501
+ 7
502
+ 17
503
+ 64
504
+ 7
505
+ 18
506
+ 64
507
+ 56
508
+ 19
509
+ 50
510
+ 4
511
+ 2
512
+ 15
513
+ 20
514
+ 0
515
+ 7
516
+ 20
517
+ 64
518
+ 7
519
+ 21
520
+ 64
521
+ 7
522
+ 22
523
+ 7
524
+ 23
525
+ 35
526
+ 2
527
+ 7
528
+ 24
529
+ 64
530
+ 7
531
+ 25
532
+ 64
533
+ 56
534
+ 26
535
+ 50
536
+ 4
537
+ 5
538
+ 15
539
+ 20
540
+ 0
541
+ 7
542
+ 27
543
+ 64
544
+ 7
545
+ 28
546
+ 64
547
+ 7
548
+ 29
549
+ 7
550
+ 30
551
+ 7
552
+ 31
553
+ 7
554
+ 32
555
+ 35
556
+ 4
557
+ 7
558
+ 33
559
+ 64
560
+ 7
561
+ 34
562
+ 64
563
+ 56
564
+ 35
565
+ 50
566
+ 4
567
+ 5
568
+ 15
569
+ 20
570
+ 0
571
+ 7
572
+ 36
573
+ 64
574
+ 7
575
+ 37
576
+ 7
577
+ 38
578
+ 64
579
+ 56
580
+ 39
581
+ 50
582
+ 4
583
+ 3
584
+ 15
585
+ 20
586
+ 0
587
+ 7
588
+ 40
589
+ 64
590
+ 7
591
+ 37
592
+ 7
593
+ 41
594
+ 64
595
+ 56
596
+ 42
597
+ 50
598
+ 4
599
+ 3
600
+ 11
601
+ I
602
+ 8
603
+ I
604
+ 1
605
+ I
606
+ 1
607
+ I
608
+ 1
609
+ n
610
+ p
611
+ 43
612
+ s
613
+ 2
614
+ -c
615
+ s
616
+ 20
617
+ --config CONFIG_FILE
618
+ s
619
+ 58
620
+ Specify the location of the configuration file explicitly.
621
+ M
622
+ 1
623
+ p
624
+ 2
625
+ x
626
+ 9
627
+ for_block
628
+ t
629
+ n
630
+ x
631
+ 19
632
+ set_project_options
633
+ i
634
+ 20
635
+ 57
636
+ 19
637
+ 0
638
+ 15
639
+ 5
640
+ 49
641
+ 0
642
+ 0
643
+ 7
644
+ 1
645
+ 20
646
+ 0
647
+ 13
648
+ 18
649
+ 3
650
+ 49
651
+ 2
652
+ 2
653
+ 15
654
+ 11
655
+ I
656
+ 6
657
+ I
658
+ 1
659
+ I
660
+ 1
661
+ I
662
+ 1
663
+ n
664
+ p
665
+ 3
666
+ x
667
+ 7
668
+ options
669
+ x
670
+ 18
671
+ configuration_file
672
+ x
673
+ 3
674
+ []=
675
+ p
676
+ 5
677
+ I
678
+ 0
679
+ I
680
+ f
681
+ I
682
+ 4
683
+ I
684
+ 10
685
+ I
686
+ 14
687
+ x
688
+ 74
689
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
690
+ p
691
+ 1
692
+ x
693
+ 18
694
+ configuration_file
695
+ x
696
+ 2
697
+ on
698
+ s
699
+ 9
700
+ --app APP
701
+ s
702
+ 72
703
+ Tell compass what kind of application it is integrating with. E.g. rails
704
+ M
705
+ 1
706
+ p
707
+ 2
708
+ x
709
+ 9
710
+ for_block
711
+ t
712
+ n
713
+ x
714
+ 19
715
+ set_project_options
716
+ i
717
+ 23
718
+ 57
719
+ 19
720
+ 0
721
+ 15
722
+ 5
723
+ 49
724
+ 0
725
+ 0
726
+ 7
727
+ 1
728
+ 20
729
+ 0
730
+ 49
731
+ 2
732
+ 0
733
+ 13
734
+ 18
735
+ 3
736
+ 49
737
+ 3
738
+ 2
739
+ 15
740
+ 11
741
+ I
742
+ 6
743
+ I
744
+ 1
745
+ I
746
+ 1
747
+ I
748
+ 1
749
+ n
750
+ p
751
+ 4
752
+ x
753
+ 7
754
+ options
755
+ x
756
+ 12
757
+ project_type
758
+ x
759
+ 6
760
+ to_sym
761
+ x
762
+ 3
763
+ []=
764
+ p
765
+ 5
766
+ I
767
+ 0
768
+ I
769
+ 13
770
+ I
771
+ 4
772
+ I
773
+ 14
774
+ I
775
+ 17
776
+ x
777
+ 74
778
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
779
+ p
780
+ 1
781
+ x
782
+ 12
783
+ project_type
784
+ s
785
+ 18
786
+ --sass-dir SRC_DIR
787
+ s
788
+ 58
789
+ The source directory where you keep your sass stylesheets.
790
+ M
791
+ 1
792
+ p
793
+ 2
794
+ x
795
+ 9
796
+ for_block
797
+ t
798
+ n
799
+ x
800
+ 19
801
+ set_project_options
802
+ i
803
+ 14
804
+ 57
805
+ 19
806
+ 0
807
+ 15
808
+ 5
809
+ 7
810
+ 0
811
+ 20
812
+ 0
813
+ 47
814
+ 49
815
+ 1
816
+ 2
817
+ 11
818
+ I
819
+ 5
820
+ I
821
+ 1
822
+ I
823
+ 1
824
+ I
825
+ 1
826
+ n
827
+ p
828
+ 2
829
+ x
830
+ 4
831
+ sass
832
+ x
833
+ 15
834
+ set_dir_or_path
835
+ p
836
+ 5
837
+ I
838
+ 0
839
+ I
840
+ 17
841
+ I
842
+ 4
843
+ I
844
+ 18
845
+ I
846
+ e
847
+ x
848
+ 74
849
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
850
+ p
851
+ 1
852
+ x
853
+ 8
854
+ sass_dir
855
+ s
856
+ 17
857
+ --css-dir CSS_DIR
858
+ s
859
+ 57
860
+ The target directory where you keep your css stylesheets.
861
+ M
862
+ 1
863
+ p
864
+ 2
865
+ x
866
+ 9
867
+ for_block
868
+ t
869
+ n
870
+ x
871
+ 19
872
+ set_project_options
873
+ i
874
+ 14
875
+ 57
876
+ 19
877
+ 0
878
+ 15
879
+ 5
880
+ 7
881
+ 0
882
+ 20
883
+ 0
884
+ 47
885
+ 49
886
+ 1
887
+ 2
888
+ 11
889
+ I
890
+ 5
891
+ I
892
+ 1
893
+ I
894
+ 1
895
+ I
896
+ 1
897
+ n
898
+ p
899
+ 2
900
+ x
901
+ 3
902
+ css
903
+ x
904
+ 15
905
+ set_dir_or_path
906
+ p
907
+ 5
908
+ I
909
+ 0
910
+ I
911
+ 1b
912
+ I
913
+ 4
914
+ I
915
+ 1c
916
+ I
917
+ e
918
+ x
919
+ 74
920
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
921
+ p
922
+ 1
923
+ x
924
+ 7
925
+ css_dir
926
+ s
927
+ 23
928
+ --images-dir IMAGES_DIR
929
+ s
930
+ 41
931
+ The directory where you keep your images.
932
+ M
933
+ 1
934
+ p
935
+ 2
936
+ x
937
+ 9
938
+ for_block
939
+ t
940
+ n
941
+ x
942
+ 19
943
+ set_project_options
944
+ i
945
+ 14
946
+ 57
947
+ 19
948
+ 0
949
+ 15
950
+ 5
951
+ 7
952
+ 0
953
+ 20
954
+ 0
955
+ 47
956
+ 49
957
+ 1
958
+ 2
959
+ 11
960
+ I
961
+ 5
962
+ I
963
+ 1
964
+ I
965
+ 1
966
+ I
967
+ 1
968
+ n
969
+ p
970
+ 2
971
+ x
972
+ 6
973
+ images
974
+ x
975
+ 15
976
+ set_dir_or_path
977
+ p
978
+ 5
979
+ I
980
+ 0
981
+ I
982
+ 1f
983
+ I
984
+ 4
985
+ I
986
+ 20
987
+ I
988
+ e
989
+ x
990
+ 74
991
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
992
+ p
993
+ 1
994
+ x
995
+ 10
996
+ images_dir
997
+ s
998
+ 24
999
+ --javascripts-dir JS_DIR
1000
+ s
1001
+ 46
1002
+ The directory where you keep your javascripts.
1003
+ M
1004
+ 1
1005
+ p
1006
+ 2
1007
+ x
1008
+ 9
1009
+ for_block
1010
+ t
1011
+ n
1012
+ x
1013
+ 19
1014
+ set_project_options
1015
+ i
1016
+ 14
1017
+ 57
1018
+ 19
1019
+ 0
1020
+ 15
1021
+ 5
1022
+ 7
1023
+ 0
1024
+ 20
1025
+ 0
1026
+ 47
1027
+ 49
1028
+ 1
1029
+ 2
1030
+ 11
1031
+ I
1032
+ 5
1033
+ I
1034
+ 1
1035
+ I
1036
+ 1
1037
+ I
1038
+ 1
1039
+ n
1040
+ p
1041
+ 2
1042
+ x
1043
+ 11
1044
+ javascripts
1045
+ x
1046
+ 15
1047
+ set_dir_or_path
1048
+ p
1049
+ 5
1050
+ I
1051
+ 0
1052
+ I
1053
+ 23
1054
+ I
1055
+ 4
1056
+ I
1057
+ 24
1058
+ I
1059
+ e
1060
+ x
1061
+ 74
1062
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
1063
+ p
1064
+ 1
1065
+ x
1066
+ 15
1067
+ javascripts_dir
1068
+ s
1069
+ 6
1070
+ -e ENV
1071
+ s
1072
+ 17
1073
+ --environment ENV
1074
+ x
1075
+ 11
1076
+ development
1077
+ x
1078
+ 10
1079
+ production
1080
+ s
1081
+ 51
1082
+ Use sensible defaults for your current environment.
1083
+ s
1084
+ 43
1085
+ One of: development (default), production
1086
+ M
1087
+ 1
1088
+ p
1089
+ 2
1090
+ x
1091
+ 9
1092
+ for_block
1093
+ t
1094
+ n
1095
+ x
1096
+ 19
1097
+ set_project_options
1098
+ i
1099
+ 20
1100
+ 57
1101
+ 19
1102
+ 0
1103
+ 15
1104
+ 5
1105
+ 49
1106
+ 0
1107
+ 0
1108
+ 7
1109
+ 1
1110
+ 20
1111
+ 0
1112
+ 13
1113
+ 18
1114
+ 3
1115
+ 49
1116
+ 2
1117
+ 2
1118
+ 15
1119
+ 11
1120
+ I
1121
+ 6
1122
+ I
1123
+ 1
1124
+ I
1125
+ 1
1126
+ I
1127
+ 1
1128
+ n
1129
+ p
1130
+ 3
1131
+ x
1132
+ 7
1133
+ options
1134
+ x
1135
+ 11
1136
+ environment
1137
+ x
1138
+ 3
1139
+ []=
1140
+ p
1141
+ 7
1142
+ I
1143
+ 0
1144
+ I
1145
+ 27
1146
+ I
1147
+ 1
1148
+ I
1149
+ 28
1150
+ I
1151
+ 4
1152
+ I
1153
+ 29
1154
+ I
1155
+ 14
1156
+ x
1157
+ 74
1158
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
1159
+ p
1160
+ 1
1161
+ x
1162
+ 3
1163
+ env
1164
+ s
1165
+ 8
1166
+ -s STYLE
1167
+ s
1168
+ 20
1169
+ --output-style STYLE
1170
+ x
1171
+ 6
1172
+ nested
1173
+ x
1174
+ 8
1175
+ expanded
1176
+ x
1177
+ 7
1178
+ compact
1179
+ x
1180
+ 10
1181
+ compressed
1182
+ s
1183
+ 25
1184
+ Select a CSS output mode.
1185
+ s
1186
+ 47
1187
+ One of: nested, expanded, compact, compressed
1188
+ M
1189
+ 1
1190
+ p
1191
+ 2
1192
+ x
1193
+ 9
1194
+ for_block
1195
+ t
1196
+ n
1197
+ x
1198
+ 19
1199
+ set_project_options
1200
+ i
1201
+ 20
1202
+ 57
1203
+ 19
1204
+ 0
1205
+ 15
1206
+ 5
1207
+ 49
1208
+ 0
1209
+ 0
1210
+ 7
1211
+ 1
1212
+ 20
1213
+ 0
1214
+ 13
1215
+ 18
1216
+ 3
1217
+ 49
1218
+ 2
1219
+ 2
1220
+ 15
1221
+ 11
1222
+ I
1223
+ 6
1224
+ I
1225
+ 1
1226
+ I
1227
+ 1
1228
+ I
1229
+ 1
1230
+ n
1231
+ p
1232
+ 3
1233
+ x
1234
+ 7
1235
+ options
1236
+ x
1237
+ 12
1238
+ output_style
1239
+ x
1240
+ 3
1241
+ []=
1242
+ p
1243
+ 7
1244
+ I
1245
+ 0
1246
+ I
1247
+ 2c
1248
+ I
1249
+ 1
1250
+ I
1251
+ 2d
1252
+ I
1253
+ 4
1254
+ I
1255
+ 2e
1256
+ I
1257
+ 14
1258
+ x
1259
+ 74
1260
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
1261
+ p
1262
+ 1
1263
+ x
1264
+ 5
1265
+ style
1266
+ s
1267
+ 17
1268
+ --relative-assets
1269
+ x
1270
+ 4
1271
+ NONE
1272
+ s
1273
+ 60
1274
+ Make compass asset helpers generate relative urls to assets.
1275
+ M
1276
+ 1
1277
+ p
1278
+ 2
1279
+ x
1280
+ 9
1281
+ for_block
1282
+ t
1283
+ n
1284
+ x
1285
+ 19
1286
+ set_project_options
1287
+ i
1288
+ 15
1289
+ 5
1290
+ 49
1291
+ 0
1292
+ 0
1293
+ 7
1294
+ 1
1295
+ 2
1296
+ 13
1297
+ 18
1298
+ 3
1299
+ 49
1300
+ 2
1301
+ 2
1302
+ 15
1303
+ 11
1304
+ I
1305
+ 5
1306
+ I
1307
+ 0
1308
+ I
1309
+ 0
1310
+ I
1311
+ 0
1312
+ I
1313
+ -2
1314
+ p
1315
+ 3
1316
+ x
1317
+ 7
1318
+ options
1319
+ x
1320
+ 15
1321
+ relative_assets
1322
+ x
1323
+ 3
1324
+ []=
1325
+ p
1326
+ 3
1327
+ I
1328
+ 0
1329
+ I
1330
+ 32
1331
+ I
1332
+ f
1333
+ x
1334
+ 74
1335
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
1336
+ p
1337
+ 0
1338
+ s
1339
+ 18
1340
+ --no-line-comments
1341
+ s
1342
+ 22
1343
+ Disable line comments.
1344
+ M
1345
+ 1
1346
+ p
1347
+ 2
1348
+ x
1349
+ 9
1350
+ for_block
1351
+ t
1352
+ n
1353
+ x
1354
+ 19
1355
+ set_project_options
1356
+ i
1357
+ 15
1358
+ 5
1359
+ 49
1360
+ 0
1361
+ 0
1362
+ 7
1363
+ 1
1364
+ 3
1365
+ 13
1366
+ 18
1367
+ 3
1368
+ 49
1369
+ 2
1370
+ 2
1371
+ 15
1372
+ 11
1373
+ I
1374
+ 5
1375
+ I
1376
+ 0
1377
+ I
1378
+ 0
1379
+ I
1380
+ 0
1381
+ I
1382
+ -2
1383
+ p
1384
+ 3
1385
+ x
1386
+ 7
1387
+ options
1388
+ x
1389
+ 13
1390
+ line_comments
1391
+ x
1392
+ 3
1393
+ []=
1394
+ p
1395
+ 3
1396
+ I
1397
+ 0
1398
+ I
1399
+ 36
1400
+ I
1401
+ f
1402
+ x
1403
+ 74
1404
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
1405
+ p
1406
+ 0
1407
+ p
1408
+ 31
1409
+ I
1410
+ -1
1411
+ I
1412
+ e
1413
+ I
1414
+ 0
1415
+ I
1416
+ f
1417
+ I
1418
+ 11
1419
+ I
1420
+ 13
1421
+ I
1422
+ 1f
1423
+ I
1424
+ 17
1425
+ I
1426
+ 2d
1427
+ I
1428
+ 1b
1429
+ I
1430
+ 3b
1431
+ I
1432
+ 1f
1433
+ I
1434
+ 49
1435
+ I
1436
+ 23
1437
+ I
1438
+ 57
1439
+ I
1440
+ 27
1441
+ I
1442
+ 68
1443
+ I
1444
+ 28
1445
+ I
1446
+ 6b
1447
+ I
1448
+ 27
1449
+ I
1450
+ 71
1451
+ I
1452
+ 2c
1453
+ I
1454
+ 86
1455
+ I
1456
+ 2d
1457
+ I
1458
+ 89
1459
+ I
1460
+ 2c
1461
+ I
1462
+ 8f
1463
+ I
1464
+ 31
1465
+ I
1466
+ 9f
1467
+ I
1468
+ 35
1469
+ I
1470
+ af
1471
+ x
1472
+ 74
1473
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
1474
+ p
1475
+ 1
1476
+ x
1477
+ 4
1478
+ opts
1479
+ p
1480
+ 7
1481
+ I
1482
+ 2
1483
+ I
1484
+ 2
1485
+ I
1486
+ 10
1487
+ I
1488
+ 6
1489
+ I
1490
+ 1e
1491
+ I
1492
+ e
1493
+ I
1494
+ 2c
1495
+ x
1496
+ 74
1497
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
1498
+ p
1499
+ 0
1500
+ x
1501
+ 13
1502
+ attach_method
1503
+ p
1504
+ 3
1505
+ I
1506
+ 0
1507
+ I
1508
+ 1
1509
+ I
1510
+ 20
1511
+ x
1512
+ 74
1513
+ /Users/crispee/Projects/compass/lib/compass/exec/project_options_parser.rb
1514
+ p
1515
+ 0