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,2011 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 55
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
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 99
41
+ 7
42
+ 4
43
+ 65
44
+ 49
45
+ 5
46
+ 2
47
+ 13
48
+ 99
49
+ 12
50
+ 7
51
+ 6
52
+ 12
53
+ 7
54
+ 7
55
+ 12
56
+ 65
57
+ 12
58
+ 49
59
+ 8
60
+ 4
61
+ 15
62
+ 49
63
+ 6
64
+ 0
65
+ 15
66
+ 2
67
+ 11
68
+ I
69
+ 6
70
+ I
71
+ 0
72
+ I
73
+ 0
74
+ I
75
+ 0
76
+ n
77
+ p
78
+ 9
79
+ s
80
+ 9
81
+ fileutils
82
+ x
83
+ 7
84
+ require
85
+ s
86
+ 21
87
+ compass/commands/base
88
+ s
89
+ 31
90
+ compass/commands/update_project
91
+ x
92
+ 7
93
+ Compass
94
+ x
95
+ 11
96
+ open_module
97
+ x
98
+ 15
99
+ __module_init__
100
+ M
101
+ 1
102
+ n
103
+ n
104
+ x
105
+ 7
106
+ Compass
107
+ i
108
+ 28
109
+ 5
110
+ 66
111
+ 99
112
+ 7
113
+ 0
114
+ 65
115
+ 49
116
+ 1
117
+ 2
118
+ 13
119
+ 99
120
+ 12
121
+ 7
122
+ 2
123
+ 12
124
+ 7
125
+ 3
126
+ 12
127
+ 65
128
+ 12
129
+ 49
130
+ 4
131
+ 4
132
+ 15
133
+ 49
134
+ 2
135
+ 0
136
+ 11
137
+ I
138
+ 6
139
+ I
140
+ 0
141
+ I
142
+ 0
143
+ I
144
+ 0
145
+ n
146
+ p
147
+ 5
148
+ x
149
+ 8
150
+ Commands
151
+ x
152
+ 11
153
+ open_module
154
+ x
155
+ 15
156
+ __module_init__
157
+ M
158
+ 1
159
+ n
160
+ n
161
+ x
162
+ 8
163
+ Commands
164
+ i
165
+ 57
166
+ 5
167
+ 66
168
+ 99
169
+ 7
170
+ 0
171
+ 65
172
+ 49
173
+ 1
174
+ 2
175
+ 13
176
+ 99
177
+ 12
178
+ 7
179
+ 2
180
+ 12
181
+ 7
182
+ 3
183
+ 12
184
+ 65
185
+ 12
186
+ 49
187
+ 4
188
+ 4
189
+ 15
190
+ 49
191
+ 2
192
+ 0
193
+ 15
194
+ 99
195
+ 7
196
+ 5
197
+ 45
198
+ 6
199
+ 7
200
+ 65
201
+ 49
202
+ 8
203
+ 3
204
+ 13
205
+ 99
206
+ 12
207
+ 7
208
+ 9
209
+ 12
210
+ 7
211
+ 10
212
+ 12
213
+ 65
214
+ 12
215
+ 49
216
+ 4
217
+ 4
218
+ 15
219
+ 49
220
+ 9
221
+ 0
222
+ 11
223
+ I
224
+ 6
225
+ I
226
+ 0
227
+ I
228
+ 0
229
+ I
230
+ 0
231
+ n
232
+ p
233
+ 11
234
+ x
235
+ 25
236
+ StampPatternOptionsParser
237
+ x
238
+ 11
239
+ open_module
240
+ x
241
+ 15
242
+ __module_init__
243
+ M
244
+ 1
245
+ n
246
+ n
247
+ x
248
+ 25
249
+ StampPatternOptionsParser
250
+ i
251
+ 16
252
+ 5
253
+ 66
254
+ 99
255
+ 7
256
+ 0
257
+ 7
258
+ 1
259
+ 65
260
+ 67
261
+ 49
262
+ 2
263
+ 0
264
+ 49
265
+ 3
266
+ 4
267
+ 11
268
+ I
269
+ 5
270
+ I
271
+ 0
272
+ I
273
+ 0
274
+ I
275
+ 0
276
+ n
277
+ p
278
+ 4
279
+ x
280
+ 11
281
+ set_options
282
+ M
283
+ 1
284
+ n
285
+ n
286
+ x
287
+ 11
288
+ set_options
289
+ i
290
+ 43
291
+ 20
292
+ 0
293
+ 7
294
+ 0
295
+ 64
296
+ 13
297
+ 18
298
+ 2
299
+ 49
300
+ 1
301
+ 1
302
+ 15
303
+ 15
304
+ 20
305
+ 0
306
+ 7
307
+ 2
308
+ 64
309
+ 7
310
+ 3
311
+ 64
312
+ 7
313
+ 4
314
+ 7
315
+ 5
316
+ 35
317
+ 2
318
+ 7
319
+ 6
320
+ 64
321
+ 7
322
+ 7
323
+ 64
324
+ 56
325
+ 8
326
+ 50
327
+ 9
328
+ 5
329
+ 15
330
+ 54
331
+ 89
332
+ 10
333
+ 11
334
+ I
335
+ 8
336
+ I
337
+ 1
338
+ I
339
+ 1
340
+ I
341
+ 1
342
+ n
343
+ p
344
+ 11
345
+ s
346
+ 198
347
+ Usage: compass install extension/pattern [path/to/project] [options]
348
+
349
+ Description:
350
+ Install an extension's pattern into your compass project
351
+
352
+ Example:
353
+ compass install blueprint/buttons
354
+
355
+ Options:
356
+
357
+ x
358
+ 7
359
+ banner=
360
+ s
361
+ 2
362
+ -x
363
+ s
364
+ 15
365
+ --syntax SYNTAX
366
+ x
367
+ 4
368
+ sass
369
+ x
370
+ 4
371
+ scss
372
+ s
373
+ 54
374
+ Specify the syntax to use when generating stylesheets.
375
+ s
376
+ 38
377
+ One of sass or scss. Defaults to scss.
378
+ M
379
+ 1
380
+ p
381
+ 2
382
+ x
383
+ 9
384
+ for_block
385
+ t
386
+ n
387
+ x
388
+ 11
389
+ set_options
390
+ i
391
+ 20
392
+ 57
393
+ 19
394
+ 0
395
+ 15
396
+ 5
397
+ 49
398
+ 0
399
+ 0
400
+ 7
401
+ 1
402
+ 20
403
+ 0
404
+ 13
405
+ 18
406
+ 3
407
+ 49
408
+ 2
409
+ 2
410
+ 15
411
+ 11
412
+ I
413
+ 6
414
+ I
415
+ 1
416
+ I
417
+ 1
418
+ I
419
+ 1
420
+ n
421
+ p
422
+ 3
423
+ x
424
+ 7
425
+ options
426
+ x
427
+ 16
428
+ preferred_syntax
429
+ x
430
+ 3
431
+ []=
432
+ p
433
+ 5
434
+ I
435
+ 0
436
+ I
437
+ 13
438
+ I
439
+ 4
440
+ I
441
+ 14
442
+ I
443
+ 14
444
+ x
445
+ 69
446
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
447
+ p
448
+ 1
449
+ x
450
+ 6
451
+ syntax
452
+ x
453
+ 2
454
+ on
455
+ x
456
+ 11
457
+ set_options
458
+ p
459
+ 9
460
+ I
461
+ -1
462
+ I
463
+ 8
464
+ I
465
+ 0
466
+ I
467
+ 9
468
+ I
469
+ d
470
+ I
471
+ 13
472
+ I
473
+ 27
474
+ I
475
+ 17
476
+ I
477
+ 2b
478
+ x
479
+ 69
480
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
481
+ p
482
+ 1
483
+ x
484
+ 4
485
+ opts
486
+ x
487
+ 17
488
+ method_visibility
489
+ x
490
+ 15
491
+ add_defn_method
492
+ p
493
+ 3
494
+ I
495
+ 2
496
+ I
497
+ 8
498
+ I
499
+ 10
500
+ x
501
+ 69
502
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
503
+ p
504
+ 0
505
+ x
506
+ 13
507
+ attach_method
508
+ x
509
+ 12
510
+ StampPattern
511
+ x
512
+ 11
513
+ ProjectBase
514
+ n
515
+ x
516
+ 10
517
+ open_class
518
+ x
519
+ 14
520
+ __class_init__
521
+ M
522
+ 1
523
+ n
524
+ n
525
+ x
526
+ 12
527
+ StampPattern
528
+ i
529
+ 103
530
+ 5
531
+ 66
532
+ 5
533
+ 7
534
+ 0
535
+ 47
536
+ 49
537
+ 1
538
+ 1
539
+ 15
540
+ 5
541
+ 99
542
+ 43
543
+ 2
544
+ 12
545
+ 49
546
+ 3
547
+ 1
548
+ 13
549
+ 99
550
+ 12
551
+ 7
552
+ 4
553
+ 12
554
+ 7
555
+ 5
556
+ 12
557
+ 65
558
+ 12
559
+ 49
560
+ 6
561
+ 4
562
+ 15
563
+ 54
564
+ 50
565
+ 4
566
+ 0
567
+ 15
568
+ 5
569
+ 45
570
+ 7
571
+ 8
572
+ 47
573
+ 49
574
+ 9
575
+ 1
576
+ 15
577
+ 99
578
+ 7
579
+ 10
580
+ 7
581
+ 11
582
+ 65
583
+ 67
584
+ 49
585
+ 12
586
+ 0
587
+ 49
588
+ 13
589
+ 4
590
+ 15
591
+ 99
592
+ 7
593
+ 14
594
+ 7
595
+ 15
596
+ 65
597
+ 67
598
+ 49
599
+ 12
600
+ 0
601
+ 49
602
+ 13
603
+ 4
604
+ 15
605
+ 99
606
+ 7
607
+ 16
608
+ 7
609
+ 17
610
+ 65
611
+ 67
612
+ 49
613
+ 12
614
+ 0
615
+ 49
616
+ 13
617
+ 4
618
+ 15
619
+ 99
620
+ 7
621
+ 18
622
+ 7
623
+ 19
624
+ 65
625
+ 67
626
+ 49
627
+ 12
628
+ 0
629
+ 49
630
+ 13
631
+ 4
632
+ 11
633
+ I
634
+ 6
635
+ I
636
+ 0
637
+ I
638
+ 0
639
+ I
640
+ 0
641
+ n
642
+ p
643
+ 20
644
+ x
645
+ 7
646
+ install
647
+ x
648
+ 8
649
+ register
650
+ x
651
+ 4
652
+ Type
653
+ x
654
+ 22
655
+ object_singleton_class
656
+ x
657
+ 18
658
+ __metaclass_init__
659
+ M
660
+ 1
661
+ n
662
+ n
663
+ x
664
+ 18
665
+ __metaclass_init__
666
+ i
667
+ 72
668
+ 5
669
+ 66
670
+ 99
671
+ 7
672
+ 0
673
+ 7
674
+ 1
675
+ 65
676
+ 67
677
+ 49
678
+ 2
679
+ 0
680
+ 49
681
+ 3
682
+ 4
683
+ 15
684
+ 99
685
+ 7
686
+ 4
687
+ 7
688
+ 5
689
+ 65
690
+ 67
691
+ 49
692
+ 2
693
+ 0
694
+ 49
695
+ 3
696
+ 4
697
+ 15
698
+ 99
699
+ 7
700
+ 6
701
+ 7
702
+ 7
703
+ 65
704
+ 67
705
+ 49
706
+ 2
707
+ 0
708
+ 49
709
+ 3
710
+ 4
711
+ 15
712
+ 99
713
+ 7
714
+ 8
715
+ 7
716
+ 9
717
+ 65
718
+ 67
719
+ 49
720
+ 2
721
+ 0
722
+ 49
723
+ 3
724
+ 4
725
+ 15
726
+ 99
727
+ 7
728
+ 10
729
+ 7
730
+ 11
731
+ 65
732
+ 67
733
+ 49
734
+ 2
735
+ 0
736
+ 49
737
+ 3
738
+ 4
739
+ 11
740
+ I
741
+ 5
742
+ I
743
+ 0
744
+ I
745
+ 0
746
+ I
747
+ 0
748
+ n
749
+ p
750
+ 12
751
+ x
752
+ 13
753
+ option_parser
754
+ M
755
+ 1
756
+ n
757
+ n
758
+ x
759
+ 13
760
+ option_parser
761
+ i
762
+ 70
763
+ 45
764
+ 0
765
+ 1
766
+ 43
767
+ 2
768
+ 43
769
+ 3
770
+ 13
771
+ 71
772
+ 4
773
+ 47
774
+ 9
775
+ 27
776
+ 47
777
+ 49
778
+ 5
779
+ 0
780
+ 13
781
+ 20
782
+ 0
783
+ 47
784
+ 49
785
+ 6
786
+ 1
787
+ 15
788
+ 8
789
+ 32
790
+ 20
791
+ 0
792
+ 49
793
+ 4
794
+ 1
795
+ 19
796
+ 1
797
+ 15
798
+ 20
799
+ 1
800
+ 45
801
+ 0
802
+ 7
803
+ 43
804
+ 2
805
+ 43
806
+ 8
807
+ 49
808
+ 9
809
+ 1
810
+ 15
811
+ 20
812
+ 1
813
+ 45
814
+ 0
815
+ 10
816
+ 43
817
+ 2
818
+ 43
819
+ 11
820
+ 49
821
+ 9
822
+ 1
823
+ 15
824
+ 20
825
+ 1
826
+ 45
827
+ 12
828
+ 13
829
+ 49
830
+ 9
831
+ 1
832
+ 11
833
+ I
834
+ 5
835
+ I
836
+ 2
837
+ I
838
+ 1
839
+ I
840
+ 1
841
+ n
842
+ p
843
+ 14
844
+ x
845
+ 7
846
+ Compass
847
+ n
848
+ x
849
+ 4
850
+ Exec
851
+ x
852
+ 19
853
+ CommandOptionParser
854
+ x
855
+ 3
856
+ new
857
+ x
858
+ 8
859
+ allocate
860
+ x
861
+ 10
862
+ initialize
863
+ n
864
+ x
865
+ 19
866
+ GlobalOptionsParser
867
+ x
868
+ 6
869
+ extend
870
+ n
871
+ x
872
+ 20
873
+ ProjectOptionsParser
874
+ x
875
+ 25
876
+ StampPatternOptionsParser
877
+ n
878
+ p
879
+ 11
880
+ I
881
+ -1
882
+ I
883
+ 20
884
+ I
885
+ 0
886
+ I
887
+ 21
888
+ I
889
+ 23
890
+ I
891
+ 22
892
+ I
893
+ 30
894
+ I
895
+ 23
896
+ I
897
+ 3d
898
+ I
899
+ 24
900
+ I
901
+ 46
902
+ x
903
+ 69
904
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
905
+ p
906
+ 2
907
+ x
908
+ 9
909
+ arguments
910
+ x
911
+ 6
912
+ parser
913
+ x
914
+ 17
915
+ method_visibility
916
+ x
917
+ 15
918
+ add_defn_method
919
+ x
920
+ 5
921
+ usage
922
+ M
923
+ 1
924
+ n
925
+ n
926
+ x
927
+ 5
928
+ usage
929
+ i
930
+ 11
931
+ 5
932
+ 35
933
+ 0
934
+ 47
935
+ 49
936
+ 0
937
+ 1
938
+ 49
939
+ 1
940
+ 0
941
+ 11
942
+ I
943
+ 2
944
+ I
945
+ 0
946
+ I
947
+ 0
948
+ I
949
+ 0
950
+ n
951
+ p
952
+ 2
953
+ x
954
+ 13
955
+ option_parser
956
+ x
957
+ 4
958
+ to_s
959
+ p
960
+ 5
961
+ I
962
+ -1
963
+ I
964
+ 26
965
+ I
966
+ 0
967
+ I
968
+ 27
969
+ I
970
+ b
971
+ x
972
+ 69
973
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
974
+ p
975
+ 0
976
+ x
977
+ 11
978
+ description
979
+ M
980
+ 1
981
+ n
982
+ n
983
+ x
984
+ 11
985
+ description
986
+ i
987
+ 4
988
+ 7
989
+ 0
990
+ 64
991
+ 11
992
+ I
993
+ 2
994
+ I
995
+ 1
996
+ I
997
+ 1
998
+ I
999
+ 1
1000
+ n
1001
+ p
1002
+ 1
1003
+ s
1004
+ 56
1005
+ Install an extension's pattern into your compass project
1006
+ p
1007
+ 5
1008
+ I
1009
+ -1
1010
+ I
1011
+ 29
1012
+ I
1013
+ 0
1014
+ I
1015
+ 2a
1016
+ I
1017
+ 4
1018
+ x
1019
+ 69
1020
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1021
+ p
1022
+ 1
1023
+ x
1024
+ 7
1025
+ command
1026
+ x
1027
+ 6
1028
+ parse!
1029
+ M
1030
+ 1
1031
+ n
1032
+ n
1033
+ x
1034
+ 6
1035
+ parse!
1036
+ i
1037
+ 32
1038
+ 5
1039
+ 20
1040
+ 0
1041
+ 47
1042
+ 49
1043
+ 0
1044
+ 1
1045
+ 19
1046
+ 1
1047
+ 15
1048
+ 20
1049
+ 1
1050
+ 49
1051
+ 1
1052
+ 0
1053
+ 15
1054
+ 5
1055
+ 20
1056
+ 1
1057
+ 20
1058
+ 0
1059
+ 47
1060
+ 49
1061
+ 2
1062
+ 2
1063
+ 15
1064
+ 20
1065
+ 1
1066
+ 49
1067
+ 3
1068
+ 0
1069
+ 11
1070
+ I
1071
+ 5
1072
+ I
1073
+ 2
1074
+ I
1075
+ 1
1076
+ I
1077
+ 1
1078
+ n
1079
+ p
1080
+ 4
1081
+ x
1082
+ 13
1083
+ option_parser
1084
+ x
1085
+ 6
1086
+ parse!
1087
+ x
1088
+ 16
1089
+ parse_arguments!
1090
+ x
1091
+ 7
1092
+ options
1093
+ p
1094
+ 11
1095
+ I
1096
+ -1
1097
+ I
1098
+ 2c
1099
+ I
1100
+ 0
1101
+ I
1102
+ 2d
1103
+ I
1104
+ a
1105
+ I
1106
+ 2e
1107
+ I
1108
+ 10
1109
+ I
1110
+ 2f
1111
+ I
1112
+ 1a
1113
+ I
1114
+ 30
1115
+ I
1116
+ 20
1117
+ x
1118
+ 69
1119
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1120
+ p
1121
+ 2
1122
+ x
1123
+ 9
1124
+ arguments
1125
+ x
1126
+ 6
1127
+ parser
1128
+ x
1129
+ 16
1130
+ parse_arguments!
1131
+ M
1132
+ 1
1133
+ n
1134
+ n
1135
+ x
1136
+ 16
1137
+ parse_arguments!
1138
+ i
1139
+ 156
1140
+ 20
1141
+ 1
1142
+ 49
1143
+ 0
1144
+ 0
1145
+ 78
1146
+ 83
1147
+ 1
1148
+ 9
1149
+ 25
1150
+ 5
1151
+ 45
1152
+ 2
1153
+ 3
1154
+ 43
1155
+ 4
1156
+ 7
1157
+ 5
1158
+ 64
1159
+ 47
1160
+ 49
1161
+ 6
1162
+ 2
1163
+ 8
1164
+ 26
1165
+ 1
1166
+ 15
1167
+ 20
1168
+ 1
1169
+ 49
1170
+ 7
1171
+ 0
1172
+ 7
1173
+ 8
1174
+ 64
1175
+ 80
1176
+ 49
1177
+ 9
1178
+ 2
1179
+ 19
1180
+ 2
1181
+ 15
1182
+ 20
1183
+ 0
1184
+ 49
1185
+ 10
1186
+ 0
1187
+ 7
1188
+ 11
1189
+ 20
1190
+ 2
1191
+ 78
1192
+ 49
1193
+ 12
1194
+ 1
1195
+ 13
1196
+ 18
1197
+ 3
1198
+ 49
1199
+ 13
1200
+ 2
1201
+ 15
1202
+ 15
1203
+ 20
1204
+ 0
1205
+ 49
1206
+ 10
1207
+ 0
1208
+ 7
1209
+ 14
1210
+ 20
1211
+ 2
1212
+ 79
1213
+ 49
1214
+ 12
1215
+ 1
1216
+ 13
1217
+ 18
1218
+ 3
1219
+ 49
1220
+ 13
1221
+ 2
1222
+ 15
1223
+ 15
1224
+ 20
1225
+ 1
1226
+ 49
1227
+ 0
1228
+ 0
1229
+ 78
1230
+ 85
1231
+ 15
1232
+ 9
1233
+ 115
1234
+ 20
1235
+ 0
1236
+ 49
1237
+ 10
1238
+ 0
1239
+ 7
1240
+ 16
1241
+ 20
1242
+ 1
1243
+ 49
1244
+ 7
1245
+ 0
1246
+ 13
1247
+ 18
1248
+ 3
1249
+ 49
1250
+ 13
1251
+ 2
1252
+ 15
1253
+ 8
1254
+ 116
1255
+ 1
1256
+ 15
1257
+ 20
1258
+ 1
1259
+ 49
1260
+ 0
1261
+ 0
1262
+ 78
1263
+ 85
1264
+ 15
1265
+ 9
1266
+ 154
1267
+ 5
1268
+ 45
1269
+ 2
1270
+ 17
1271
+ 43
1272
+ 4
1273
+ 7
1274
+ 18
1275
+ 20
1276
+ 1
1277
+ 7
1278
+ 19
1279
+ 64
1280
+ 49
1281
+ 20
1282
+ 1
1283
+ 47
1284
+ 101
1285
+ 21
1286
+ 63
1287
+ 2
1288
+ 47
1289
+ 49
1290
+ 6
1291
+ 2
1292
+ 8
1293
+ 155
1294
+ 1
1295
+ 11
1296
+ I
1297
+ 8
1298
+ I
1299
+ 3
1300
+ I
1301
+ 2
1302
+ I
1303
+ 2
1304
+ n
1305
+ p
1306
+ 22
1307
+ x
1308
+ 4
1309
+ size
1310
+ x
1311
+ 2
1312
+ ==
1313
+ x
1314
+ 12
1315
+ OptionParser
1316
+ n
1317
+ x
1318
+ 10
1319
+ ParseError
1320
+ s
1321
+ 25
1322
+ Please specify a pattern.
1323
+ x
1324
+ 5
1325
+ raise
1326
+ x
1327
+ 5
1328
+ shift
1329
+ s
1330
+ 1
1331
+ /
1332
+ x
1333
+ 5
1334
+ split
1335
+ x
1336
+ 7
1337
+ options
1338
+ x
1339
+ 9
1340
+ framework
1341
+ x
1342
+ 2
1343
+ []
1344
+ x
1345
+ 3
1346
+ []=
1347
+ x
1348
+ 7
1349
+ pattern
1350
+ x
1351
+ 1
1352
+ >
1353
+ x
1354
+ 12
1355
+ project_name
1356
+ n
1357
+ s
1358
+ 31
1359
+ Unexpected trailing arguments:
1360
+ s
1361
+ 1
1362
+
1363
+ x
1364
+ 4
1365
+ join
1366
+ x
1367
+ 4
1368
+ to_s
1369
+ p
1370
+ 33
1371
+ I
1372
+ -1
1373
+ I
1374
+ 32
1375
+ I
1376
+ 0
1377
+ I
1378
+ 33
1379
+ I
1380
+ a
1381
+ I
1382
+ 34
1383
+ I
1384
+ 19
1385
+ I
1386
+ 33
1387
+ I
1388
+ 1a
1389
+ I
1390
+ 0
1391
+ I
1392
+ 1b
1393
+ I
1394
+ 36
1395
+ I
1396
+ 2a
1397
+ I
1398
+ 37
1399
+ I
1400
+ 3f
1401
+ I
1402
+ 38
1403
+ I
1404
+ 54
1405
+ I
1406
+ 39
1407
+ I
1408
+ 5e
1409
+ I
1410
+ 3a
1411
+ I
1412
+ 73
1413
+ I
1414
+ 39
1415
+ I
1416
+ 74
1417
+ I
1418
+ 0
1419
+ I
1420
+ 75
1421
+ I
1422
+ 3c
1423
+ I
1424
+ 7f
1425
+ I
1426
+ 3d
1427
+ I
1428
+ 9a
1429
+ I
1430
+ 3c
1431
+ I
1432
+ 9b
1433
+ I
1434
+ 0
1435
+ I
1436
+ 9c
1437
+ x
1438
+ 69
1439
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1440
+ p
1441
+ 3
1442
+ x
1443
+ 6
1444
+ parser
1445
+ x
1446
+ 9
1447
+ arguments
1448
+ x
1449
+ 7
1450
+ pattern
1451
+ p
1452
+ 11
1453
+ I
1454
+ 2
1455
+ I
1456
+ 20
1457
+ I
1458
+ 10
1459
+ I
1460
+ 26
1461
+ I
1462
+ 1e
1463
+ I
1464
+ 29
1465
+ I
1466
+ 2c
1467
+ I
1468
+ 2c
1469
+ I
1470
+ 3a
1471
+ I
1472
+ 32
1473
+ I
1474
+ 48
1475
+ x
1476
+ 69
1477
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1478
+ p
1479
+ 0
1480
+ x
1481
+ 13
1482
+ attach_method
1483
+ x
1484
+ 16
1485
+ InstallerCommand
1486
+ n
1487
+ x
1488
+ 7
1489
+ include
1490
+ x
1491
+ 10
1492
+ initialize
1493
+ M
1494
+ 1
1495
+ n
1496
+ n
1497
+ x
1498
+ 10
1499
+ initialize
1500
+ i
1501
+ 9
1502
+ 20
1503
+ 0
1504
+ 20
1505
+ 1
1506
+ 54
1507
+ 52
1508
+ 0
1509
+ 2
1510
+ 11
1511
+ I
1512
+ 5
1513
+ I
1514
+ 2
1515
+ I
1516
+ 2
1517
+ I
1518
+ 2
1519
+ n
1520
+ p
1521
+ 1
1522
+ x
1523
+ 10
1524
+ initialize
1525
+ p
1526
+ 5
1527
+ I
1528
+ -1
1529
+ I
1530
+ 44
1531
+ I
1532
+ 0
1533
+ I
1534
+ 45
1535
+ I
1536
+ 9
1537
+ x
1538
+ 69
1539
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1540
+ p
1541
+ 2
1542
+ x
1543
+ 12
1544
+ working_path
1545
+ x
1546
+ 7
1547
+ options
1548
+ x
1549
+ 17
1550
+ method_visibility
1551
+ x
1552
+ 15
1553
+ add_defn_method
1554
+ x
1555
+ 7
1556
+ perform
1557
+ M
1558
+ 1
1559
+ n
1560
+ n
1561
+ x
1562
+ 7
1563
+ perform
1564
+ i
1565
+ 130
1566
+ 5
1567
+ 48
1568
+ 0
1569
+ 49
1570
+ 1
1571
+ 0
1572
+ 15
1573
+ 5
1574
+ 48
1575
+ 0
1576
+ 44
1577
+ 43
1578
+ 2
1579
+ 80
1580
+ 49
1581
+ 3
1582
+ 1
1583
+ 13
1584
+ 7
1585
+ 4
1586
+ 2
1587
+ 49
1588
+ 5
1589
+ 2
1590
+ 15
1591
+ 13
1592
+ 7
1593
+ 6
1594
+ 5
1595
+ 47
1596
+ 49
1597
+ 7
1598
+ 0
1599
+ 10
1600
+ 38
1601
+ 2
1602
+ 8
1603
+ 39
1604
+ 3
1605
+ 49
1606
+ 5
1607
+ 2
1608
+ 15
1609
+ 49
1610
+ 8
1611
+ 1
1612
+ 15
1613
+ 5
1614
+ 48
1615
+ 0
1616
+ 49
1617
+ 9
1618
+ 0
1619
+ 9
1620
+ 96
1621
+ 45
1622
+ 10
1623
+ 11
1624
+ 13
1625
+ 71
1626
+ 12
1627
+ 47
1628
+ 9
1629
+ 82
1630
+ 47
1631
+ 49
1632
+ 13
1633
+ 0
1634
+ 13
1635
+ 5
1636
+ 48
1637
+ 14
1638
+ 5
1639
+ 48
1640
+ 15
1641
+ 47
1642
+ 49
1643
+ 16
1644
+ 2
1645
+ 15
1646
+ 8
1647
+ 91
1648
+ 5
1649
+ 48
1650
+ 14
1651
+ 5
1652
+ 48
1653
+ 15
1654
+ 49
1655
+ 12
1656
+ 2
1657
+ 49
1658
+ 17
1659
+ 0
1660
+ 8
1661
+ 97
1662
+ 1
1663
+ 15
1664
+ 5
1665
+ 48
1666
+ 0
1667
+ 5
1668
+ 48
1669
+ 15
1670
+ 44
1671
+ 43
1672
+ 2
1673
+ 79
1674
+ 49
1675
+ 3
1676
+ 1
1677
+ 13
1678
+ 7
1679
+ 18
1680
+ 5
1681
+ 47
1682
+ 49
1683
+ 7
1684
+ 0
1685
+ 49
1686
+ 5
1687
+ 2
1688
+ 15
1689
+ 49
1690
+ 19
1691
+ 1
1692
+ 49
1693
+ 20
1694
+ 1
1695
+ 11
1696
+ I
1697
+ 6
1698
+ I
1699
+ 0
1700
+ I
1701
+ 0
1702
+ I
1703
+ 0
1704
+ n
1705
+ p
1706
+ 21
1707
+ x
1708
+ 9
1709
+ installer
1710
+ x
1711
+ 4
1712
+ init
1713
+ x
1714
+ 4
1715
+ Hash
1716
+ x
1717
+ 16
1718
+ new_from_literal
1719
+ x
1720
+ 17
1721
+ skip_finalization
1722
+ x
1723
+ 3
1724
+ []=
1725
+ x
1726
+ 16
1727
+ skip_preparation
1728
+ x
1729
+ 20
1730
+ is_project_creation?
1731
+ x
1732
+ 3
1733
+ run
1734
+ x
1735
+ 21
1736
+ compilation_required?
1737
+ x
1738
+ 13
1739
+ UpdateProject
1740
+ n
1741
+ x
1742
+ 3
1743
+ new
1744
+ x
1745
+ 8
1746
+ allocate
1747
+ x
1748
+ 12
1749
+ working_path
1750
+ x
1751
+ 7
1752
+ options
1753
+ x
1754
+ 10
1755
+ initialize
1756
+ x
1757
+ 7
1758
+ perform
1759
+ x
1760
+ 6
1761
+ create
1762
+ x
1763
+ 5
1764
+ merge
1765
+ x
1766
+ 8
1767
+ finalize
1768
+ p
1769
+ 13
1770
+ I
1771
+ -1
1772
+ I
1773
+ 49
1774
+ I
1775
+ 0
1776
+ I
1777
+ 4a
1778
+ I
1779
+ 7
1780
+ I
1781
+ 4b
1782
+ I
1783
+ 2f
1784
+ I
1785
+ 4c
1786
+ I
1787
+ 61
1788
+ I
1789
+ 0
1790
+ I
1791
+ 62
1792
+ I
1793
+ 4d
1794
+ I
1795
+ 82
1796
+ x
1797
+ 69
1798
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1799
+ p
1800
+ 0
1801
+ x
1802
+ 20
1803
+ is_project_creation?
1804
+ M
1805
+ 1
1806
+ n
1807
+ n
1808
+ x
1809
+ 20
1810
+ is_project_creation?
1811
+ i
1812
+ 2
1813
+ 3
1814
+ 11
1815
+ I
1816
+ 1
1817
+ I
1818
+ 0
1819
+ I
1820
+ 0
1821
+ I
1822
+ 0
1823
+ n
1824
+ p
1825
+ 0
1826
+ p
1827
+ 5
1828
+ I
1829
+ -1
1830
+ I
1831
+ 50
1832
+ I
1833
+ 0
1834
+ I
1835
+ 51
1836
+ I
1837
+ 2
1838
+ x
1839
+ 69
1840
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1841
+ p
1842
+ 0
1843
+ x
1844
+ 18
1845
+ template_directory
1846
+ M
1847
+ 1
1848
+ n
1849
+ n
1850
+ x
1851
+ 18
1852
+ template_directory
1853
+ i
1854
+ 15
1855
+ 45
1856
+ 0
1857
+ 1
1858
+ 5
1859
+ 48
1860
+ 2
1861
+ 49
1862
+ 3
1863
+ 0
1864
+ 20
1865
+ 0
1866
+ 49
1867
+ 4
1868
+ 2
1869
+ 11
1870
+ I
1871
+ 4
1872
+ I
1873
+ 1
1874
+ I
1875
+ 1
1876
+ I
1877
+ 1
1878
+ n
1879
+ p
1880
+ 5
1881
+ x
1882
+ 4
1883
+ File
1884
+ n
1885
+ x
1886
+ 9
1887
+ framework
1888
+ x
1889
+ 19
1890
+ templates_directory
1891
+ x
1892
+ 4
1893
+ join
1894
+ p
1895
+ 5
1896
+ I
1897
+ -1
1898
+ I
1899
+ 54
1900
+ I
1901
+ 0
1902
+ I
1903
+ 55
1904
+ I
1905
+ f
1906
+ x
1907
+ 69
1908
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1909
+ p
1910
+ 1
1911
+ x
1912
+ 7
1913
+ pattern
1914
+ p
1915
+ 15
1916
+ I
1917
+ 2
1918
+ I
1919
+ 1d
1920
+ I
1921
+ a
1922
+ I
1923
+ 1f
1924
+ I
1925
+ 26
1926
+ I
1927
+ 42
1928
+ I
1929
+ 2f
1930
+ I
1931
+ 44
1932
+ I
1933
+ 3d
1934
+ I
1935
+ 49
1936
+ I
1937
+ 4b
1938
+ I
1939
+ 50
1940
+ I
1941
+ 59
1942
+ I
1943
+ 54
1944
+ I
1945
+ 67
1946
+ x
1947
+ 69
1948
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1949
+ p
1950
+ 0
1951
+ p
1952
+ 5
1953
+ I
1954
+ 2
1955
+ I
1956
+ 7
1957
+ I
1958
+ 1c
1959
+ I
1960
+ 1b
1961
+ I
1962
+ 39
1963
+ x
1964
+ 69
1965
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1966
+ p
1967
+ 0
1968
+ x
1969
+ 13
1970
+ attach_method
1971
+ p
1972
+ 3
1973
+ I
1974
+ 2
1975
+ I
1976
+ 6
1977
+ I
1978
+ 1c
1979
+ x
1980
+ 69
1981
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
1982
+ p
1983
+ 0
1984
+ x
1985
+ 13
1986
+ attach_method
1987
+ p
1988
+ 9
1989
+ I
1990
+ 0
1991
+ I
1992
+ 1
1993
+ I
1994
+ 9
1995
+ I
1996
+ 2
1997
+ I
1998
+ 12
1999
+ I
2000
+ 3
2001
+ I
2002
+ 1b
2003
+ I
2004
+ 5
2005
+ I
2006
+ 37
2007
+ x
2008
+ 69
2009
+ /Users/crispee/Projects/compass/lib/compass/commands/stamp_pattern.rb
2010
+ p
2011
+ 0