compass 0.12.rc.1 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/VERSION.yml +1 -2
  2. data/bin/compass.compiled.rbc +707 -0
  3. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  4. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  5. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  6. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  7. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  8. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf +0 -0
  9. data/features/command_line.feature +14 -15
  10. data/frameworks/compass/stylesheets/compass/_css3.scss +1 -2
  11. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +4 -4
  12. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +59 -38
  13. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +3 -5
  14. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +12 -4
  15. data/frameworks/compass/stylesheets/compass/utilities/_sprites.scss +1 -0
  16. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss +1 -1
  17. data/lib/compass.rb +2 -0
  18. data/lib/compass.rbc +796 -0
  19. data/lib/compass/actions.rbc +2736 -0
  20. data/lib/compass/app_integration.rbc +836 -0
  21. data/lib/compass/app_integration/merb.rbc +106 -0
  22. data/lib/compass/app_integration/rails.rbc +2096 -0
  23. data/lib/compass/app_integration/rails/configuration_defaults.rbc +2430 -0
  24. data/lib/compass/app_integration/rails/installer.rbc +3677 -0
  25. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  26. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  27. data/lib/compass/app_integration/stand_alone/installer.rbc +1487 -0
  28. data/lib/compass/browser_support.rbc +1144 -0
  29. data/lib/compass/commands.rbc +307 -0
  30. data/lib/compass/commands/base.rbc +1044 -0
  31. data/lib/compass/commands/clean_project.rbc +1856 -0
  32. data/lib/compass/commands/create_project.rbc +2691 -0
  33. data/lib/compass/commands/default.rbc +1677 -0
  34. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  35. data/lib/compass/commands/help.rbc +1921 -0
  36. data/lib/compass/commands/imports.rbc +969 -0
  37. data/lib/compass/commands/installer_command.rbc +807 -0
  38. data/lib/compass/commands/interactive.rbc +1341 -0
  39. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  40. data/lib/compass/commands/print_version.rbc +2478 -0
  41. data/lib/compass/commands/project_base.rbc +2085 -0
  42. data/lib/compass/commands/project_stats.rb +28 -13
  43. data/lib/compass/commands/project_stats.rbc +4202 -0
  44. data/lib/compass/commands/registry.rbc +1350 -0
  45. data/lib/compass/commands/sprite.rbc +2212 -0
  46. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  47. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  48. data/lib/compass/commands/update_project.rbc +3002 -0
  49. data/lib/compass/commands/validate_project.rbc +1686 -0
  50. data/lib/compass/commands/watch_project.rbc +4155 -0
  51. data/lib/compass/commands/write_configuration.rbc +2896 -0
  52. data/lib/compass/compiler.rb +3 -1
  53. data/lib/compass/compiler.rbc +4913 -0
  54. data/lib/compass/configuration.rbc +1398 -0
  55. data/lib/compass/configuration/adapters.rbc +2088 -0
  56. data/lib/compass/configuration/comments.rbc +843 -0
  57. data/lib/compass/configuration/data.rbc +2633 -0
  58. data/lib/compass/configuration/defaults.rbc +3617 -0
  59. data/lib/compass/configuration/file_data.rbc +643 -0
  60. data/lib/compass/configuration/helpers.rb +1 -4
  61. data/lib/compass/configuration/helpers.rbc +3500 -0
  62. data/lib/compass/configuration/inheritance.rbc +3592 -0
  63. data/lib/compass/configuration/paths.rbc +412 -0
  64. data/lib/compass/configuration/serialization.rbc +1996 -0
  65. data/lib/compass/dependencies.rbc +232 -0
  66. data/lib/compass/errors.rbc +176 -0
  67. data/lib/compass/exec.rbc +500 -0
  68. data/lib/compass/exec/command_option_parser.rbc +676 -0
  69. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  70. data/lib/compass/exec/helpers.rbc +758 -0
  71. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  72. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  73. data/lib/compass/frameworks.rbc +3640 -0
  74. data/lib/compass/grid_builder.rbc +0 -0
  75. data/lib/compass/installers.rbc +152 -0
  76. data/lib/compass/installers/bare_installer.rbc +939 -0
  77. data/lib/compass/installers/base.rbc +4427 -0
  78. data/lib/compass/installers/manifest.rb +1 -1
  79. data/lib/compass/installers/manifest.rbc +3335 -0
  80. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  81. data/lib/compass/installers/template_context.rbc +1030 -0
  82. data/lib/compass/logger.rbc +2317 -0
  83. data/lib/compass/quick_cache.rbc +324 -0
  84. data/lib/compass/sass_extensions.rbc +213 -0
  85. data/lib/compass/sass_extensions/functions.rb +2 -2
  86. data/lib/compass/sass_extensions/functions.rbc +808 -0
  87. data/lib/compass/sass_extensions/functions/colors.rbc +1279 -0
  88. data/lib/compass/sass_extensions/functions/constants.rbc +1921 -0
  89. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1966 -0
  90. data/lib/compass/sass_extensions/functions/display.rbc +1227 -0
  91. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  92. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  93. data/lib/compass/sass_extensions/functions/font_files.rbc +821 -0
  94. data/lib/compass/sass_extensions/functions/gradient_support.rb +18 -7
  95. data/lib/compass/sass_extensions/functions/gradient_support.rbc +14147 -0
  96. data/lib/compass/sass_extensions/functions/image_size.rbc +3152 -0
  97. data/lib/compass/sass_extensions/functions/inline_image.rb +3 -1
  98. data/lib/compass/sass_extensions/functions/inline_image.rbc +1678 -0
  99. data/lib/compass/sass_extensions/functions/lists.rbc +2601 -0
  100. data/lib/compass/sass_extensions/functions/math.rb +63 -0
  101. data/lib/compass/sass_extensions/functions/selectors.rbc +1592 -0
  102. data/lib/compass/sass_extensions/functions/sprites.rbc +3792 -0
  103. data/lib/compass/sass_extensions/functions/trig.rbc +811 -0
  104. data/lib/compass/sass_extensions/functions/urls.rbc +5248 -0
  105. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  106. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2169 -0
  107. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +660 -0
  108. data/lib/compass/sass_extensions/sprites.rbc +363 -0
  109. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  110. data/lib/compass/sass_extensions/sprites/engines.rbc +662 -0
  111. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +1074 -0
  112. data/lib/compass/sass_extensions/sprites/image.rbc +2961 -0
  113. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  114. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  115. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  116. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  117. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +1991 -0
  118. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  119. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  120. data/lib/compass/sprite_importer.rbc +3573 -0
  121. data/lib/compass/stats.rb +5 -0
  122. data/lib/compass/util.rbc +552 -0
  123. data/lib/compass/version.rbc +1245 -0
  124. data/test/fixtures/stylesheets/compass/css/background-clip.css +1 -1
  125. data/test/fixtures/stylesheets/compass/css/gradients.css +19 -369
  126. data/test/fixtures/stylesheets/compass/css/transition.css +44 -1
  127. data/test/fixtures/stylesheets/compass/css/utilities.css +1 -1
  128. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +1 -1
  129. data/test/fixtures/stylesheets/compass/sass/gradients.sass +8 -143
  130. data/test/fixtures/stylesheets/compass/sass/transition.scss +7 -1
  131. data/test/helpers/command_line.rbc +2820 -0
  132. data/test/helpers/diff.rbc +1104 -0
  133. data/test/helpers/io.rbc +962 -0
  134. data/test/helpers/rails.rbc +1116 -0
  135. data/test/helpers/test_case.rbc +1255 -0
  136. data/test/integrations/compass_test.rbc +6589 -0
  137. data/test/integrations/rails_integration_test.rbc +1342 -0
  138. data/test/integrations/sprites_test.rb +4 -4
  139. data/test/integrations/sprites_test.rbc +6192 -0
  140. data/test/test_helper.rbc +1694 -0
  141. data/test/units/actions_test.rbc +644 -0
  142. data/test/units/command_line_test.rbc +1532 -0
  143. data/test/units/compass_module_test.rb +36 -0
  144. data/test/units/compass_png_test.rbc +0 -0
  145. data/test/units/configuration_test.rbc +3833 -0
  146. data/test/units/rails_configuration_test.rbc +1032 -0
  147. data/test/units/sass_extensions_test.rb +13 -1
  148. data/test/units/sass_extensions_test.rbc +3586 -0
  149. data/test/units/sprites/engine_test.rbc +962 -0
  150. data/test/units/sprites/image_row_test.rbc +1578 -0
  151. data/test/units/sprites/image_test.rbc +2836 -0
  152. data/test/units/sprites/importer_test.rb +1 -1
  153. data/test/units/sprites/importer_test.rbc +2620 -0
  154. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  155. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  156. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  157. metadata +161 -15
  158. data/frameworks/compass/stylesheets/compass/css3/_gradient.scss +0 -99
  159. data/lib/compass/sass_extensions/functions/trig.rb +0 -28
