compass 0.11.5 → 0.11.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/compass +5 -1
  3. data/bin/compass.compiled.rbc +707 -0
  4. data/examples/compass/compass_app_log.txt +6 -0
  5. data/features/command_line.feature +16 -16
  6. data/features/extensions.feature +6 -0
  7. data/features/step_definitions/command_line_steps.rb +2 -0
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  10. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  12. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  13. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  14. data/lib/compass.rbc +42 -36
  15. data/lib/compass/actions.rbc +244 -85
  16. data/lib/compass/app_integration.rbc +28 -20
  17. data/lib/compass/app_integration/merb.rbc +8 -4
  18. data/lib/compass/app_integration/rails.rbc +664 -148
  19. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  20. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  21. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  22. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  23. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  24. data/lib/compass/browser_support.rbc +35 -23
  25. data/lib/compass/commands.rbc +307 -0
  26. data/lib/compass/commands/base.rbc +1044 -0
  27. data/lib/compass/commands/clean_project.rbc +1856 -0
  28. data/lib/compass/commands/create_project.rbc +2691 -0
  29. data/lib/compass/commands/default.rbc +1677 -0
  30. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  31. data/lib/compass/commands/help.rbc +1921 -0
  32. data/lib/compass/commands/imports.rbc +969 -0
  33. data/lib/compass/commands/installer_command.rbc +807 -0
  34. data/lib/compass/commands/interactive.rbc +1341 -0
  35. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  36. data/lib/compass/commands/print_version.rbc +2478 -0
  37. data/lib/compass/commands/project_base.rbc +2085 -0
  38. data/lib/compass/commands/project_stats.rb +7 -7
  39. data/lib/compass/commands/project_stats.rbc +4202 -0
  40. data/lib/compass/commands/registry.rbc +1350 -0
  41. data/lib/compass/commands/sprite.rbc +2212 -0
  42. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  43. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  44. data/lib/compass/commands/update_project.rbc +3002 -0
  45. data/lib/compass/commands/validate_project.rbc +1686 -0
  46. data/lib/compass/commands/watch_project.rbc +4155 -0
  47. data/lib/compass/commands/write_configuration.rbc +2896 -0
  48. data/lib/compass/compiler.rbc +591 -398
  49. data/lib/compass/configuration.rbc +134 -78
  50. data/lib/compass/configuration/adapters.rbc +98 -40
  51. data/lib/compass/configuration/comments.rbc +132 -51
  52. data/lib/compass/configuration/data.rbc +541 -551
  53. data/lib/compass/configuration/defaults.rbc +764 -189
  54. data/lib/compass/configuration/file_data.rbc +37 -125
  55. data/lib/compass/configuration/helpers.rb +7 -2
  56. data/lib/compass/configuration/helpers.rbc +433 -153
  57. data/lib/compass/configuration/inheritance.rbc +412 -165
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rbc +151 -84
  60. data/lib/compass/dependencies.rbc +16 -4
  61. data/lib/compass/errors.rbc +5 -5
  62. data/lib/compass/exec.rbc +500 -0
  63. data/lib/compass/exec/command_option_parser.rbc +676 -0
  64. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  65. data/lib/compass/exec/helpers.rbc +758 -0
  66. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  67. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  68. data/lib/compass/frameworks.rb +10 -4
  69. data/lib/compass/frameworks.rbc +118 -66
  70. data/lib/compass/grid_builder.rbc +0 -0
  71. data/lib/compass/installers.rbc +152 -0
  72. data/lib/compass/installers/bare_installer.rbc +939 -0
  73. data/lib/compass/installers/base.rbc +4427 -0
  74. data/lib/compass/installers/manifest.rbc +3335 -0
  75. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  76. data/lib/compass/installers/template_context.rbc +1030 -0
  77. data/lib/compass/logger.rbc +2317 -0
  78. data/lib/compass/quick_cache.rbc +12 -8
  79. data/lib/compass/sass_extensions.rbc +8 -4
  80. data/lib/compass/sass_extensions/functions.rbc +90 -57
  81. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  82. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  83. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  84. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  85. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  86. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  87. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  88. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  89. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  90. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  91. data/lib/compass/sass_extensions/functions/lists.rb +5 -0
  92. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  93. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  94. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  95. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  96. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  97. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  98. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  99. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  100. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  101. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  102. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  103. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  104. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  105. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  106. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  107. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  108. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  109. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +1 -1
  110. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  111. data/lib/compass/sprite_importer.rbc +1125 -1495
  112. data/lib/compass/util.rbc +19 -11
  113. data/lib/compass/version.rbc +53 -25
  114. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  115. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  116. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  117. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  118. data/test/fixtures/stylesheets/compass/css/user-interface.css +5 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  120. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  121. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  122. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  123. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  124. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  125. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  126. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  127. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  128. data/test/helpers/command_line.rbc +2820 -0
  129. data/test/helpers/diff.rbc +1104 -0
  130. data/test/helpers/io.rbc +962 -0
  131. data/test/helpers/rails.rbc +1116 -0
  132. data/test/helpers/test_case.rbc +1255 -0
  133. data/test/integrations/compass_test.rbc +6589 -0
  134. data/test/integrations/rails_integration_test.rbc +1342 -0
  135. data/test/integrations/sprites_test.rbc +6192 -0
  136. data/test/test_helper.rbc +1694 -0
  137. data/test/units/actions_test.rbc +644 -0
  138. data/test/units/command_line_test.rbc +1532 -0
  139. data/test/units/compass_png_test.rbc +0 -0
  140. data/test/units/configuration_test.rbc +3833 -0
  141. data/test/units/rails_configuration_test.rbc +1032 -0
  142. data/test/units/sass_extensions_test.rb +5 -0
  143. data/test/units/sass_extensions_test.rbc +3586 -0
  144. data/test/units/sprites/engine_test.rbc +962 -0
  145. data/test/units/sprites/image_row_test.rbc +1578 -0
  146. data/test/units/sprites/image_test.rbc +2836 -0
  147. data/test/units/sprites/importer_test.rbc +2620 -0
  148. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  149. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  150. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  151. metadata +157 -51
