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