@@ -0,0 +1,3640 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 39
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 45
40
+ 0
41
+ 5
42
+ 43
43
+ 6
44
+ 7
45
+ 7
46
+ 49
47
+ 8
48
+ 1
49
+ 15
50
+ 2
51
+ 11
52
+ I
53
+ 6
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ I
59
+ 0
60
+ n
61
+ p
62
+ 9
63
+ x
64
+ 7
65
+ Compass
66
+ x
67
+ 11
68
+ open_module
69
+ x
70
+ 15
71
+ __module_init__
72
+ M
73
+ 1
74
+ n
75
+ n
76
+ x
77
+ 7
78
+ Compass
79
+ i
80
+ 28
81
+ 5
82
+ 66
83
+ 99
84
+ 7
85
+ 0
86
+ 65
87
+ 49
88
+ 1
89
+ 2
90
+ 13
91
+ 99
92
+ 12
93
+ 7
94
+ 2
95
+ 12
96
+ 7
97
+ 3
98
+ 12
99
+ 65
100
+ 12
101
+ 49
102
+ 4
103
+ 4
104
+ 15
105
+ 49
106
+ 2
107
+ 0
108
+ 11
109
+ I
110
+ 6
111
+ I
112
+ 0
113
+ I
114
+ 0
115
+ I
116
+ 0
117
+ n
118
+ p
119
+ 5
120
+ x
121
+ 10
122
+ Frameworks
123
+ x
124
+ 11
125
+ open_module
126
+ x
127
+ 15
128
+ __module_init__
129
+ M
130
+ 1
131
+ n
132
+ n
133
+ x
134
+ 10
135
+ Frameworks
136
+ i
137
+ 179
138
+ 5
139
+ 66
140
+ 5
141
+ 5
142
+ 47
143
+ 49
144
+ 0
145
+ 1
146
+ 15
147
+ 65
148
+ 7
149
+ 1
150
+ 35
151
+ 0
152
+ 49
153
+ 2
154
+ 2
155
+ 15
156
+ 65
157
+ 7
158
+ 3
159
+ 45
160
+ 4
161
+ 5
162
+ 45
163
+ 6
164
+ 7
165
+ 49
166
+ 8
167
+ 0
168
+ 7
169
+ 9
170
+ 64
171
+ 49
172
+ 10
173
+ 2
174
+ 49
175
+ 2
176
+ 2
177
+ 15
178
+ 99
179
+ 7
180
+ 11
181
+ 1
182
+ 65
183
+ 49
184
+ 12
185
+ 3
186
+ 13
187
+ 99
188
+ 12
189
+ 7
190
+ 13
191
+ 12
192
+ 7
193
+ 14
194
+ 12
195
+ 65
196
+ 12
197
+ 49
198
+ 15
199
+ 4
200
+ 15
201
+ 49
202
+ 13
203
+ 0
204
+ 15
205
+ 99
206
+ 7
207
+ 16
208
+ 7
209
+ 17
210
+ 65
211
+ 67
212
+ 49
213
+ 18
214
+ 0
215
+ 49
216
+ 19
217
+ 4
218
+ 15
219
+ 99
220
+ 7
221
+ 20
222
+ 7
223
+ 21
224
+ 65
225
+ 67
226
+ 49
227
+ 18
228
+ 0
229
+ 49
230
+ 19
231
+ 4
232
+ 15
233
+ 99
234
+ 7
235
+ 22
236
+ 7
237
+ 23
238
+ 65
239
+ 67
240
+ 49
241
+ 18
242
+ 0
243
+ 49
244
+ 19
245
+ 4
246
+ 15
247
+ 99
248
+ 7
249
+ 24
250
+ 7
251
+ 25
252
+ 65
253
+ 67
254
+ 49
255
+ 18
256
+ 0
257
+ 49
258
+ 19
259
+ 4
260
+ 15
261
+ 99
262
+ 7
263
+ 26
264
+ 7
265
+ 27
266
+ 65
267
+ 67
268
+ 49
269
+ 18
270
+ 0
271
+ 49
272
+ 19
273
+ 4
274
+ 15
275
+ 99
276
+ 7
277
+ 28
278
+ 7
279
+ 29
280
+ 65
281
+ 67
282
+ 49
283
+ 18
284
+ 0
285
+ 49
286
+ 19
287
+ 4
288
+ 15
289
+ 99
290
+ 7
291
+ 30
292
+ 7
293
+ 31
294
+ 65
295
+ 67
296
+ 49
297
+ 18
298
+ 0
299
+ 49
300
+ 19
301
+ 4
302
+ 15
303
+ 99
304
+ 7
305
+ 32
306
+ 7
307
+ 33
308
+ 65
309
+ 67
310
+ 49
311
+ 18
312
+ 0
313
+ 49
314
+ 19
315
+ 4
316
+ 11
317
+ I
318
+ 6
319
+ I
320
+ 0
321
+ I
322
+ 0
323
+ I
324
+ 0
325
+ n
326
+ p
327
+ 34
328
+ x
329
+ 6
330
+ extend
331
+ x
332
+ 3
333
+ ALL
334
+ x
335
+ 9
336
+ const_set
337
+ x
338
+ 23
339
+ DEFAULT_FRAMEWORKS_PATH
340
+ x
341
+ 4
342
+ File
343
+ n
344
+ x
345
+ 7
346
+ Compass
347
+ n
348
+ x
349
+ 14
350
+ base_directory
351
+ s
352
+ 10
353
+ frameworks
354
+ x
355
+ 4
356
+ join
357
+ x
358
+ 9
359
+ Framework
360
+ x
361
+ 10
362
+ open_class
363
+ x
364
+ 14
365
+ __class_init__
366
+ M
367
+ 1
368
+ n
369
+ n
370
+ x
371
+ 9
372
+ Framework
373
+ i
374
+ 84
375
+ 5
376
+ 66
377
+ 5
378
+ 7
379
+ 0
380
+ 47
381
+ 49
382
+ 1
383
+ 1
384
+ 15
385
+ 5
386
+ 7
387
+ 2
388
+ 47
389
+ 49
390
+ 1
391
+ 1
392
+ 15
393
+ 5
394
+ 7
395
+ 3
396
+ 7
397
+ 4
398
+ 47
399
+ 49
400
+ 1
401
+ 2
402
+ 15
403
+ 99
404
+ 7
405
+ 5
406
+ 7
407
+ 6
408
+ 65
409
+ 67
410
+ 49
411
+ 7
412
+ 0
413
+ 49
414
+ 8
415
+ 4
416
+ 15
417
+ 99
418
+ 7
419
+ 9
420
+ 7
421
+ 10
422
+ 65
423
+ 67
424
+ 49
425
+ 7
426
+ 0
427
+ 49
428
+ 8
429
+ 4
430
+ 15
431
+ 99
432
+ 7
433
+ 11
434
+ 7
435
+ 12
436
+ 65
437
+ 67
438
+ 49
439
+ 7
440
+ 0
441
+ 49
442
+ 8
443
+ 4
444
+ 15
445
+ 99
446
+ 7
447
+ 13
448
+ 7
449
+ 14
450
+ 65
451
+ 67
452
+ 49
453
+ 7
454
+ 0
455
+ 49
456
+ 8
457
+ 4
458
+ 11
459
+ I
460
+ 5
461
+ I
462
+ 0
463
+ I
464
+ 0
465
+ I
466
+ 0
467
+ n
468
+ p
469
+ 15
470
+ x
471
+ 4
472
+ name
473
+ x
474
+ 13
475
+ attr_accessor
476
+ x
477
+ 4
478
+ path
479
+ x
480
+ 19
481
+ templates_directory
482
+ x
483
+ 21
484
+ stylesheets_directory
485
+ x
486
+ 10
487
+ initialize
488
+ M
489
+ 1
490
+ n
491
+ n
492
+ x
493
+ 10
494
+ initialize
495
+ i
496
+ 113
497
+ 20
498
+ 1
499
+ 49
500
+ 0
501
+ 0
502
+ 45
503
+ 1
504
+ 2
505
+ 49
506
+ 3
507
+ 1
508
+ 9
509
+ 20
510
+ 20
511
+ 1
512
+ 49
513
+ 4
514
+ 0
515
+ 8
516
+ 27
517
+ 44
518
+ 43
519
+ 1
520
+ 78
521
+ 49
522
+ 5
523
+ 1
524
+ 19
525
+ 2
526
+ 15
527
+ 5
528
+ 20
529
+ 2
530
+ 7
531
+ 6
532
+ 49
533
+ 7
534
+ 1
535
+ 13
536
+ 10
537
+ 47
538
+ 15
539
+ 20
540
+ 1
541
+ 49
542
+ 8
543
+ 0
544
+ 19
545
+ 3
546
+ 13
547
+ 18
548
+ 2
549
+ 47
550
+ 49
551
+ 9
552
+ 1
553
+ 15
554
+ 15
555
+ 20
556
+ 0
557
+ 38
558
+ 10
559
+ 15
560
+ 20
561
+ 2
562
+ 7
563
+ 11
564
+ 49
565
+ 7
566
+ 1
567
+ 13
568
+ 10
569
+ 85
570
+ 15
571
+ 45
572
+ 12
573
+ 13
574
+ 20
575
+ 3
576
+ 7
577
+ 14
578
+ 64
579
+ 49
580
+ 15
581
+ 2
582
+ 38
583
+ 16
584
+ 15
585
+ 20
586
+ 2
587
+ 7
588
+ 17
589
+ 49
590
+ 7
591
+ 1
592
+ 13
593
+ 10
594
+ 110
595
+ 15
596
+ 45
597
+ 12
598
+ 18
599
+ 20
600
+ 3
601
+ 7
602
+ 19
603
+ 64
604
+ 49
605
+ 15
606
+ 2
607
+ 38
608
+ 20
609
+ 11
610
+ I
611
+ 7
612
+ I
613
+ 4
614
+ I
615
+ 1
616
+ I
617
+ 1
618
+ I
619
+ 1
620
+ p
621
+ 21
622
+ x
623
+ 4
624
+ last
625
+ x
626
+ 4
627
+ Hash
628
+ n
629
+ x
630
+ 5
631
+ is_a?
632
+ x
633
+ 3
634
+ pop
635
+ x
636
+ 16
637
+ new_from_literal
638
+ x
639
+ 4
640
+ path
641
+ x
642
+ 2
643
+ []
644
+ x
645
+ 5
646
+ shift
647
+ x
648
+ 5
649
+ path=
650
+ x
651
+ 5
652
+ @name
653
+ x
654
+ 19
655
+ templates_directory
656
+ x
657
+ 4
658
+ File
659
+ n
660
+ s
661
+ 9
662
+ templates
663
+ x
664
+ 4
665
+ join
666
+ x
667
+ 20
668
+ @templates_directory
669
+ x
670
+ 21
671
+ stylesheets_directory
672
+ n
673
+ s
674
+ 11
675
+ stylesheets
676
+ x
677
+ 22
678
+ @stylesheets_directory
679
+ p
680
+ 17
681
+ I
682
+ -1
683
+ I
684
+ c
685
+ I
686
+ 0
687
+ I
688
+ d
689
+ I
690
+ 1b
691
+ I
692
+ d
693
+ I
694
+ 1e
695
+ I
696
+ 7f
697
+ I
698
+ 1f
699
+ I
700
+ e
701
+ I
702
+ 3a
703
+ I
704
+ f
705
+ I
706
+ 3f
707
+ I
708
+ 10
709
+ I
710
+ 58
711
+ I
712
+ 11
713
+ I
714
+ 71
715
+ x
716
+ 57
717
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
718
+ p
719
+ 4
720
+ x
721
+ 4
722
+ name
723
+ x
724
+ 9
725
+ arguments
726
+ x
727
+ 7
728
+ options
729
+ x
730
+ 4
731
+ path
732
+ x
733
+ 17
734
+ method_visibility
735
+ x
736
+ 15
737
+ add_defn_method
738
+ x
739
+ 20
740
+ template_directories
741
+ M
742
+ 1
743
+ n
744
+ n
745
+ x
746
+ 20
747
+ template_directories
748
+ i
749
+ 24
750
+ 45
751
+ 0
752
+ 1
753
+ 45
754
+ 2
755
+ 3
756
+ 5
757
+ 48
758
+ 4
759
+ 7
760
+ 5
761
+ 64
762
+ 49
763
+ 6
764
+ 2
765
+ 49
766
+ 7
767
+ 1
768
+ 56
769
+ 8
770
+ 50
771
+ 9
772
+ 0
773
+ 11
774
+ I
775
+ 4
776
+ I
777
+ 0
778
+ I
779
+ 0
780
+ I
781
+ 0
782
+ n
783
+ p
784
+ 10
785
+ x
786
+ 3
787
+ Dir
788
+ n
789
+ x
790
+ 4
791
+ File
792
+ n
793
+ x
794
+ 19
795
+ templates_directory
796
+ s
797
+ 1
798
+ *
799
+ x
800
+ 4
801
+ join
802
+ x
803
+ 4
804
+ glob
805
+ M
806
+ 1
807
+ p
808
+ 2
809
+ x
810
+ 9
811
+ for_block
812
+ t
813
+ n
814
+ x
815
+ 20
816
+ template_directories
817
+ i
818
+ 13
819
+ 57
820
+ 19
821
+ 0
822
+ 15
823
+ 45
824
+ 0
825
+ 1
826
+ 20
827
+ 0
828
+ 49
829
+ 2
830
+ 1
831
+ 11
832
+ I
833
+ 4
834
+ I
835
+ 1
836
+ I
837
+ 1
838
+ I
839
+ 1
840
+ n
841
+ p
842
+ 3
843
+ x
844
+ 4
845
+ File
846
+ n
847
+ x
848
+ 8
849
+ basename
850
+ p
851
+ 3
852
+ I
853
+ 0
854
+ I
855
+ 14
856
+ I
857
+ d
858
+ x
859
+ 57
860
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
861
+ p
862
+ 1
863
+ x
864
+ 1
865
+ f
866
+ x
867
+ 3
868
+ map
869
+ p
870
+ 5
871
+ I
872
+ -1
873
+ I
874
+ 13
875
+ I
876
+ 0
877
+ I
878
+ 14
879
+ I
880
+ 18
881
+ x
882
+ 57
883
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
884
+ p
885
+ 0
886
+ x
887
+ 13
888
+ manifest_file
889
+ M
890
+ 1
891
+ n
892
+ n
893
+ x
894
+ 13
895
+ manifest_file
896
+ i
897
+ 18
898
+ 45
899
+ 0
900
+ 1
901
+ 5
902
+ 48
903
+ 2
904
+ 20
905
+ 0
906
+ 49
907
+ 3
908
+ 0
909
+ 7
910
+ 4
911
+ 64
912
+ 49
913
+ 5
914
+ 3
915
+ 11
916
+ I
917
+ 5
918
+ I
919
+ 1
920
+ I
921
+ 1
922
+ I
923
+ 1
924
+ n
925
+ p
926
+ 6
927
+ x
928
+ 4
929
+ File
930
+ n
931
+ x
932
+ 19
933
+ templates_directory
934
+ x
935
+ 4
936
+ to_s
937
+ s
938
+ 11
939
+ manifest.rb
940
+ x
941
+ 4
942
+ join
943
+ p
944
+ 5
945
+ I
946
+ -1
947
+ I
948
+ 16
949
+ I
950
+ 0
951
+ I
952
+ 17
953
+ I
954
+ 12
955
+ x
956
+ 57
957
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
958
+ p
959
+ 1
960
+ x
961
+ 7
962
+ pattern
963
+ x
964
+ 8
965
+ manifest
966
+ M
967
+ 1
968
+ n
969
+ n
970
+ x
971
+ 8
972
+ manifest
973
+ i
974
+ 90
975
+ 23
976
+ 1
977
+ 10
978
+ 14
979
+ 44
980
+ 43
981
+ 0
982
+ 78
983
+ 49
984
+ 1
985
+ 1
986
+ 19
987
+ 1
988
+ 15
989
+ 20
990
+ 1
991
+ 7
992
+ 2
993
+ 14
994
+ 2
995
+ 49
996
+ 3
997
+ 1
998
+ 13
999
+ 10
1000
+ 38
1001
+ 15
1002
+ 20
1003
+ 0
1004
+ 13
1005
+ 18
1006
+ 3
1007
+ 49
1008
+ 4
1009
+ 2
1010
+ 15
1011
+ 8
1012
+ 42
1013
+ 18
1014
+ 2
1015
+ 16
1016
+ 2
1017
+ 15
1018
+ 45
1019
+ 5
1020
+ 6
1021
+ 43
1022
+ 7
1023
+ 43
1024
+ 8
1025
+ 13
1026
+ 71
1027
+ 9
1028
+ 47
1029
+ 9
1030
+ 77
1031
+ 47
1032
+ 49
1033
+ 10
1034
+ 0
1035
+ 13
1036
+ 5
1037
+ 20
1038
+ 0
1039
+ 47
1040
+ 49
1041
+ 11
1042
+ 1
1043
+ 20
1044
+ 1
1045
+ 47
1046
+ 49
1047
+ 12
1048
+ 2
1049
+ 15
1050
+ 8
1051
+ 89
1052
+ 5
1053
+ 20
1054
+ 0
1055
+ 47
1056
+ 49
1057
+ 11
1058
+ 1
1059
+ 20
1060
+ 1
1061
+ 49
1062
+ 9
1063
+ 2
1064
+ 11
1065
+ I
1066
+ 6
1067
+ I
1068
+ 2
1069
+ I
1070
+ 1
1071
+ I
1072
+ 2
1073
+ n
1074
+ p
1075
+ 13
1076
+ x
1077
+ 4
1078
+ Hash
1079
+ x
1080
+ 16
1081
+ new_from_literal
1082
+ x
1083
+ 12
1084
+ pattern_name
1085
+ x
1086
+ 2
1087
+ []
1088
+ x
1089
+ 3
1090
+ []=
1091
+ x
1092
+ 7
1093
+ Compass
1094
+ n
1095
+ x
1096
+ 10
1097
+ Installers
1098
+ x
1099
+ 8
1100
+ Manifest
1101
+ x
1102
+ 3
1103
+ new
1104
+ x
1105
+ 8
1106
+ allocate
1107
+ x
1108
+ 13
1109
+ manifest_file
1110
+ x
1111
+ 10
1112
+ initialize
1113
+ p
1114
+ 7
1115
+ I
1116
+ -1
1117
+ I
1118
+ 19
1119
+ I
1120
+ e
1121
+ I
1122
+ 1a
1123
+ I
1124
+ 2b
1125
+ I
1126
+ 1b
1127
+ I
1128
+ 5a
1129
+ x
1130
+ 57
1131
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1132
+ p
1133
+ 2
1134
+ x
1135
+ 7
1136
+ pattern
1137
+ x
1138
+ 7
1139
+ options
1140
+ p
1141
+ 15
1142
+ I
1143
+ 2
1144
+ I
1145
+ 9
1146
+ I
1147
+ a
1148
+ I
1149
+ a
1150
+ I
1151
+ 12
1152
+ I
1153
+ b
1154
+ I
1155
+ 1c
1156
+ I
1157
+ c
1158
+ I
1159
+ 2a
1160
+ I
1161
+ 13
1162
+ I
1163
+ 38
1164
+ I
1165
+ 16
1166
+ I
1167
+ 46
1168
+ I
1169
+ 19
1170
+ I
1171
+ 54
1172
+ x
1173
+ 57
1174
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1175
+ p
1176
+ 0
1177
+ x
1178
+ 13
1179
+ attach_method
1180
+ x
1181
+ 19
1182
+ detect_registration
1183
+ M
1184
+ 1
1185
+ n
1186
+ n
1187
+ x
1188
+ 19
1189
+ detect_registration
1190
+ i
1191
+ 31
1192
+ 29
1193
+ 19
1194
+ 1
1195
+ 26
1196
+ 93
1197
+ 0
1198
+ 15
1199
+ 1
1200
+ 38
1201
+ 0
1202
+ 15
1203
+ 60
1204
+ 0
1205
+ 15
1206
+ 39
1207
+ 0
1208
+ 30
1209
+ 8
1210
+ 26
1211
+ 26
1212
+ 1
1213
+ 38
1214
+ 0
1215
+ 15
1216
+ 27
1217
+ 34
1218
+ 1
1219
+ 38
1220
+ 0
1221
+ 15
1222
+ 11
1223
+ I
1224
+ 3
1225
+ I
1226
+ 0
1227
+ I
1228
+ 0
1229
+ I
1230
+ 0
1231
+ n
1232
+ p
1233
+ 1
1234
+ x
1235
+ 11
1236
+ @registered
1237
+ p
1238
+ 13
1239
+ I
1240
+ -1
1241
+ I
1242
+ 1f
1243
+ I
1244
+ 0
1245
+ I
1246
+ 20
1247
+ I
1248
+ b
1249
+ I
1250
+ 21
1251
+ I
1252
+ e
1253
+ I
1254
+ 22
1255
+ I
1256
+ 14
1257
+ I
1258
+ 24
1259
+ I
1260
+ 1a
1261
+ I
1262
+ 24
1263
+ I
1264
+ 1f
1265
+ x
1266
+ 57
1267
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1268
+ p
1269
+ 0
1270
+ x
1271
+ 17
1272
+ method_visibility
1273
+ x
1274
+ 15
1275
+ add_defn_method
1276
+ x
1277
+ 8
1278
+ register
1279
+ M
1280
+ 1
1281
+ n
1282
+ n
1283
+ x
1284
+ 8
1285
+ register
1286
+ i
1287
+ 57
1288
+ 45
1289
+ 0
1290
+ 1
1291
+ 20
1292
+ 0
1293
+ 20
1294
+ 1
1295
+ 36
1296
+ 1
1297
+ 51
1298
+ 2
1299
+ 1
1300
+ 38
1301
+ 3
1302
+ 15
1303
+ 45
1304
+ 4
1305
+ 5
1306
+ 5
1307
+ 20
1308
+ 0
1309
+ 47
1310
+ 49
1311
+ 6
1312
+ 1
1313
+ 49
1314
+ 7
1315
+ 1
1316
+ 19
1317
+ 2
1318
+ 9
1319
+ 48
1320
+ 45
1321
+ 4
1322
+ 8
1323
+ 20
1324
+ 2
1325
+ 39
1326
+ 3
1327
+ 13
1328
+ 18
1329
+ 3
1330
+ 49
1331
+ 9
1332
+ 2
1333
+ 15
1334
+ 8
1335
+ 56
1336
+ 45
1337
+ 4
1338
+ 10
1339
+ 39
1340
+ 3
1341
+ 49
1342
+ 11
1343
+ 1
1344
+ 11
1345
+ I
1346
+ 7
1347
+ I
1348
+ 3
1349
+ I
1350
+ 1
1351
+ I
1352
+ 1
1353
+ I
1354
+ 1
1355
+ p
1356
+ 12
1357
+ x
1358
+ 9
1359
+ Framework
1360
+ n
1361
+ x
1362
+ 3
1363
+ new
1364
+ x
1365
+ 11
1366
+ @registered
1367
+ x
1368
+ 3
1369
+ ALL
1370
+ n
1371
+ x
1372
+ 2
1373
+ []
1374
+ x
1375
+ 5
1376
+ index
1377
+ n
1378
+ x
1379
+ 3
1380
+ []=
1381
+ n
1382
+ x
1383
+ 2
1384
+ <<
1385
+ p
1386
+ 13
1387
+ I
1388
+ -1
1389
+ I
1390
+ 27
1391
+ I
1392
+ 0
1393
+ I
1394
+ 28
1395
+ I
1396
+ f
1397
+ I
1398
+ 29
1399
+ I
1400
+ 20
1401
+ I
1402
+ 2a
1403
+ I
1404
+ 30
1405
+ I
1406
+ 2c
1407
+ I
1408
+ 38
1409
+ I
1410
+ 0
1411
+ I
1412
+ 39
1413
+ x
1414
+ 57
1415
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1416
+ p
1417
+ 3
1418
+ x
1419
+ 4
1420
+ name
1421
+ x
1422
+ 9
1423
+ arguments
1424
+ x
1425
+ 3
1426
+ idx
1427
+ x
1428
+ 2
1429
+ []
1430
+ M
1431
+ 1
1432
+ n
1433
+ n
1434
+ x
1435
+ 2
1436
+ []
1437
+ i
1438
+ 9
1439
+ 45
1440
+ 0
1441
+ 1
1442
+ 56
1443
+ 2
1444
+ 50
1445
+ 3
1446
+ 0
1447
+ 11
1448
+ I
1449
+ 3
1450
+ I
1451
+ 1
1452
+ I
1453
+ 1
1454
+ I
1455
+ 1
1456
+ n
1457
+ p
1458
+ 4
1459
+ x
1460
+ 3
1461
+ ALL
1462
+ n
1463
+ M
1464
+ 1
1465
+ p
1466
+ 2
1467
+ x
1468
+ 9
1469
+ for_block
1470
+ t
1471
+ n
1472
+ x
1473
+ 2
1474
+ []
1475
+ i
1476
+ 21
1477
+ 57
1478
+ 19
1479
+ 0
1480
+ 15
1481
+ 20
1482
+ 0
1483
+ 49
1484
+ 0
1485
+ 0
1486
+ 49
1487
+ 1
1488
+ 0
1489
+ 21
1490
+ 1
1491
+ 0
1492
+ 49
1493
+ 1
1494
+ 0
1495
+ 83
1496
+ 2
1497
+ 11
1498
+ I
1499
+ 4
1500
+ I
1501
+ 1
1502
+ I
1503
+ 1
1504
+ I
1505
+ 1
1506
+ n
1507
+ p
1508
+ 3
1509
+ x
1510
+ 4
1511
+ name
1512
+ x
1513
+ 4
1514
+ to_s
1515
+ x
1516
+ 2
1517
+ ==
1518
+ p
1519
+ 3
1520
+ I
1521
+ 0
1522
+ I
1523
+ 31
1524
+ I
1525
+ 15
1526
+ x
1527
+ 57
1528
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1529
+ p
1530
+ 1
1531
+ x
1532
+ 1
1533
+ f
1534
+ x
1535
+ 6
1536
+ detect
1537
+ p
1538
+ 5
1539
+ I
1540
+ -1
1541
+ I
1542
+ 30
1543
+ I
1544
+ 0
1545
+ I
1546
+ 31
1547
+ I
1548
+ 9
1549
+ x
1550
+ 57
1551
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1552
+ p
1553
+ 1
1554
+ x
1555
+ 4
1556
+ name
1557
+ x
1558
+ 8
1559
+ discover
1560
+ M
1561
+ 1
1562
+ n
1563
+ n
1564
+ x
1565
+ 8
1566
+ discover
1567
+ i
1568
+ 87
1569
+ 20
1570
+ 0
1571
+ 7
1572
+ 0
1573
+ 83
1574
+ 1
1575
+ 9
1576
+ 15
1577
+ 45
1578
+ 2
1579
+ 3
1580
+ 19
1581
+ 0
1582
+ 8
1583
+ 16
1584
+ 1
1585
+ 15
1586
+ 20
1587
+ 0
1588
+ 45
1589
+ 4
1590
+ 5
1591
+ 49
1592
+ 6
1593
+ 1
1594
+ 9
1595
+ 30
1596
+ 1
1597
+ 8
1598
+ 60
1599
+ 45
1600
+ 4
1601
+ 7
1602
+ 13
1603
+ 71
1604
+ 8
1605
+ 47
1606
+ 9
1607
+ 53
1608
+ 47
1609
+ 49
1610
+ 9
1611
+ 0
1612
+ 13
1613
+ 20
1614
+ 0
1615
+ 47
1616
+ 49
1617
+ 10
1618
+ 1
1619
+ 15
1620
+ 8
1621
+ 58
1622
+ 20
1623
+ 0
1624
+ 49
1625
+ 8
1626
+ 1
1627
+ 19
1628
+ 0
1629
+ 15
1630
+ 20
1631
+ 0
1632
+ 49
1633
+ 11
1634
+ 0
1635
+ 56
1636
+ 12
1637
+ 50
1638
+ 13
1639
+ 0
1640
+ 56
1641
+ 14
1642
+ 50
1643
+ 15
1644
+ 0
1645
+ 19
1646
+ 1
1647
+ 15
1648
+ 20
1649
+ 1
1650
+ 56
1651
+ 16
1652
+ 50
1653
+ 17
1654
+ 0
1655
+ 11
1656
+ I
1657
+ 5
1658
+ I
1659
+ 2
1660
+ I
1661
+ 1
1662
+ I
1663
+ 1
1664
+ n
1665
+ p
1666
+ 18
1667
+ x
1668
+ 8
1669
+ defaults
1670
+ x
1671
+ 2
1672
+ ==
1673
+ x
1674
+ 23
1675
+ DEFAULT_FRAMEWORKS_PATH
1676
+ n
1677
+ x
1678
+ 3
1679
+ Dir
1680
+ n
1681
+ x
1682
+ 5
1683
+ is_a?
1684
+ n
1685
+ x
1686
+ 3
1687
+ new
1688
+ x
1689
+ 8
1690
+ allocate
1691
+ x
1692
+ 10
1693
+ initialize
1694
+ x
1695
+ 7
1696
+ entries
1697
+ M
1698
+ 1
1699
+ p
1700
+ 2
1701
+ x
1702
+ 9
1703
+ for_block
1704
+ t
1705
+ n
1706
+ x
1707
+ 8
1708
+ discover
1709
+ i
1710
+ 28
1711
+ 57
1712
+ 19
1713
+ 0
1714
+ 15
1715
+ 20
1716
+ 0
1717
+ 7
1718
+ 0
1719
+ 13
1720
+ 70
1721
+ 9
1722
+ 24
1723
+ 15
1724
+ 44
1725
+ 43
1726
+ 1
1727
+ 7
1728
+ 2
1729
+ 78
1730
+ 49
1731
+ 3
1732
+ 2
1733
+ 6
1734
+ 0
1735
+ 49
1736
+ 4
1737
+ 1
1738
+ 11
1739
+ I
1740
+ 6
1741
+ I
1742
+ 1
1743
+ I
1744
+ 1
1745
+ I
1746
+ 1
1747
+ n
1748
+ p
1749
+ 5
1750
+ n
1751
+ x
1752
+ 6
1753
+ Regexp
1754
+ s
1755
+ 3
1756
+ ^\.
1757
+ x
1758
+ 3
1759
+ new
1760
+ x
1761
+ 2
1762
+ =~
1763
+ p
1764
+ 3
1765
+ I
1766
+ 0
1767
+ I
1768
+ 37
1769
+ I
1770
+ 1c
1771
+ x
1772
+ 57
1773
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1774
+ p
1775
+ 1
1776
+ x
1777
+ 1
1778
+ e
1779
+ x
1780
+ 6
1781
+ reject
1782
+ M
1783
+ 1
1784
+ p
1785
+ 2
1786
+ x
1787
+ 9
1788
+ for_block
1789
+ t
1790
+ n
1791
+ x
1792
+ 8
1793
+ discover
1794
+ i
1795
+ 47
1796
+ 57
1797
+ 19
1798
+ 0
1799
+ 15
1800
+ 20
1801
+ 0
1802
+ 7
1803
+ 0
1804
+ 13
1805
+ 70
1806
+ 9
1807
+ 24
1808
+ 15
1809
+ 44
1810
+ 43
1811
+ 1
1812
+ 7
1813
+ 2
1814
+ 78
1815
+ 49
1816
+ 3
1817
+ 2
1818
+ 6
1819
+ 0
1820
+ 49
1821
+ 4
1822
+ 1
1823
+ 9
1824
+ 44
1825
+ 20
1826
+ 0
1827
+ 44
1828
+ 43
1829
+ 5
1830
+ 79
1831
+ 77
1832
+ 49
1833
+ 3
1834
+ 2
1835
+ 49
1836
+ 6
1837
+ 1
1838
+ 8
1839
+ 46
1840
+ 20
1841
+ 0
1842
+ 11
1843
+ I
1844
+ 6
1845
+ I
1846
+ 1
1847
+ I
1848
+ 1
1849
+ I
1850
+ 1
1851
+ n
1852
+ p
1853
+ 7
1854
+ n
1855
+ x
1856
+ 6
1857
+ Regexp
1858
+ s
1859
+ 2
1860
+ ^_
1861
+ x
1862
+ 3
1863
+ new
1864
+ x
1865
+ 2
1866
+ =~
1867
+ x
1868
+ 5
1869
+ Range
1870
+ x
1871
+ 2
1872
+ []
1873
+ p
1874
+ 5
1875
+ I
1876
+ 0
1877
+ I
1878
+ 37
1879
+ I
1880
+ 2e
1881
+ I
1882
+ 0
1883
+ I
1884
+ 2f
1885
+ x
1886
+ 57
1887
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1888
+ p
1889
+ 1
1890
+ x
1891
+ 1
1892
+ n
1893
+ x
1894
+ 7
1895
+ sort_by
1896
+ M
1897
+ 1
1898
+ p
1899
+ 2
1900
+ x
1901
+ 9
1902
+ for_block
1903
+ t
1904
+ n
1905
+ x
1906
+ 8
1907
+ discover
1908
+ i
1909
+ 24
1910
+ 57
1911
+ 19
1912
+ 0
1913
+ 15
1914
+ 5
1915
+ 45
1916
+ 0
1917
+ 1
1918
+ 21
1919
+ 1
1920
+ 0
1921
+ 49
1922
+ 2
1923
+ 0
1924
+ 20
1925
+ 0
1926
+ 49
1927
+ 3
1928
+ 2
1929
+ 47
1930
+ 49
1931
+ 4
1932
+ 1
1933
+ 11
1934
+ I
1935
+ 6
1936
+ I
1937
+ 1
1938
+ I
1939
+ 1
1940
+ I
1941
+ 1
1942
+ n
1943
+ p
1944
+ 5
1945
+ x
1946
+ 4
1947
+ File
1948
+ n
1949
+ x
1950
+ 4
1951
+ path
1952
+ x
1953
+ 4
1954
+ join
1955
+ x
1956
+ 18
1957
+ register_directory
1958
+ p
1959
+ 5
1960
+ I
1961
+ 0
1962
+ I
1963
+ 38
1964
+ I
1965
+ 4
1966
+ I
1967
+ 39
1968
+ I
1969
+ 18
1970
+ x
1971
+ 57
1972
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1973
+ p
1974
+ 1
1975
+ x
1976
+ 9
1977
+ framework
1978
+ x
1979
+ 4
1980
+ each
1981
+ p
1982
+ 15
1983
+ I
1984
+ -1
1985
+ I
1986
+ 34
1987
+ I
1988
+ 0
1989
+ I
1990
+ 35
1991
+ I
1992
+ 10
1993
+ I
1994
+ 0
1995
+ I
1996
+ 11
1997
+ I
1998
+ 36
1999
+ I
2000
+ 3c
2001
+ I
2002
+ 0
2003
+ I
2004
+ 3d
2005
+ I
2006
+ 37
2007
+ I
2008
+ 4f
2009
+ I
2010
+ 38
2011
+ I
2012
+ 57
2013
+ x
2014
+ 57
2015
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2016
+ p
2017
+ 2
2018
+ x
2019
+ 20
2020
+ frameworks_directory
2021
+ x
2022
+ 4
2023
+ dirs
2024
+ x
2025
+ 18
2026
+ register_directory
2027
+ M
2028
+ 1
2029
+ n
2030
+ n
2031
+ x
2032
+ 18
2033
+ register_directory
2034
+ i
2035
+ 104
2036
+ 45
2037
+ 0
2038
+ 1
2039
+ 20
2040
+ 0
2041
+ 7
2042
+ 2
2043
+ 64
2044
+ 49
2045
+ 3
2046
+ 2
2047
+ 45
2048
+ 0
2049
+ 4
2050
+ 20
2051
+ 0
2052
+ 7
2053
+ 5
2054
+ 64
2055
+ 45
2056
+ 0
2057
+ 6
2058
+ 20
2059
+ 0
2060
+ 49
2061
+ 7
2062
+ 1
2063
+ 7
2064
+ 8
2065
+ 64
2066
+ 81
2067
+ 9
2068
+ 49
2069
+ 3
2070
+ 3
2071
+ 45
2072
+ 0
2073
+ 10
2074
+ 20
2075
+ 0
2076
+ 45
2077
+ 0
2078
+ 11
2079
+ 20
2080
+ 0
2081
+ 49
2082
+ 7
2083
+ 1
2084
+ 7
2085
+ 8
2086
+ 64
2087
+ 81
2088
+ 9
2089
+ 49
2090
+ 3
2091
+ 2
2092
+ 35
2093
+ 3
2094
+ 19
2095
+ 1
2096
+ 15
2097
+ 20
2098
+ 1
2099
+ 56
2100
+ 12
2101
+ 50
2102
+ 13
2103
+ 0
2104
+ 19
2105
+ 2
2106
+ 15
2107
+ 5
2108
+ 56
2109
+ 14
2110
+ 47
2111
+ 50
2112
+ 15
2113
+ 0
2114
+ 19
2115
+ 3
2116
+ 15
2117
+ 20
2118
+ 3
2119
+ 9
2120
+ 88
2121
+ 1
2122
+ 8
2123
+ 103
2124
+ 5
2125
+ 45
2126
+ 0
2127
+ 16
2128
+ 20
2129
+ 0
2130
+ 49
2131
+ 7
2132
+ 1
2133
+ 20
2134
+ 0
2135
+ 47
2136
+ 49
2137
+ 17
2138
+ 2
2139
+ 11
2140
+ I
2141
+ a
2142
+ I
2143
+ 4
2144
+ I
2145
+ 1
2146
+ I
2147
+ 1
2148
+ n
2149
+ p
2150
+ 18
2151
+ x
2152
+ 4
2153
+ File
2154
+ n
2155
+ s
2156
+ 15
2157
+ compass_init.rb
2158
+ x
2159
+ 4
2160
+ join
2161
+ n
2162
+ s
2163
+ 3
2164
+ lib
2165
+ n
2166
+ x
2167
+ 8
2168
+ basename
2169
+ s
2170
+ 3
2171
+ .rb
2172
+ x
2173
+ 1
2174
+ +
2175
+ n
2176
+ n
2177
+ M
2178
+ 1
2179
+ p
2180
+ 2
2181
+ x
2182
+ 9
2183
+ for_block
2184
+ t
2185
+ n
2186
+ x
2187
+ 18
2188
+ register_directory
2189
+ i
2190
+ 13
2191
+ 57
2192
+ 19
2193
+ 0
2194
+ 15
2195
+ 45
2196
+ 0
2197
+ 1
2198
+ 20
2199
+ 0
2200
+ 49
2201
+ 2
2202
+ 1
2203
+ 11
2204
+ I
2205
+ 4
2206
+ I
2207
+ 1
2208
+ I
2209
+ 1
2210
+ I
2211
+ 1
2212
+ n
2213
+ p
2214
+ 3
2215
+ x
2216
+ 4
2217
+ File
2218
+ n
2219
+ x
2220
+ 7
2221
+ exists?
2222
+ p
2223
+ 3
2224
+ I
2225
+ 0
2226
+ I
2227
+ 43
2228
+ I
2229
+ d
2230
+ x
2231
+ 57
2232
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2233
+ p
2234
+ 1
2235
+ x
2236
+ 1
2237
+ l
2238
+ x
2239
+ 6
2240
+ detect
2241
+ M
2242
+ 1
2243
+ p
2244
+ 2
2245
+ x
2246
+ 9
2247
+ for_block
2248
+ t
2249
+ n
2250
+ x
2251
+ 18
2252
+ register_directory
2253
+ i
2254
+ 17
2255
+ 21
2256
+ 1
2257
+ 2
2258
+ 9
2259
+ 15
2260
+ 5
2261
+ 21
2262
+ 1
2263
+ 2
2264
+ 47
2265
+ 49
2266
+ 0
2267
+ 1
2268
+ 8
2269
+ 16
2270
+ 1
2271
+ 11
2272
+ I
2273
+ 3
2274
+ I
2275
+ 0
2276
+ I
2277
+ 0
2278
+ I
2279
+ 0
2280
+ I
2281
+ -2
2282
+ p
2283
+ 1
2284
+ x
2285
+ 7
2286
+ require
2287
+ p
2288
+ 5
2289
+ I
2290
+ 0
2291
+ I
2292
+ 45
2293
+ I
2294
+ 10
2295
+ I
2296
+ 0
2297
+ I
2298
+ 11
2299
+ x
2300
+ 57
2301
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2302
+ p
2303
+ 0
2304
+ x
2305
+ 19
2306
+ detect_registration
2307
+ n
2308
+ x
2309
+ 8
2310
+ register
2311
+ p
2312
+ 21
2313
+ I
2314
+ -1
2315
+ I
2316
+ 3d
2317
+ I
2318
+ 0
2319
+ I
2320
+ 3f
2321
+ I
2322
+ b
2323
+ I
2324
+ 40
2325
+ I
2326
+ 23
2327
+ I
2328
+ 41
2329
+ I
2330
+ 3a
2331
+ I
2332
+ 3e
2333
+ I
2334
+ 3d
2335
+ I
2336
+ 43
2337
+ I
2338
+ 47
2339
+ I
2340
+ 44
2341
+ I
2342
+ 51
2343
+ I
2344
+ 47
2345
+ I
2346
+ 58
2347
+ I
2348
+ 48
2349
+ I
2350
+ 67
2351
+ I
2352
+ 0
2353
+ I
2354
+ 68
2355
+ x
2356
+ 57
2357
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2358
+ p
2359
+ 4
2360
+ x
2361
+ 9
2362
+ directory
2363
+ x
2364
+ 7
2365
+ loaders
2366
+ x
2367
+ 6
2368
+ loader
2369
+ x
2370
+ 20
2371
+ registered_framework
2372
+ x
2373
+ 16
2374
+ template_exists?
2375
+ M
2376
+ 1
2377
+ n
2378
+ n
2379
+ x
2380
+ 16
2381
+ template_exists?
2382
+ i
2383
+ 85
2384
+ 20
2385
+ 0
2386
+ 7
2387
+ 0
2388
+ 13
2389
+ 70
2390
+ 9
2391
+ 20
2392
+ 15
2393
+ 44
2394
+ 43
2395
+ 1
2396
+ 7
2397
+ 2
2398
+ 78
2399
+ 49
2400
+ 3
2401
+ 2
2402
+ 6
2403
+ 0
2404
+ 80
2405
+ 49
2406
+ 4
2407
+ 2
2408
+ 97
2409
+ 37
2410
+ 19
2411
+ 1
2412
+ 15
2413
+ 37
2414
+ 19
2415
+ 0
2416
+ 15
2417
+ 15
2418
+ 2
2419
+ 15
2420
+ 20
2421
+ 0
2422
+ 13
2423
+ 10
2424
+ 47
2425
+ 15
2426
+ 7
2427
+ 5
2428
+ 64
2429
+ 19
2430
+ 0
2431
+ 15
2432
+ 5
2433
+ 20
2434
+ 1
2435
+ 47
2436
+ 49
2437
+ 6
2438
+ 1
2439
+ 19
2440
+ 2
2441
+ 9
2442
+ 81
2443
+ 45
2444
+ 7
2445
+ 8
2446
+ 45
2447
+ 7
2448
+ 9
2449
+ 20
2450
+ 2
2451
+ 49
2452
+ 10
2453
+ 0
2454
+ 20
2455
+ 0
2456
+ 49
2457
+ 11
2458
+ 2
2459
+ 49
2460
+ 12
2461
+ 1
2462
+ 11
2463
+ 8
2464
+ 82
2465
+ 1
2466
+ 15
2467
+ 3
2468
+ 11
2469
+ I
2470
+ 7
2471
+ I
2472
+ 3
2473
+ I
2474
+ 1
2475
+ I
2476
+ 1
2477
+ n
2478
+ p
2479
+ 13
2480
+ n
2481
+ x
2482
+ 6
2483
+ Regexp
2484
+ s
2485
+ 1
2486
+ /
2487
+ x
2488
+ 3
2489
+ new
2490
+ x
2491
+ 5
2492
+ split
2493
+ s
2494
+ 7
2495
+ project
2496
+ x
2497
+ 2
2498
+ []
2499
+ x
2500
+ 4
2501
+ File
2502
+ n
2503
+ n
2504
+ x
2505
+ 19
2506
+ templates_directory
2507
+ x
2508
+ 4
2509
+ join
2510
+ x
2511
+ 10
2512
+ directory?
2513
+ p
2514
+ 17
2515
+ I
2516
+ -1
2517
+ I
2518
+ 4c
2519
+ I
2520
+ 0
2521
+ I
2522
+ 4d
2523
+ I
2524
+ 24
2525
+ I
2526
+ 4e
2527
+ I
2528
+ 30
2529
+ I
2530
+ 4f
2531
+ I
2532
+ 3b
2533
+ I
2534
+ 50
2535
+ I
2536
+ 51
2537
+ I
2538
+ 4f
2539
+ I
2540
+ 52
2541
+ I
2542
+ 0
2543
+ I
2544
+ 53
2545
+ I
2546
+ 52
2547
+ I
2548
+ 55
2549
+ x
2550
+ 57
2551
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2552
+ p
2553
+ 3
2554
+ x
2555
+ 8
2556
+ template
2557
+ x
2558
+ 14
2559
+ framework_name
2560
+ x
2561
+ 9
2562
+ framework
2563
+ x
2564
+ 14
2565
+ template_usage
2566
+ M
2567
+ 1
2568
+ n
2569
+ n
2570
+ x
2571
+ 14
2572
+ template_usage
2573
+ i
2574
+ 143
2575
+ 20
2576
+ 0
2577
+ 7
2578
+ 0
2579
+ 13
2580
+ 70
2581
+ 9
2582
+ 20
2583
+ 15
2584
+ 44
2585
+ 43
2586
+ 1
2587
+ 7
2588
+ 2
2589
+ 78
2590
+ 49
2591
+ 3
2592
+ 2
2593
+ 6
2594
+ 0
2595
+ 80
2596
+ 49
2597
+ 4
2598
+ 2
2599
+ 97
2600
+ 37
2601
+ 19
2602
+ 1
2603
+ 15
2604
+ 37
2605
+ 19
2606
+ 0
2607
+ 15
2608
+ 15
2609
+ 2
2610
+ 15
2611
+ 5
2612
+ 20
2613
+ 1
2614
+ 47
2615
+ 49
2616
+ 5
2617
+ 1
2618
+ 19
2619
+ 2
2620
+ 15
2621
+ 20
2622
+ 0
2623
+ 13
2624
+ 10
2625
+ 57
2626
+ 15
2627
+ 7
2628
+ 6
2629
+ 64
2630
+ 19
2631
+ 0
2632
+ 15
2633
+ 45
2634
+ 7
2635
+ 8
2636
+ 20
2637
+ 2
2638
+ 49
2639
+ 9
2640
+ 0
2641
+ 20
2642
+ 0
2643
+ 7
2644
+ 10
2645
+ 64
2646
+ 49
2647
+ 11
2648
+ 3
2649
+ 19
2650
+ 3
2651
+ 15
2652
+ 45
2653
+ 7
2654
+ 12
2655
+ 20
2656
+ 3
2657
+ 49
2658
+ 13
2659
+ 1
2660
+ 9
2661
+ 97
2662
+ 45
2663
+ 7
2664
+ 14
2665
+ 20
2666
+ 3
2667
+ 49
2668
+ 15
2669
+ 1
2670
+ 8
2671
+ 142
2672
+ 20
2673
+ 2
2674
+ 20
2675
+ 0
2676
+ 49
2677
+ 16
2678
+ 1
2679
+ 49
2680
+ 17
2681
+ 0
2682
+ 19
2683
+ 4
2684
+ 9
2685
+ 115
2686
+ 20
2687
+ 4
2688
+ 8
2689
+ 142
2690
+ 7
2691
+ 18
2692
+ 64
2693
+ 7
2694
+ 19
2695
+ 13
2696
+ 70
2697
+ 9
2698
+ 136
2699
+ 15
2700
+ 44
2701
+ 43
2702
+ 1
2703
+ 7
2704
+ 20
2705
+ 78
2706
+ 49
2707
+ 3
2708
+ 2
2709
+ 6
2710
+ 19
2711
+ 7
2712
+ 21
2713
+ 64
2714
+ 49
2715
+ 22
2716
+ 2
2717
+ 11
2718
+ I
2719
+ 9
2720
+ I
2721
+ 5
2722
+ I
2723
+ 1
2724
+ I
2725
+ 1
2726
+ n
2727
+ p
2728
+ 23
2729
+ n
2730
+ x
2731
+ 6
2732
+ Regexp
2733
+ s
2734
+ 1
2735
+ /
2736
+ x
2737
+ 3
2738
+ new
2739
+ x
2740
+ 5
2741
+ split
2742
+ x
2743
+ 2
2744
+ []
2745
+ s
2746
+ 7
2747
+ project
2748
+ x
2749
+ 4
2750
+ File
2751
+ n
2752
+ x
2753
+ 19
2754
+ templates_directory
2755
+ s
2756
+ 14
2757
+ USAGE.markdown
2758
+ x
2759
+ 4
2760
+ join
2761
+ n
2762
+ x
2763
+ 7
2764
+ exists?
2765
+ n
2766
+ x
2767
+ 4
2768
+ read
2769
+ x
2770
+ 8
2771
+ manifest
2772
+ x
2773
+ 4
2774
+ help
2775
+ s
2776
+ 20
2777
+ No Usage!
2778
+
2779
+ n
2780
+ s
2781
+ 5
2782
+ ^ {8}
2783
+ s
2784
+ 0
2785
+
2786
+ x
2787
+ 4
2788
+ gsub
2789
+ p
2790
+ 23
2791
+ I
2792
+ -1
2793
+ I
2794
+ 55
2795
+ I
2796
+ 0
2797
+ I
2798
+ 56
2799
+ I
2800
+ 24
2801
+ I
2802
+ 57
2803
+ I
2804
+ 2e
2805
+ I
2806
+ 58
2807
+ I
2808
+ 3a
2809
+ I
2810
+ 59
2811
+ I
2812
+ 4d
2813
+ I
2814
+ 5a
2815
+ I
2816
+ 57
2817
+ I
2818
+ 5b
2819
+ I
2820
+ 61
2821
+ I
2822
+ 5c
2823
+ I
2824
+ 6f
2825
+ I
2826
+ 5d
2827
+ I
2828
+ 73
2829
+ I
2830
+ 5f
2831
+ I
2832
+ 8e
2833
+ I
2834
+ 0
2835
+ I
2836
+ 8f
2837
+ x
2838
+ 57
2839
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2840
+ p
2841
+ 5
2842
+ x
2843
+ 8
2844
+ template
2845
+ x
2846
+ 14
2847
+ framework_name
2848
+ x
2849
+ 9
2850
+ framework
2851
+ x
2852
+ 10
2853
+ usage_file
2854
+ x
2855
+ 4
2856
+ help
2857
+ x
2858
+ 12
2859
+ pretty_print
2860
+ M
2861
+ 1
2862
+ n
2863
+ n
2864
+ x
2865
+ 12
2866
+ pretty_print
2867
+ i
2868
+ 46
2869
+ 23
2870
+ 0
2871
+ 10
2872
+ 8
2873
+ 3
2874
+ 19
2875
+ 0
2876
+ 15
2877
+ 7
2878
+ 0
2879
+ 64
2880
+ 19
2881
+ 1
2882
+ 15
2883
+ 45
2884
+ 1
2885
+ 2
2886
+ 43
2887
+ 3
2888
+ 43
2889
+ 4
2890
+ 78
2891
+ 56
2892
+ 5
2893
+ 50
2894
+ 6
2895
+ 1
2896
+ 19
2897
+ 2
2898
+ 15
2899
+ 45
2900
+ 1
2901
+ 7
2902
+ 43
2903
+ 3
2904
+ 43
2905
+ 4
2906
+ 56
2907
+ 8
2908
+ 50
2909
+ 9
2910
+ 0
2911
+ 15
2912
+ 20
2913
+ 1
2914
+ 11
2915
+ I
2916
+ 6
2917
+ I
2918
+ 3
2919
+ I
2920
+ 0
2921
+ I
2922
+ 1
2923
+ n
2924
+ p
2925
+ 10
2926
+ s
2927
+ 0
2928
+
2929
+ x
2930
+ 7
2931
+ Compass
2932
+ n
2933
+ x
2934
+ 10
2935
+ Frameworks
2936
+ x
2937
+ 3
2938
+ ALL
2939
+ M
2940
+ 1
2941
+ p
2942
+ 2
2943
+ x
2944
+ 9
2945
+ for_block
2946
+ t
2947
+ n
2948
+ x
2949
+ 12
2950
+ pretty_print
2951
+ i
2952
+ 34
2953
+ 58
2954
+ 37
2955
+ 19
2956
+ 0
2957
+ 15
2958
+ 37
2959
+ 19
2960
+ 1
2961
+ 15
2962
+ 15
2963
+ 20
2964
+ 1
2965
+ 49
2966
+ 0
2967
+ 0
2968
+ 78
2969
+ 56
2970
+ 1
2971
+ 50
2972
+ 2
2973
+ 1
2974
+ 19
2975
+ 2
2976
+ 15
2977
+ 20
2978
+ 0
2979
+ 20
2980
+ 2
2981
+ 35
2982
+ 2
2983
+ 49
2984
+ 3
2985
+ 0
2986
+ 11
2987
+ I
2988
+ 7
2989
+ I
2990
+ 3
2991
+ I
2992
+ 2
2993
+ I
2994
+ 2
2995
+ n
2996
+ p
2997
+ 4
2998
+ x
2999
+ 20
3000
+ template_directories
3001
+ M
3002
+ 1
3003
+ p
3004
+ 2
3005
+ x
3006
+ 9
3007
+ for_block
3008
+ t
3009
+ n
3010
+ x
3011
+ 12
3012
+ pretty_print
3013
+ i
3014
+ 38
3015
+ 58
3016
+ 37
3017
+ 19
3018
+ 0
3019
+ 15
3020
+ 37
3021
+ 19
3022
+ 1
3023
+ 15
3024
+ 15
3025
+ 20
3026
+ 0
3027
+ 4
3028
+ 7
3029
+ 21
3030
+ 1
3031
+ 1
3032
+ 49
3033
+ 0
3034
+ 0
3035
+ 49
3036
+ 1
3037
+ 0
3038
+ 81
3039
+ 2
3040
+ 20
3041
+ 1
3042
+ 49
3043
+ 1
3044
+ 0
3045
+ 81
3046
+ 2
3047
+ 35
3048
+ 2
3049
+ 49
3050
+ 3
3051
+ 0
3052
+ 11
3053
+ I
3054
+ 6
3055
+ I
3056
+ 2
3057
+ I
3058
+ 2
3059
+ I
3060
+ 2
3061
+ n
3062
+ p
3063
+ 4
3064
+ x
3065
+ 4
3066
+ name
3067
+ x
3068
+ 4
3069
+ size
3070
+ x
3071
+ 1
3072
+ +
3073
+ x
3074
+ 3
3075
+ max
3076
+ p
3077
+ 5
3078
+ I
3079
+ 0
3080
+ I
3081
+ 68
3082
+ I
3083
+ a
3084
+ I
3085
+ 69
3086
+ I
3087
+ 26
3088
+ x
3089
+ 57
3090
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3091
+ p
3092
+ 2
3093
+ x
3094
+ 2
3095
+ lm
3096
+ x
3097
+ 7
3098
+ pattern
3099
+ x
3100
+ 6
3101
+ inject
3102
+ x
3103
+ 3
3104
+ max
3105
+ p
3106
+ 7
3107
+ I
3108
+ 0
3109
+ I
3110
+ 67
3111
+ I
3112
+ a
3113
+ I
3114
+ 68
3115
+ I
3116
+ 18
3117
+ I
3118
+ 6b
3119
+ I
3120
+ 22
3121
+ x
3122
+ 57
3123
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3124
+ p
3125
+ 3
3126
+ x
3127
+ 2
3128
+ gm
3129
+ x
3130
+ 9
3131
+ framework
3132
+ x
3133
+ 2
3134
+ fm
3135
+ x
3136
+ 6
3137
+ inject
3138
+ n
3139
+ M
3140
+ 1
3141
+ p
3142
+ 2
3143
+ x
3144
+ 9
3145
+ for_block
3146
+ t
3147
+ n
3148
+ x
3149
+ 12
3150
+ pretty_print
3151
+ i
3152
+ 78
3153
+ 57
3154
+ 19
3155
+ 0
3156
+ 15
3157
+ 20
3158
+ 0
3159
+ 49
3160
+ 0
3161
+ 0
3162
+ 7
3163
+ 1
3164
+ 13
3165
+ 70
3166
+ 9
3167
+ 27
3168
+ 15
3169
+ 44
3170
+ 43
3171
+ 2
3172
+ 7
3173
+ 3
3174
+ 78
3175
+ 49
3176
+ 4
3177
+ 2
3178
+ 6
3179
+ 1
3180
+ 49
3181
+ 5
3182
+ 1
3183
+ 9
3184
+ 36
3185
+ 1
3186
+ 11
3187
+ 8
3188
+ 37
3189
+ 1
3190
+ 15
3191
+ 21
3192
+ 1
3193
+ 1
3194
+ 7
3195
+ 6
3196
+ 20
3197
+ 0
3198
+ 49
3199
+ 0
3200
+ 0
3201
+ 47
3202
+ 101
3203
+ 7
3204
+ 7
3205
+ 8
3206
+ 63
3207
+ 3
3208
+ 49
3209
+ 9
3210
+ 1
3211
+ 15
3212
+ 21
3213
+ 1
3214
+ 0
3215
+ 9
3216
+ 67
3217
+ 1
3218
+ 8
3219
+ 77
3220
+ 20
3221
+ 0
3222
+ 49
3223
+ 10
3224
+ 0
3225
+ 56
3226
+ 11
3227
+ 50
3228
+ 12
3229
+ 0
3230
+ 11
3231
+ I
3232
+ 6
3233
+ I
3234
+ 1
3235
+ I
3236
+ 1
3237
+ I
3238
+ 1
3239
+ n
3240
+ p
3241
+ 13
3242
+ x
3243
+ 4
3244
+ name
3245
+ n
3246
+ x
3247
+ 6
3248
+ Regexp
3249
+ s
3250
+ 2
3251
+ ^_
3252
+ x
3253
+ 3
3254
+ new
3255
+ x
3256
+ 2
3257
+ =~
3258
+ s
3259
+ 4
3260
+ *
3261
+ x
3262
+ 4
3263
+ to_s
3264
+ s
3265
+ 1
3266
+
3267
+
3268
+ x
3269
+ 2
3270
+ <<
3271
+ x
3272
+ 20
3273
+ template_directories
3274
+ M
3275
+ 1
3276
+ p
3277
+ 2
3278
+ x
3279
+ 9
3280
+ for_block
3281
+ t
3282
+ n
3283
+ x
3284
+ 12
3285
+ pretty_print
3286
+ i
3287
+ 81
3288
+ 57
3289
+ 19
3290
+ 0
3291
+ 15
3292
+ 21
3293
+ 2
3294
+ 1
3295
+ 7
3296
+ 0
3297
+ 21
3298
+ 1
3299
+ 0
3300
+ 49
3301
+ 1
3302
+ 0
3303
+ 47
3304
+ 101
3305
+ 2
3306
+ 7
3307
+ 3
3308
+ 20
3309
+ 0
3310
+ 47
3311
+ 101
3312
+ 2
3313
+ 63
3314
+ 4
3315
+ 21
3316
+ 2
3317
+ 2
3318
+ 49
3319
+ 4
3320
+ 1
3321
+ 49
3322
+ 5
3323
+ 1
3324
+ 15
3325
+ 21
3326
+ 1
3327
+ 0
3328
+ 20
3329
+ 0
3330
+ 49
3331
+ 6
3332
+ 1
3333
+ 49
3334
+ 7
3335
+ 0
3336
+ 19
3337
+ 1
3338
+ 9
3339
+ 69
3340
+ 21
3341
+ 2
3342
+ 1
3343
+ 7
3344
+ 8
3345
+ 20
3346
+ 1
3347
+ 47
3348
+ 101
3349
+ 2
3350
+ 63
3351
+ 2
3352
+ 49
3353
+ 5
3354
+ 1
3355
+ 8
3356
+ 70
3357
+ 1
3358
+ 15
3359
+ 21
3360
+ 2
3361
+ 1
3362
+ 7
3363
+ 9
3364
+ 64
3365
+ 49
3366
+ 5
3367
+ 1
3368
+ 11
3369
+ I
3370
+ 8
3371
+ I
3372
+ 2
3373
+ I
3374
+ 1
3375
+ I
3376
+ 1
3377
+ n
3378
+ p
3379
+ 10
3380
+ s
3381
+ 6
3382
+ -
3383
+ x
3384
+ 4
3385
+ name
3386
+ x
3387
+ 4
3388
+ to_s
3389
+ s
3390
+ 1
3391
+ /
3392
+ x
3393
+ 5
3394
+ ljust
3395
+ x
3396
+ 2
3397
+ <<
3398
+ x
3399
+ 8
3400
+ manifest
3401
+ x
3402
+ 11
3403
+ description
3404
+ s
3405
+ 3
3406
+ -
3407
+ s
3408
+ 1
3409
+
3410
+
3411
+ p
3412
+ 15
3413
+ I
3414
+ 0
3415
+ I
3416
+ 71
3417
+ I
3418
+ 4
3419
+ I
3420
+ 72
3421
+ I
3422
+ 25
3423
+ I
3424
+ 73
3425
+ I
3426
+ 34
3427
+ I
3428
+ 74
3429
+ I
3430
+ 45
3431
+ I
3432
+ 73
3433
+ I
3434
+ 46
3435
+ I
3436
+ 0
3437
+ I
3438
+ 47
3439
+ I
3440
+ 76
3441
+ I
3442
+ 51
3443
+ x
3444
+ 57
3445
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3446
+ p
3447
+ 2
3448
+ x
3449
+ 7
3450
+ pattern
3451
+ x
3452
+ 11
3453
+ description
3454
+ x
3455
+ 4
3456
+ each
3457
+ p
3458
+ 15
3459
+ I
3460
+ 0
3461
+ I
3462
+ 6d
3463
+ I
3464
+ 4
3465
+ I
3466
+ 6e
3467
+ I
3468
+ 25
3469
+ I
3470
+ 0
3471
+ I
3472
+ 26
3473
+ I
3474
+ 6f
3475
+ I
3476
+ 3b
3477
+ I
3478
+ 70
3479
+ I
3480
+ 43
3481
+ I
3482
+ 71
3483
+ I
3484
+ 4d
3485
+ I
3486
+ 0
3487
+ I
3488
+ 4e
3489
+ x
3490
+ 57
3491
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3492
+ p
3493
+ 1
3494
+ x
3495
+ 9
3496
+ framework
3497
+ x
3498
+ 4
3499
+ each
3500
+ p
3501
+ 11
3502
+ I
3503
+ -1
3504
+ I
3505
+ 65
3506
+ I
3507
+ 8
3508
+ I
3509
+ 66
3510
+ I
3511
+ e
3512
+ I
3513
+ 67
3514
+ I
3515
+ 1e
3516
+ I
3517
+ 6d
3518
+ I
3519
+ 2b
3520
+ I
3521
+ 7a
3522
+ I
3523
+ 2e
3524
+ x
3525
+ 57
3526
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3527
+ p
3528
+ 3
3529
+ x
3530
+ 13
3531
+ skip_patterns
3532
+ x
3533
+ 6
3534
+ result
3535
+ x
3536
+ 3
3537
+ max
3538
+ p
3539
+ 25
3540
+ I
3541
+ 2
3542
+ I
3543
+ 3
3544
+ I
3545
+ 9
3546
+ I
3547
+ 5
3548
+ I
3549
+ 12
3550
+ I
3551
+ 6
3552
+ I
3553
+ 28
3554
+ I
3555
+ 8
3556
+ I
3557
+ 43
3558
+ I
3559
+ 1f
3560
+ I
3561
+ 51
3562
+ I
3563
+ 27
3564
+ I
3565
+ 5f
3566
+ I
3567
+ 30
3568
+ I
3569
+ 6d
3570
+ I
3571
+ 34
3572
+ I
3573
+ 7b
3574
+ I
3575
+ 3d
3576
+ I
3577
+ 89
3578
+ I
3579
+ 4c
3580
+ I
3581
+ 97
3582
+ I
3583
+ 55
3584
+ I
3585
+ a5
3586
+ I
3587
+ 65
3588
+ I
3589
+ b3
3590
+ x
3591
+ 57
3592
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3593
+ p
3594
+ 0
3595
+ x
3596
+ 13
3597
+ attach_method
3598
+ p
3599
+ 3
3600
+ I
3601
+ 2
3602
+ I
3603
+ 2
3604
+ I
3605
+ 1c
3606
+ x
3607
+ 57
3608
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3609
+ p
3610
+ 0
3611
+ x
3612
+ 13
3613
+ attach_method
3614
+ n
3615
+ x
3616
+ 10
3617
+ Frameworks
3618
+ x
3619
+ 8
3620
+ defaults
3621
+ x
3622
+ 8
3623
+ discover
3624
+ p
3625
+ 5
3626
+ I
3627
+ 0
3628
+ I
3629
+ 1
3630
+ I
3631
+ 1a
3632
+ I
3633
+ 7f
3634
+ I
3635
+ 27
3636
+ x
3637
+ 57
3638
+ /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3639
+ p
3640
+ 0