@@ -0,0 +1,2896 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 29
63
+ compass/commands/project_base
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 7
69
+ Compass
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 7
82
+ Compass
83
+ i
84
+ 28
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 65
91
+ 49
92
+ 1
93
+ 2
94
+ 13
95
+ 99
96
+ 12
97
+ 7
98
+ 2
99
+ 12
100
+ 7
101
+ 3
102
+ 12
103
+ 65
104
+ 12
105
+ 49
106
+ 4
107
+ 4
108
+ 15
109
+ 49
110
+ 2
111
+ 0
112
+ 11
113
+ I
114
+ 6
115
+ I
116
+ 0
117
+ I
118
+ 0
119
+ I
120
+ 0
121
+ n
122
+ p
123
+ 5
124
+ x
125
+ 8
126
+ Commands
127
+ x
128
+ 11
129
+ open_module
130
+ x
131
+ 15
132
+ __module_init__
133
+ M
134
+ 1
135
+ n
136
+ n
137
+ x
138
+ 8
139
+ Commands
140
+ i
141
+ 57
142
+ 5
143
+ 66
144
+ 99
145
+ 7
146
+ 0
147
+ 65
148
+ 49
149
+ 1
150
+ 2
151
+ 13
152
+ 99
153
+ 12
154
+ 7
155
+ 2
156
+ 12
157
+ 7
158
+ 3
159
+ 12
160
+ 65
161
+ 12
162
+ 49
163
+ 4
164
+ 4
165
+ 15
166
+ 49
167
+ 2
168
+ 0
169
+ 15
170
+ 99
171
+ 7
172
+ 5
173
+ 45
174
+ 6
175
+ 7
176
+ 65
177
+ 49
178
+ 8
179
+ 3
180
+ 13
181
+ 99
182
+ 12
183
+ 7
184
+ 9
185
+ 12
186
+ 7
187
+ 10
188
+ 12
189
+ 65
190
+ 12
191
+ 49
192
+ 4
193
+ 4
194
+ 15
195
+ 49
196
+ 9
197
+ 0
198
+ 11
199
+ I
200
+ 6
201
+ I
202
+ 0
203
+ I
204
+ 0
205
+ I
206
+ 0
207
+ n
208
+ p
209
+ 11
210
+ x
211
+ 26
212
+ ConfigurationOptionsParser
213
+ x
214
+ 11
215
+ open_module
216
+ x
217
+ 15
218
+ __module_init__
219
+ M
220
+ 1
221
+ n
222
+ n
223
+ x
224
+ 26
225
+ ConfigurationOptionsParser
226
+ i
227
+ 16
228
+ 5
229
+ 66
230
+ 99
231
+ 7
232
+ 0
233
+ 7
234
+ 1
235
+ 65
236
+ 67
237
+ 49
238
+ 2
239
+ 0
240
+ 49
241
+ 3
242
+ 4
243
+ 11
244
+ I
245
+ 5
246
+ I
247
+ 0
248
+ I
249
+ 0
250
+ I
251
+ 0
252
+ n
253
+ p
254
+ 4
255
+ x
256
+ 11
257
+ set_options
258
+ M
259
+ 1
260
+ n
261
+ n
262
+ x
263
+ 11
264
+ set_options
265
+ i
266
+ 89
267
+ 20
268
+ 0
269
+ 7
270
+ 0
271
+ 45
272
+ 1
273
+ 2
274
+ 43
275
+ 3
276
+ 43
277
+ 4
278
+ 43
279
+ 5
280
+ 7
281
+ 6
282
+ 64
283
+ 49
284
+ 7
285
+ 1
286
+ 47
287
+ 101
288
+ 8
289
+ 7
290
+ 9
291
+ 63
292
+ 3
293
+ 49
294
+ 10
295
+ 0
296
+ 7
297
+ 11
298
+ 64
299
+ 49
300
+ 12
301
+ 1
302
+ 56
303
+ 13
304
+ 50
305
+ 14
306
+ 0
307
+ 7
308
+ 11
309
+ 64
310
+ 49
311
+ 7
312
+ 1
313
+ 13
314
+ 18
315
+ 2
316
+ 49
317
+ 15
318
+ 1
319
+ 15
320
+ 15
321
+ 20
322
+ 0
323
+ 7
324
+ 16
325
+ 64
326
+ 7
327
+ 17
328
+ 64
329
+ 56
330
+ 18
331
+ 50
332
+ 19
333
+ 2
334
+ 15
335
+ 20
336
+ 0
337
+ 7
338
+ 20
339
+ 64
340
+ 7
341
+ 21
342
+ 64
343
+ 7
344
+ 22
345
+ 64
346
+ 56
347
+ 23
348
+ 50
349
+ 19
350
+ 3
351
+ 15
352
+ 54
353
+ 89
354
+ 24
355
+ 11
356
+ I
357
+ 6
358
+ I
359
+ 1
360
+ I
361
+ 1
362
+ I
363
+ 1
364
+ n
365
+ p
366
+ 25
367
+ s
368
+ 301
369
+
370
+ Usage: compass config [path/to/config_file.rb] [options]
371
+
372
+ Description:
373
+ Generate a configuration file for the options specified.
374
+ Compass will recognize configuration files in the
375
+ following locations relative to the project root:
376
+ *
377
+ x
378
+ 7
379
+ Compass
380
+ n
381
+ x
382
+ 13
383
+ Configuration
384
+ x
385
+ 7
386
+ Helpers
387
+ x
388
+ 22
389
+ KNOWN_CONFIG_LOCATIONS
390
+ s
391
+ 17
392
+
393
+ *
394
+ x
395
+ 4
396
+ join
397
+ x
398
+ 4
399
+ to_s
400
+ s
401
+ 152
402
+
403
+ Any other location, and you'll need to specify it when working with the command line tool using the -c option.
404
+
405
+ Options:
406
+
407
+ x
408
+ 5
409
+ strip
410
+ s
411
+ 1
412
+
413
+
414
+ x
415
+ 5
416
+ split
417
+ M
418
+ 1
419
+ p
420
+ 2
421
+ x
422
+ 9
423
+ for_block
424
+ t
425
+ n
426
+ x
427
+ 11
428
+ set_options
429
+ i
430
+ 31
431
+ 57
432
+ 19
433
+ 0
434
+ 15
435
+ 20
436
+ 0
437
+ 7
438
+ 0
439
+ 13
440
+ 70
441
+ 9
442
+ 24
443
+ 15
444
+ 44
445
+ 43
446
+ 1
447
+ 7
448
+ 2
449
+ 78
450
+ 49
451
+ 3
452
+ 2
453
+ 6
454
+ 0
455
+ 7
456
+ 4
457
+ 64
458
+ 49
459
+ 5
460
+ 2
461
+ 11
462
+ I
463
+ 6
464
+ I
465
+ 1
466
+ I
467
+ 1
468
+ I
469
+ 1
470
+ n
471
+ p
472
+ 6
473
+ n
474
+ x
475
+ 6
476
+ Regexp
477
+ s
478
+ 8
479
+ ^ {0,10}
480
+ x
481
+ 3
482
+ new
483
+ s
484
+ 0
485
+
486
+ x
487
+ 4
488
+ gsub
489
+ p
490
+ 5
491
+ I
492
+ 0
493
+ I
494
+ 7
495
+ I
496
+ 1
497
+ I
498
+ 13
499
+ I
500
+ 1f
501
+ x
502
+ 75
503
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
504
+ p
505
+ 1
506
+ x
507
+ 1
508
+ l
509
+ x
510
+ 3
511
+ map
512
+ x
513
+ 7
514
+ banner=
515
+ s
516
+ 18
517
+ --debug [PROPERTY]
518
+ s
519
+ 49
520
+ Debug your configuration by printing out details.
521
+ M
522
+ 1
523
+ p
524
+ 2
525
+ x
526
+ 9
527
+ for_block
528
+ t
529
+ n
530
+ x
531
+ 11
532
+ set_options
533
+ i
534
+ 33
535
+ 57
536
+ 19
537
+ 0
538
+ 15
539
+ 5
540
+ 49
541
+ 0
542
+ 0
543
+ 7
544
+ 1
545
+ 20
546
+ 0
547
+ 49
548
+ 2
549
+ 0
550
+ 9
551
+ 20
552
+ 2
553
+ 8
554
+ 25
555
+ 20
556
+ 0
557
+ 49
558
+ 3
559
+ 0
560
+ 13
561
+ 18
562
+ 3
563
+ 49
564
+ 4
565
+ 2
566
+ 15
567
+ 11
568
+ I
569
+ 6
570
+ I
571
+ 1
572
+ I
573
+ 1
574
+ I
575
+ 1
576
+ n
577
+ p
578
+ 5
579
+ x
580
+ 7
581
+ options
582
+ x
583
+ 5
584
+ debug
585
+ x
586
+ 4
587
+ nil?
588
+ x
589
+ 6
590
+ to_sym
591
+ x
592
+ 3
593
+ []=
594
+ p
595
+ 7
596
+ I
597
+ 0
598
+ I
599
+ 14
600
+ I
601
+ 4
602
+ I
603
+ 15
604
+ I
605
+ 19
606
+ I
607
+ 0
608
+ I
609
+ 21
610
+ x
611
+ 75
612
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
613
+ p
614
+ 1
615
+ x
616
+ 4
617
+ prop
618
+ x
619
+ 2
620
+ on
621
+ s
622
+ 11
623
+ -p PROPERTY
624
+ s
625
+ 19
626
+ --property PROPERTY
627
+ s
628
+ 58
629
+ Print out the value of a particular configuration property
630
+ M
631
+ 1
632
+ p
633
+ 2
634
+ x
635
+ 9
636
+ for_block
637
+ t
638
+ n
639
+ x
640
+ 11
641
+ set_options
642
+ i
643
+ 23
644
+ 57
645
+ 19
646
+ 0
647
+ 15
648
+ 5
649
+ 49
650
+ 0
651
+ 0
652
+ 7
653
+ 1
654
+ 20
655
+ 0
656
+ 49
657
+ 2
658
+ 0
659
+ 13
660
+ 18
661
+ 3
662
+ 49
663
+ 3
664
+ 2
665
+ 15
666
+ 11
667
+ I
668
+ 6
669
+ I
670
+ 1
671
+ I
672
+ 1
673
+ I
674
+ 1
675
+ n
676
+ p
677
+ 4
678
+ x
679
+ 7
680
+ options
681
+ x
682
+ 7
683
+ display
684
+ x
685
+ 6
686
+ to_sym
687
+ x
688
+ 3
689
+ []=
690
+ p
691
+ 5
692
+ I
693
+ 0
694
+ I
695
+ 17
696
+ I
697
+ 4
698
+ I
699
+ 18
700
+ I
701
+ 17
702
+ x
703
+ 75
704
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
705
+ p
706
+ 1
707
+ x
708
+ 4
709
+ prop
710
+ x
711
+ 11
712
+ set_options
713
+ p
714
+ 21
715
+ I
716
+ -1
717
+ I
718
+ 6
719
+ I
720
+ 0
721
+ I
722
+ 7
723
+ I
724
+ 4
725
+ I
726
+ e
727
+ I
728
+ 1d
729
+ I
730
+ 13
731
+ I
732
+ 20
733
+ I
734
+ 7
735
+ I
736
+ 28
737
+ I
738
+ 13
739
+ I
740
+ 2b
741
+ I
742
+ 7
743
+ I
744
+ 36
745
+ I
746
+ 14
747
+ I
748
+ 44
749
+ I
750
+ 17
751
+ I
752
+ 55
753
+ I
754
+ 1b
755
+ I
756
+ 59
757
+ x
758
+ 75
759
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
760
+ p
761
+ 1
762
+ x
763
+ 4
764
+ opts
765
+ x
766
+ 17
767
+ method_visibility
768
+ x
769
+ 15
770
+ add_defn_method
771
+ p
772
+ 3
773
+ I
774
+ 2
775
+ I
776
+ 6
777
+ I
778
+ 10
779
+ x
780
+ 75
781
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
782
+ p
783
+ 0
784
+ x
785
+ 13
786
+ attach_method
787
+ x
788
+ 18
789
+ WriteConfiguration
790
+ x
791
+ 11
792
+ ProjectBase
793
+ n
794
+ x
795
+ 10
796
+ open_class
797
+ x
798
+ 14
799
+ __class_init__
800
+ M
801
+ 1
802
+ n
803
+ n
804
+ x
805
+ 18
806
+ WriteConfiguration
807
+ i
808
+ 117
809
+ 5
810
+ 66
811
+ 5
812
+ 7
813
+ 0
814
+ 47
815
+ 49
816
+ 1
817
+ 1
818
+ 15
819
+ 5
820
+ 45
821
+ 2
822
+ 3
823
+ 47
824
+ 49
825
+ 4
826
+ 1
827
+ 15
828
+ 99
829
+ 7
830
+ 5
831
+ 7
832
+ 6
833
+ 65
834
+ 67
835
+ 49
836
+ 7
837
+ 0
838
+ 49
839
+ 8
840
+ 4
841
+ 15
842
+ 99
843
+ 7
844
+ 9
845
+ 7
846
+ 10
847
+ 65
848
+ 67
849
+ 49
850
+ 7
851
+ 0
852
+ 49
853
+ 8
854
+ 4
855
+ 15
856
+ 99
857
+ 7
858
+ 11
859
+ 7
860
+ 12
861
+ 65
862
+ 67
863
+ 49
864
+ 7
865
+ 0
866
+ 49
867
+ 8
868
+ 4
869
+ 15
870
+ 99
871
+ 7
872
+ 13
873
+ 7
874
+ 14
875
+ 65
876
+ 67
877
+ 49
878
+ 7
879
+ 0
880
+ 49
881
+ 8
882
+ 4
883
+ 15
884
+ 99
885
+ 7
886
+ 15
887
+ 7
888
+ 16
889
+ 65
890
+ 67
891
+ 49
892
+ 7
893
+ 0
894
+ 49
895
+ 8
896
+ 4
897
+ 15
898
+ 5
899
+ 99
900
+ 43
901
+ 17
902
+ 12
903
+ 49
904
+ 18
905
+ 1
906
+ 13
907
+ 99
908
+ 12
909
+ 7
910
+ 19
911
+ 12
912
+ 7
913
+ 20
914
+ 12
915
+ 65
916
+ 12
917
+ 49
918
+ 21
919
+ 4
920
+ 15
921
+ 54
922
+ 50
923
+ 19
924
+ 0
925
+ 11
926
+ I
927
+ 6
928
+ I
929
+ 0
930
+ I
931
+ 0
932
+ I
933
+ 0
934
+ n
935
+ p
936
+ 22
937
+ x
938
+ 6
939
+ config
940
+ x
941
+ 8
942
+ register
943
+ x
944
+ 16
945
+ InstallerCommand
946
+ n
947
+ x
948
+ 7
949
+ include
950
+ x
951
+ 10
952
+ initialize
953
+ M
954
+ 1
955
+ n
956
+ n
957
+ x
958
+ 10
959
+ initialize
960
+ i
961
+ 10
962
+ 54
963
+ 89
964
+ 0
965
+ 15
966
+ 5
967
+ 47
968
+ 49
969
+ 1
970
+ 0
971
+ 11
972
+ I
973
+ 3
974
+ I
975
+ 2
976
+ I
977
+ 2
978
+ I
979
+ 2
980
+ n
981
+ p
982
+ 2
983
+ x
984
+ 10
985
+ initialize
986
+ x
987
+ 32
988
+ assert_project_directory_exists!
989
+ p
990
+ 7
991
+ I
992
+ -1
993
+ I
994
+ 24
995
+ I
996
+ 0
997
+ I
998
+ 25
999
+ I
1000
+ 4
1001
+ I
1002
+ 26
1003
+ I
1004
+ a
1005
+ x
1006
+ 75
1007
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
1008
+ p
1009
+ 2
1010
+ x
1011
+ 12
1012
+ working_path
1013
+ x
1014
+ 7
1015
+ options
1016
+ x
1017
+ 17
1018
+ method_visibility
1019
+ x
1020
+ 15
1021
+ add_defn_method
1022
+ x
1023
+ 25
1024
+ add_project_configuration
1025
+ M
1026
+ 1
1027
+ n
1028
+ n
1029
+ x
1030
+ 25
1031
+ add_project_configuration
1032
+ i
1033
+ 7
1034
+ 45
1035
+ 0
1036
+ 1
1037
+ 49
1038
+ 2
1039
+ 0
1040
+ 11
1041
+ I
1042
+ 1
1043
+ I
1044
+ 0
1045
+ I
1046
+ 0
1047
+ I
1048
+ 0
1049
+ n
1050
+ p
1051
+ 3
1052
+ x
1053
+ 7
1054
+ Compass
1055
+ n
1056
+ x
1057
+ 25
1058
+ add_project_configuration
1059
+ p
1060
+ 5
1061
+ I
1062
+ -1
1063
+ I
1064
+ 29
1065
+ I
1066
+ 0
1067
+ I
1068
+ 2a
1069
+ I
1070
+ 7
1071
+ x
1072
+ 75
1073
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
1074
+ p
1075
+ 0
1076
+ x
1077
+ 7
1078
+ perform
1079
+ M
1080
+ 1
1081
+ n
1082
+ n
1083
+ x
1084
+ 7
1085
+ perform
1086
+ i
1087
+ 249
1088
+ 5
1089
+ 48
1090
+ 0
1091
+ 7
1092
+ 1
1093
+ 49
1094
+ 2
1095
+ 1
1096
+ 9
1097
+ 82
1098
+ 45
1099
+ 3
1100
+ 4
1101
+ 49
1102
+ 5
1103
+ 0
1104
+ 5
1105
+ 48
1106
+ 0
1107
+ 7
1108
+ 1
1109
+ 49
1110
+ 2
1111
+ 1
1112
+ 49
1113
+ 6
1114
+ 1
1115
+ 9
1116
+ 53
1117
+ 5
1118
+ 45
1119
+ 3
1120
+ 7
1121
+ 49
1122
+ 5
1123
+ 0
1124
+ 5
1125
+ 48
1126
+ 0
1127
+ 7
1128
+ 1
1129
+ 49
1130
+ 2
1131
+ 1
1132
+ 49
1133
+ 8
1134
+ 1
1135
+ 47
1136
+ 49
1137
+ 9
1138
+ 1
1139
+ 8
1140
+ 80
1141
+ 5
1142
+ 45
1143
+ 3
1144
+ 10
1145
+ 43
1146
+ 11
1147
+ 7
1148
+ 12
1149
+ 5
1150
+ 48
1151
+ 0
1152
+ 7
1153
+ 1
1154
+ 49
1155
+ 2
1156
+ 1
1157
+ 47
1158
+ 101
1159
+ 13
1160
+ 7
1161
+ 14
1162
+ 63
1163
+ 3
1164
+ 47
1165
+ 49
1166
+ 15
1167
+ 2
1168
+ 8
1169
+ 248
1170
+ 5
1171
+ 48
1172
+ 0
1173
+ 7
1174
+ 16
1175
+ 49
1176
+ 2
1177
+ 1
1178
+ 9
1179
+ 179
1180
+ 5
1181
+ 7
1182
+ 17
1183
+ 64
1184
+ 47
1185
+ 49
1186
+ 9
1187
+ 1
1188
+ 15
1189
+ 45
1190
+ 3
1191
+ 18
1192
+ 49
1193
+ 5
1194
+ 0
1195
+ 19
1196
+ 0
1197
+ 15
1198
+ 20
1199
+ 0
1200
+ 9
1201
+ 152
1202
+ 5
1203
+ 20
1204
+ 0
1205
+ 49
1206
+ 19
1207
+ 0
1208
+ 47
1209
+ 49
1210
+ 20
1211
+ 1
1212
+ 15
1213
+ 20
1214
+ 0
1215
+ 49
1216
+ 21
1217
+ 0
1218
+ 19
1219
+ 0
1220
+ 15
1221
+ 20
1222
+ 0
1223
+ 9
1224
+ 147
1225
+ 5
1226
+ 7
1227
+ 22
1228
+ 64
1229
+ 47
1230
+ 49
1231
+ 20
1232
+ 1
1233
+ 8
1234
+ 148
1235
+ 1
1236
+ 15
1237
+ 68
1238
+ 8
1239
+ 110
1240
+ 1
1241
+ 15
1242
+ 5
1243
+ 7
1244
+ 23
1245
+ 64
1246
+ 47
1247
+ 49
1248
+ 20
1249
+ 1
1250
+ 15
1251
+ 45
1252
+ 3
1253
+ 24
1254
+ 49
1255
+ 5
1256
+ 0
1257
+ 49
1258
+ 16
1259
+ 0
1260
+ 56
1261
+ 25
1262
+ 50
1263
+ 26
1264
+ 0
1265
+ 8
1266
+ 248
1267
+ 5
1268
+ 48
1269
+ 0
1270
+ 7
1271
+ 27
1272
+ 49
1273
+ 2
1274
+ 1
1275
+ 19
1276
+ 1
1277
+ 15
1278
+ 20
1279
+ 1
1280
+ 13
1281
+ 10
1282
+ 204
1283
+ 15
1284
+ 45
1285
+ 3
1286
+ 28
1287
+ 49
1288
+ 29
1289
+ 0
1290
+ 19
1291
+ 1
1292
+ 15
1293
+ 20
1294
+ 1
1295
+ 13
1296
+ 10
1297
+ 225
1298
+ 15
1299
+ 45
1300
+ 3
1301
+ 30
1302
+ 43
1303
+ 31
1304
+ 43
1305
+ 32
1306
+ 43
1307
+ 33
1308
+ 49
1309
+ 34
1310
+ 0
1311
+ 19
1312
+ 1
1313
+ 15
1314
+ 5
1315
+ 45
1316
+ 35
1317
+ 36
1318
+ 20
1319
+ 1
1320
+ 49
1321
+ 37
1322
+ 1
1323
+ 47
1324
+ 49
1325
+ 38
1326
+ 1
1327
+ 15
1328
+ 5
1329
+ 48
1330
+ 39
1331
+ 20
1332
+ 1
1333
+ 49
1334
+ 40
1335
+ 1
1336
+ 11
1337
+ I
1338
+ 7
1339
+ I
1340
+ 2
1341
+ I
1342
+ 0
1343
+ I
1344
+ 0
1345
+ n
1346
+ p
1347
+ 41
1348
+ x
1349
+ 7
1350
+ options
1351
+ x
1352
+ 7
1353
+ display
1354
+ x
1355
+ 2
1356
+ []
1357
+ x
1358
+ 7
1359
+ Compass
1360
+ n
1361
+ x
1362
+ 13
1363
+ configuration
1364
+ x
1365
+ 11
1366
+ respond_to?
1367
+ n
1368
+ x
1369
+ 4
1370
+ send
1371
+ x
1372
+ 4
1373
+ puts
1374
+ n
1375
+ x
1376
+ 5
1377
+ Error
1378
+ s
1379
+ 31
1380
+ ERROR: configuration property '
1381
+ x
1382
+ 4
1383
+ to_s
1384
+ s
1385
+ 16
1386
+ ' does not exist
1387
+ x
1388
+ 5
1389
+ raise
1390
+ x
1391
+ 5
1392
+ debug
1393
+ s
1394
+ 22
1395
+ Configuration sources:
1396
+ n
1397
+ x
1398
+ 4
1399
+ name
1400
+ x
1401
+ 5
1402
+ print
1403
+ x
1404
+ 14
1405
+ inherited_data
1406
+ s
1407
+ 2
1408
+ ,
1409
+ s
1410
+ 1
1411
+
1412
+
1413
+ n
1414
+ M
1415
+ 1
1416
+ p
1417
+ 2
1418
+ x
1419
+ 9
1420
+ for_block
1421
+ t
1422
+ n
1423
+ x
1424
+ 7
1425
+ perform
1426
+ i
1427
+ 100
1428
+ 58
1429
+ 37
1430
+ 19
1431
+ 0
1432
+ 15
1433
+ 37
1434
+ 19
1435
+ 1
1436
+ 15
1437
+ 15
1438
+ 5
1439
+ 48
1440
+ 0
1441
+ 7
1442
+ 1
1443
+ 49
1444
+ 2
1445
+ 1
1446
+ 45
1447
+ 3
1448
+ 4
1449
+ 49
1450
+ 5
1451
+ 1
1452
+ 9
1453
+ 47
1454
+ 20
1455
+ 0
1456
+ 5
1457
+ 48
1458
+ 0
1459
+ 7
1460
+ 1
1461
+ 49
1462
+ 2
1463
+ 1
1464
+ 83
1465
+ 6
1466
+ 9
1467
+ 43
1468
+ 1
1469
+ 8
1470
+ 45
1471
+ 1
1472
+ 11
1473
+ 8
1474
+ 48
1475
+ 1
1476
+ 15
1477
+ 5
1478
+ 7
1479
+ 7
1480
+ 20
1481
+ 0
1482
+ 47
1483
+ 101
1484
+ 8
1485
+ 7
1486
+ 9
1487
+ 20
1488
+ 1
1489
+ 49
1490
+ 10
1491
+ 0
1492
+ 7
1493
+ 11
1494
+ 49
1495
+ 2
1496
+ 1
1497
+ 49
1498
+ 12
1499
+ 0
1500
+ 47
1501
+ 101
1502
+ 8
1503
+ 7
1504
+ 13
1505
+ 63
1506
+ 5
1507
+ 47
1508
+ 49
1509
+ 14
1510
+ 1
1511
+ 15
1512
+ 7
1513
+ 15
1514
+ 7
1515
+ 16
1516
+ 7
1517
+ 17
1518
+ 7
1519
+ 11
1520
+ 35
1521
+ 4
1522
+ 56
1523
+ 18
1524
+ 50
1525
+ 19
1526
+ 0
1527
+ 11
1528
+ I
1529
+ 9
1530
+ I
1531
+ 2
1532
+ I
1533
+ 2
1534
+ I
1535
+ 2
1536
+ n
1537
+ p
1538
+ 20
1539
+ x
1540
+ 7
1541
+ options
1542
+ x
1543
+ 5
1544
+ debug
1545
+ x
1546
+ 2
1547
+ []
1548
+ x
1549
+ 6
1550
+ Symbol
1551
+ n
1552
+ x
1553
+ 5
1554
+ is_a?
1555
+ x
1556
+ 2
1557
+ ==
1558
+ s
1559
+ 6
1560
+ *****
1561
+ x
1562
+ 4
1563
+ to_s
1564
+ s
1565
+ 3
1566
+ =
1567
+ x
1568
+ 5
1569
+ first
1570
+ x
1571
+ 8
1572
+ resolved
1573
+ x
1574
+ 7
1575
+ inspect
1576
+ s
1577
+ 6
1578
+ *****
1579
+ x
1580
+ 4
1581
+ puts
1582
+ x
1583
+ 7
1584
+ default
1585
+ x
1586
+ 5
1587
+ value
1588
+ x
1589
+ 3
1590
+ raw
1591
+ M
1592
+ 1
1593
+ p
1594
+ 2
1595
+ x
1596
+ 9
1597
+ for_block
1598
+ t
1599
+ n
1600
+ x
1601
+ 7
1602
+ perform
1603
+ i
1604
+ 42
1605
+ 57
1606
+ 19
1607
+ 0
1608
+ 15
1609
+ 5
1610
+ 20
1611
+ 0
1612
+ 47
1613
+ 101
1614
+ 0
1615
+ 7
1616
+ 1
1617
+ 63
1618
+ 2
1619
+ 21
1620
+ 1
1621
+ 1
1622
+ 35
1623
+ 0
1624
+ 56
1625
+ 2
1626
+ 50
1627
+ 3
1628
+ 1
1629
+ 56
1630
+ 4
1631
+ 50
1632
+ 5
1633
+ 0
1634
+ 7
1635
+ 6
1636
+ 64
1637
+ 49
1638
+ 7
1639
+ 1
1640
+ 81
1641
+ 8
1642
+ 47
1643
+ 49
1644
+ 9
1645
+ 1
1646
+ 11
1647
+ I
1648
+ 7
1649
+ I
1650
+ 1
1651
+ I
1652
+ 1
1653
+ I
1654
+ 1
1655
+ n
1656
+ p
1657
+ 10
1658
+ x
1659
+ 4
1660
+ to_s
1661
+ s
1662
+ 2
1663
+ :
1664
+ M
1665
+ 1
1666
+ p
1667
+ 2
1668
+ x
1669
+ 9
1670
+ for_block
1671
+ t
1672
+ n
1673
+ x
1674
+ 7
1675
+ perform
1676
+ i
1677
+ 24
1678
+ 58
1679
+ 37
1680
+ 19
1681
+ 0
1682
+ 15
1683
+ 37
1684
+ 19
1685
+ 1
1686
+ 15
1687
+ 15
1688
+ 20
1689
+ 0
1690
+ 20
1691
+ 1
1692
+ 21
1693
+ 1
1694
+ 0
1695
+ 49
1696
+ 0
1697
+ 1
1698
+ 49
1699
+ 1
1700
+ 1
1701
+ 11
1702
+ I
1703
+ 6
1704
+ I
1705
+ 2
1706
+ I
1707
+ 2
1708
+ I
1709
+ 2
1710
+ n
1711
+ p
1712
+ 2
1713
+ x
1714
+ 2
1715
+ []
1716
+ x
1717
+ 2
1718
+ <<
1719
+ p
1720
+ 3
1721
+ I
1722
+ 0
1723
+ I
1724
+ 43
1725
+ I
1726
+ 18
1727
+ x
1728
+ 75
1729
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
1730
+ p
1731
+ 2
1732
+ x
1733
+ 1
1734
+ m
1735
+ x
1736
+ 1
1737
+ v
1738
+ x
1739
+ 6
1740
+ inject
1741
+ M
1742
+ 1
1743
+ p
1744
+ 2
1745
+ x
1746
+ 9
1747
+ for_block
1748
+ t
1749
+ n
1750
+ x
1751
+ 7
1752
+ perform
1753
+ i
1754
+ 22
1755
+ 57
1756
+ 19
1757
+ 0
1758
+ 15
1759
+ 20
1760
+ 0
1761
+ 49
1762
+ 0
1763
+ 0
1764
+ 9
1765
+ 16
1766
+ 7
1767
+ 1
1768
+ 64
1769
+ 8
1770
+ 21
1771
+ 20
1772
+ 0
1773
+ 49
1774
+ 2
1775
+ 0
1776
+ 11
1777
+ I
1778
+ 3
1779
+ I
1780
+ 1
1781
+ I
1782
+ 1
1783
+ I
1784
+ 1
1785
+ n
1786
+ p
1787
+ 3
1788
+ x
1789
+ 4
1790
+ nil?
1791
+ s
1792
+ 1
1793
+ -
1794
+ x
1795
+ 7
1796
+ inspect
1797
+ p
1798
+ 5
1799
+ I
1800
+ 0
1801
+ I
1802
+ 43
1803
+ I
1804
+ 15
1805
+ I
1806
+ 0
1807
+ I
1808
+ 16
1809
+ x
1810
+ 75
1811
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
1812
+ p
1813
+ 1
1814
+ x
1815
+ 1
1816
+ v
1817
+ x
1818
+ 3
1819
+ map
1820
+ s
1821
+ 2
1822
+ ,
1823
+ x
1824
+ 4
1825
+ join
1826
+ x
1827
+ 1
1828
+ +
1829
+ x
1830
+ 4
1831
+ puts
1832
+ p
1833
+ 5
1834
+ I
1835
+ 0
1836
+ I
1837
+ 42
1838
+ I
1839
+ 4
1840
+ I
1841
+ 43
1842
+ I
1843
+ 2a
1844
+ x
1845
+ 75
1846
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
1847
+ p
1848
+ 1
1849
+ x
1850
+ 4
1851
+ kind
1852
+ x
1853
+ 4
1854
+ each
1855
+ p
1856
+ 17
1857
+ I
1858
+ 0
1859
+ I
1860
+ 3d
1861
+ I
1862
+ a
1863
+ I
1864
+ 3e
1865
+ I
1866
+ 1a
1867
+ I
1868
+ 3f
1869
+ I
1870
+ 2d
1871
+ I
1872
+ 0
1873
+ I
1874
+ 2f
1875
+ I
1876
+ 3e
1877
+ I
1878
+ 30
1879
+ I
1880
+ 0
1881
+ I
1882
+ 31
1883
+ I
1884
+ 41
1885
+ I
1886
+ 54
1887
+ I
1888
+ 42
1889
+ I
1890
+ 64
1891
+ x
1892
+ 75
1893
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
1894
+ p
1895
+ 2
1896
+ x
1897
+ 4
1898
+ prop
1899
+ x
1900
+ 6
1901
+ values
1902
+ x
1903
+ 4
1904
+ each
1905
+ x
1906
+ 18
1907
+ configuration_file
1908
+ n
1909
+ x
1910
+ 25
1911
+ detect_configuration_file
1912
+ n
1913
+ x
1914
+ 13
1915
+ Configuration
1916
+ x
1917
+ 7
1918
+ Helpers
1919
+ x
1920
+ 22
1921
+ KNOWN_CONFIG_LOCATIONS
1922
+ x
1923
+ 5
1924
+ first
1925
+ x
1926
+ 4
1927
+ File
1928
+ n
1929
+ x
1930
+ 7
1931
+ dirname
1932
+ x
1933
+ 9
1934
+ directory
1935
+ x
1936
+ 9
1937
+ installer
1938
+ x
1939
+ 25
1940
+ write_configuration_files
1941
+ p
1942
+ 45
1943
+ I
1944
+ -1
1945
+ I
1946
+ 2d
1947
+ I
1948
+ 0
1949
+ I
1950
+ 2e
1951
+ I
1952
+ a
1953
+ I
1954
+ 2f
1955
+ I
1956
+ 1d
1957
+ I
1958
+ 30
1959
+ I
1960
+ 35
1961
+ I
1962
+ 32
1963
+ I
1964
+ 50
1965
+ I
1966
+ 0
1967
+ I
1968
+ 52
1969
+ I
1970
+ 34
1971
+ I
1972
+ 5c
1973
+ I
1974
+ 35
1975
+ I
1976
+ 65
1977
+ I
1978
+ 36
1979
+ I
1980
+ 6e
1981
+ I
1982
+ 37
1983
+ I
1984
+ 72
1985
+ I
1986
+ 38
1987
+ I
1988
+ 7d
1989
+ I
1990
+ 39
1991
+ I
1992
+ 85
1993
+ I
1994
+ 3a
1995
+ I
1996
+ 94
1997
+ I
1998
+ 0
1999
+ I
2000
+ 9a
2001
+ I
2002
+ 3c
2003
+ I
2004
+ a3
2005
+ I
2006
+ 3d
2007
+ I
2008
+ b3
2009
+ I
2010
+ 47
2011
+ I
2012
+ be
2013
+ I
2014
+ 48
2015
+ I
2016
+ cd
2017
+ I
2018
+ 49
2019
+ I
2020
+ e2
2021
+ I
2022
+ 4a
2023
+ I
2024
+ f0
2025
+ I
2026
+ 4b
2027
+ I
2028
+ f8
2029
+ I
2030
+ 0
2031
+ I
2032
+ f9
2033
+ x
2034
+ 75
2035
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2036
+ p
2037
+ 2
2038
+ x
2039
+ 1
2040
+ c
2041
+ x
2042
+ 11
2043
+ config_file
2044
+ x
2045
+ 14
2046
+ installer_args
2047
+ M
2048
+ 1
2049
+ n
2050
+ n
2051
+ x
2052
+ 14
2053
+ installer_args
2054
+ i
2055
+ 10
2056
+ 1
2057
+ 5
2058
+ 48
2059
+ 0
2060
+ 5
2061
+ 48
2062
+ 1
2063
+ 35
2064
+ 3
2065
+ 11
2066
+ I
2067
+ 3
2068
+ I
2069
+ 0
2070
+ I
2071
+ 0
2072
+ I
2073
+ 0
2074
+ n
2075
+ p
2076
+ 2
2077
+ x
2078
+ 17
2079
+ project_directory
2080
+ x
2081
+ 7
2082
+ options
2083
+ p
2084
+ 5
2085
+ I
2086
+ -1
2087
+ I
2088
+ 4f
2089
+ I
2090
+ 0
2091
+ I
2092
+ 50
2093
+ I
2094
+ a
2095
+ x
2096
+ 75
2097
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2098
+ p
2099
+ 0
2100
+ x
2101
+ 38
2102
+ explicit_config_file_must_be_readable?
2103
+ M
2104
+ 1
2105
+ n
2106
+ n
2107
+ x
2108
+ 38
2109
+ explicit_config_file_must_be_readable?
2110
+ i
2111
+ 2
2112
+ 3
2113
+ 11
2114
+ I
2115
+ 1
2116
+ I
2117
+ 0
2118
+ I
2119
+ 0
2120
+ I
2121
+ 0
2122
+ n
2123
+ p
2124
+ 0
2125
+ p
2126
+ 5
2127
+ I
2128
+ -1
2129
+ I
2130
+ 53
2131
+ I
2132
+ 0
2133
+ I
2134
+ 54
2135
+ I
2136
+ 2
2137
+ x
2138
+ 75
2139
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2140
+ p
2141
+ 0
2142
+ x
2143
+ 4
2144
+ Type
2145
+ x
2146
+ 22
2147
+ object_singleton_class
2148
+ x
2149
+ 18
2150
+ __metaclass_init__
2151
+ M
2152
+ 1
2153
+ n
2154
+ n
2155
+ x
2156
+ 18
2157
+ __metaclass_init__
2158
+ i
2159
+ 72
2160
+ 5
2161
+ 66
2162
+ 99
2163
+ 7
2164
+ 0
2165
+ 7
2166
+ 1
2167
+ 65
2168
+ 67
2169
+ 49
2170
+ 2
2171
+ 0
2172
+ 49
2173
+ 3
2174
+ 4
2175
+ 15
2176
+ 99
2177
+ 7
2178
+ 4
2179
+ 7
2180
+ 5
2181
+ 65
2182
+ 67
2183
+ 49
2184
+ 2
2185
+ 0
2186
+ 49
2187
+ 3
2188
+ 4
2189
+ 15
2190
+ 99
2191
+ 7
2192
+ 6
2193
+ 7
2194
+ 7
2195
+ 65
2196
+ 67
2197
+ 49
2198
+ 2
2199
+ 0
2200
+ 49
2201
+ 3
2202
+ 4
2203
+ 15
2204
+ 99
2205
+ 7
2206
+ 8
2207
+ 7
2208
+ 9
2209
+ 65
2210
+ 67
2211
+ 49
2212
+ 2
2213
+ 0
2214
+ 49
2215
+ 3
2216
+ 4
2217
+ 15
2218
+ 99
2219
+ 7
2220
+ 10
2221
+ 7
2222
+ 11
2223
+ 65
2224
+ 67
2225
+ 49
2226
+ 2
2227
+ 0
2228
+ 49
2229
+ 3
2230
+ 4
2231
+ 11
2232
+ I
2233
+ 5
2234
+ I
2235
+ 0
2236
+ I
2237
+ 0
2238
+ I
2239
+ 0
2240
+ n
2241
+ p
2242
+ 12
2243
+ x
2244
+ 13
2245
+ option_parser
2246
+ M
2247
+ 1
2248
+ n
2249
+ n
2250
+ x
2251
+ 13
2252
+ option_parser
2253
+ i
2254
+ 70
2255
+ 45
2256
+ 0
2257
+ 1
2258
+ 43
2259
+ 2
2260
+ 43
2261
+ 3
2262
+ 13
2263
+ 71
2264
+ 4
2265
+ 47
2266
+ 9
2267
+ 27
2268
+ 47
2269
+ 49
2270
+ 5
2271
+ 0
2272
+ 13
2273
+ 20
2274
+ 0
2275
+ 47
2276
+ 49
2277
+ 6
2278
+ 1
2279
+ 15
2280
+ 8
2281
+ 32
2282
+ 20
2283
+ 0
2284
+ 49
2285
+ 4
2286
+ 1
2287
+ 19
2288
+ 1
2289
+ 15
2290
+ 20
2291
+ 1
2292
+ 45
2293
+ 0
2294
+ 7
2295
+ 43
2296
+ 2
2297
+ 43
2298
+ 8
2299
+ 49
2300
+ 9
2301
+ 1
2302
+ 15
2303
+ 20
2304
+ 1
2305
+ 45
2306
+ 0
2307
+ 10
2308
+ 43
2309
+ 2
2310
+ 43
2311
+ 11
2312
+ 49
2313
+ 9
2314
+ 1
2315
+ 15
2316
+ 20
2317
+ 1
2318
+ 45
2319
+ 12
2320
+ 13
2321
+ 49
2322
+ 9
2323
+ 1
2324
+ 11
2325
+ I
2326
+ 5
2327
+ I
2328
+ 2
2329
+ I
2330
+ 1
2331
+ I
2332
+ 1
2333
+ n
2334
+ p
2335
+ 14
2336
+ x
2337
+ 7
2338
+ Compass
2339
+ n
2340
+ x
2341
+ 4
2342
+ Exec
2343
+ x
2344
+ 19
2345
+ CommandOptionParser
2346
+ x
2347
+ 3
2348
+ new
2349
+ x
2350
+ 8
2351
+ allocate
2352
+ x
2353
+ 10
2354
+ initialize
2355
+ n
2356
+ x
2357
+ 19
2358
+ GlobalOptionsParser
2359
+ x
2360
+ 6
2361
+ extend
2362
+ n
2363
+ x
2364
+ 20
2365
+ ProjectOptionsParser
2366
+ x
2367
+ 26
2368
+ ConfigurationOptionsParser
2369
+ n
2370
+ p
2371
+ 11
2372
+ I
2373
+ -1
2374
+ I
2375
+ 59
2376
+ I
2377
+ 0
2378
+ I
2379
+ 5a
2380
+ I
2381
+ 23
2382
+ I
2383
+ 5b
2384
+ I
2385
+ 30
2386
+ I
2387
+ 5c
2388
+ I
2389
+ 3d
2390
+ I
2391
+ 5d
2392
+ I
2393
+ 46
2394
+ x
2395
+ 75
2396
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2397
+ p
2398
+ 2
2399
+ x
2400
+ 9
2401
+ arguments
2402
+ x
2403
+ 6
2404
+ parser
2405
+ x
2406
+ 17
2407
+ method_visibility
2408
+ x
2409
+ 15
2410
+ add_defn_method
2411
+ x
2412
+ 5
2413
+ usage
2414
+ M
2415
+ 1
2416
+ n
2417
+ n
2418
+ x
2419
+ 5
2420
+ usage
2421
+ i
2422
+ 11
2423
+ 5
2424
+ 35
2425
+ 0
2426
+ 47
2427
+ 49
2428
+ 0
2429
+ 1
2430
+ 49
2431
+ 1
2432
+ 0
2433
+ 11
2434
+ I
2435
+ 2
2436
+ I
2437
+ 0
2438
+ I
2439
+ 0
2440
+ I
2441
+ 0
2442
+ n
2443
+ p
2444
+ 2
2445
+ x
2446
+ 13
2447
+ option_parser
2448
+ x
2449
+ 4
2450
+ to_s
2451
+ p
2452
+ 5
2453
+ I
2454
+ -1
2455
+ I
2456
+ 60
2457
+ I
2458
+ 0
2459
+ I
2460
+ 61
2461
+ I
2462
+ b
2463
+ x
2464
+ 75
2465
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2466
+ p
2467
+ 0
2468
+ x
2469
+ 11
2470
+ description
2471
+ M
2472
+ 1
2473
+ n
2474
+ n
2475
+ x
2476
+ 11
2477
+ description
2478
+ i
2479
+ 4
2480
+ 7
2481
+ 0
2482
+ 64
2483
+ 11
2484
+ I
2485
+ 2
2486
+ I
2487
+ 1
2488
+ I
2489
+ 1
2490
+ I
2491
+ 1
2492
+ n
2493
+ p
2494
+ 1
2495
+ s
2496
+ 68
2497
+ Generate a configuration file for the provided command line options.
2498
+ p
2499
+ 5
2500
+ I
2501
+ -1
2502
+ I
2503
+ 64
2504
+ I
2505
+ 0
2506
+ I
2507
+ 65
2508
+ I
2509
+ 4
2510
+ x
2511
+ 75
2512
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2513
+ p
2514
+ 1
2515
+ x
2516
+ 7
2517
+ command
2518
+ x
2519
+ 6
2520
+ parse!
2521
+ M
2522
+ 1
2523
+ n
2524
+ n
2525
+ x
2526
+ 6
2527
+ parse!
2528
+ i
2529
+ 32
2530
+ 5
2531
+ 20
2532
+ 0
2533
+ 47
2534
+ 49
2535
+ 0
2536
+ 1
2537
+ 19
2538
+ 1
2539
+ 15
2540
+ 20
2541
+ 1
2542
+ 49
2543
+ 1
2544
+ 0
2545
+ 15
2546
+ 5
2547
+ 20
2548
+ 1
2549
+ 20
2550
+ 0
2551
+ 47
2552
+ 49
2553
+ 2
2554
+ 2
2555
+ 15
2556
+ 20
2557
+ 1
2558
+ 49
2559
+ 3
2560
+ 0
2561
+ 11
2562
+ I
2563
+ 5
2564
+ I
2565
+ 2
2566
+ I
2567
+ 1
2568
+ I
2569
+ 1
2570
+ n
2571
+ p
2572
+ 4
2573
+ x
2574
+ 13
2575
+ option_parser
2576
+ x
2577
+ 6
2578
+ parse!
2579
+ x
2580
+ 16
2581
+ parse_arguments!
2582
+ x
2583
+ 7
2584
+ options
2585
+ p
2586
+ 11
2587
+ I
2588
+ -1
2589
+ I
2590
+ 68
2591
+ I
2592
+ 0
2593
+ I
2594
+ 69
2595
+ I
2596
+ a
2597
+ I
2598
+ 6a
2599
+ I
2600
+ 10
2601
+ I
2602
+ 6b
2603
+ I
2604
+ 1a
2605
+ I
2606
+ 6c
2607
+ I
2608
+ 20
2609
+ x
2610
+ 75
2611
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2612
+ p
2613
+ 2
2614
+ x
2615
+ 9
2616
+ arguments
2617
+ x
2618
+ 6
2619
+ parser
2620
+ x
2621
+ 16
2622
+ parse_arguments!
2623
+ M
2624
+ 1
2625
+ n
2626
+ n
2627
+ x
2628
+ 16
2629
+ parse_arguments!
2630
+ i
2631
+ 58
2632
+ 20
2633
+ 1
2634
+ 49
2635
+ 0
2636
+ 0
2637
+ 79
2638
+ 83
2639
+ 1
2640
+ 9
2641
+ 31
2642
+ 20
2643
+ 0
2644
+ 49
2645
+ 2
2646
+ 0
2647
+ 7
2648
+ 3
2649
+ 20
2650
+ 1
2651
+ 49
2652
+ 4
2653
+ 0
2654
+ 13
2655
+ 18
2656
+ 3
2657
+ 49
2658
+ 5
2659
+ 2
2660
+ 15
2661
+ 8
2662
+ 57
2663
+ 20
2664
+ 1
2665
+ 49
2666
+ 0
2667
+ 0
2668
+ 78
2669
+ 83
2670
+ 1
2671
+ 9
2672
+ 44
2673
+ 1
2674
+ 8
2675
+ 57
2676
+ 5
2677
+ 45
2678
+ 6
2679
+ 7
2680
+ 43
2681
+ 8
2682
+ 7
2683
+ 9
2684
+ 64
2685
+ 47
2686
+ 49
2687
+ 10
2688
+ 2
2689
+ 11
2690
+ I
2691
+ 6
2692
+ I
2693
+ 2
2694
+ I
2695
+ 2
2696
+ I
2697
+ 2
2698
+ n
2699
+ p
2700
+ 11
2701
+ x
2702
+ 4
2703
+ size
2704
+ x
2705
+ 2
2706
+ ==
2707
+ x
2708
+ 7
2709
+ options
2710
+ x
2711
+ 18
2712
+ configuration_file
2713
+ x
2714
+ 5
2715
+ shift
2716
+ x
2717
+ 3
2718
+ []=
2719
+ x
2720
+ 7
2721
+ Compass
2722
+ n
2723
+ x
2724
+ 5
2725
+ Error
2726
+ s
2727
+ 34
2728
+ Too many arguments were specified.
2729
+ x
2730
+ 5
2731
+ raise
2732
+ p
2733
+ 13
2734
+ I
2735
+ -1
2736
+ I
2737
+ 6f
2738
+ I
2739
+ 0
2740
+ I
2741
+ 70
2742
+ I
2743
+ a
2744
+ I
2745
+ 71
2746
+ I
2747
+ 1f
2748
+ I
2749
+ 72
2750
+ I
2751
+ 2c
2752
+ I
2753
+ 75
2754
+ I
2755
+ 39
2756
+ I
2757
+ 0
2758
+ I
2759
+ 3a
2760
+ x
2761
+ 75
2762
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2763
+ p
2764
+ 2
2765
+ x
2766
+ 6
2767
+ parser
2768
+ x
2769
+ 9
2770
+ arguments
2771
+ p
2772
+ 11
2773
+ I
2774
+ 2
2775
+ I
2776
+ 59
2777
+ I
2778
+ 10
2779
+ I
2780
+ 60
2781
+ I
2782
+ 1e
2783
+ I
2784
+ 64
2785
+ I
2786
+ 2c
2787
+ I
2788
+ 68
2789
+ I
2790
+ 3a
2791
+ I
2792
+ 6f
2793
+ I
2794
+ 48
2795
+ x
2796
+ 75
2797
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2798
+ p
2799
+ 0
2800
+ x
2801
+ 13
2802
+ attach_method
2803
+ p
2804
+ 17
2805
+ I
2806
+ 2
2807
+ I
2808
+ 20
2809
+ I
2810
+ a
2811
+ I
2812
+ 22
2813
+ I
2814
+ 13
2815
+ I
2816
+ 24
2817
+ I
2818
+ 21
2819
+ I
2820
+ 29
2821
+ I
2822
+ 2f
2823
+ I
2824
+ 2d
2825
+ I
2826
+ 3d
2827
+ I
2828
+ 4f
2829
+ I
2830
+ 4b
2831
+ I
2832
+ 53
2833
+ I
2834
+ 59
2835
+ I
2836
+ 57
2837
+ I
2838
+ 75
2839
+ x
2840
+ 75
2841
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2842
+ p
2843
+ 0
2844
+ p
2845
+ 5
2846
+ I
2847
+ 2
2848
+ I
2849
+ 5
2850
+ I
2851
+ 1c
2852
+ I
2853
+ 1e
2854
+ I
2855
+ 39
2856
+ x
2857
+ 75
2858
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2859
+ p
2860
+ 0
2861
+ x
2862
+ 13
2863
+ attach_method
2864
+ p
2865
+ 3
2866
+ I
2867
+ 2
2868
+ I
2869
+ 4
2870
+ I
2871
+ 1c
2872
+ x
2873
+ 75
2874
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2875
+ p
2876
+ 0
2877
+ x
2878
+ 13
2879
+ attach_method
2880
+ p
2881
+ 5
2882
+ I
2883
+ 0
2884
+ I
2885
+ 1
2886
+ I
2887
+ 9
2888
+ I
2889
+ 3
2890
+ I
2891
+ 25
2892
+ x
2893
+ 75
2894
+ /Users/crispee/Projects/compass/lib/compass/commands/write_configuration.rb
2895
+ p
2896
+ 0