compass 0.12.alpha.0 → 0.12.alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. data/Rakefile +1 -0
  2. data/VERSION.yml +1 -1
  3. data/bin/compass +1 -1
  4. data/bin/compass.compiled.rbc +707 -0
  5. data/examples/downloader.rb +3 -2
  6. data/examples/ninesixty/bootstrap.rb +1 -1
  7. data/features/command_line.feature +17 -17
  8. data/features/extensions.feature +6 -0
  9. data/features/step_definitions/command_line_steps.rb +2 -0
  10. data/frameworks/compass/stylesheets/compass/_support.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +7 -24
  12. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +0 -15
  13. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +12 -12
  14. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +6 -20
  15. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +38 -24
  16. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  17. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  18. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  19. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  20. data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +29 -6
  21. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  22. data/lib/compass.rbc +42 -36
  23. data/lib/compass/actions.rb +0 -1
  24. data/lib/compass/actions.rbc +244 -85
  25. data/lib/compass/app_integration.rbc +28 -20
  26. data/lib/compass/app_integration/merb.rbc +8 -4
  27. data/lib/compass/app_integration/rails.rbc +664 -148
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +23 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +8 -10
  30. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  31. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  32. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  33. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  34. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  35. data/lib/compass/browser_support.rbc +35 -23
  36. data/lib/compass/commands.rbc +307 -0
  37. data/lib/compass/commands/base.rbc +1044 -0
  38. data/lib/compass/commands/clean_project.rbc +1856 -0
  39. data/lib/compass/commands/create_project.rbc +2691 -0
  40. data/lib/compass/commands/default.rbc +1677 -0
  41. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  42. data/lib/compass/commands/help.rbc +1921 -0
  43. data/lib/compass/commands/imports.rbc +969 -0
  44. data/lib/compass/commands/installer_command.rbc +807 -0
  45. data/lib/compass/commands/interactive.rbc +1341 -0
  46. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  47. data/lib/compass/commands/print_version.rbc +2478 -0
  48. data/lib/compass/commands/project_base.rbc +2085 -0
  49. data/lib/compass/commands/project_stats.rb +7 -7
  50. data/lib/compass/commands/project_stats.rbc +4202 -0
  51. data/lib/compass/commands/registry.rbc +1350 -0
  52. data/lib/compass/commands/sprite.rbc +2212 -0
  53. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  54. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  55. data/lib/compass/commands/update_project.rbc +3002 -0
  56. data/lib/compass/commands/validate_project.rbc +1686 -0
  57. data/lib/compass/commands/watch_project.rbc +4155 -0
  58. data/lib/compass/commands/write_configuration.rbc +2896 -0
  59. data/lib/compass/compiler.rb +3 -0
  60. data/lib/compass/compiler.rbc +591 -398
  61. data/lib/compass/configuration.rbc +134 -78
  62. data/lib/compass/configuration/adapters.rbc +98 -40
  63. data/lib/compass/configuration/comments.rbc +132 -51
  64. data/lib/compass/configuration/data.rb +6 -0
  65. data/lib/compass/configuration/data.rbc +541 -551
  66. data/lib/compass/configuration/defaults.rbc +764 -189
  67. data/lib/compass/configuration/file_data.rbc +37 -125
  68. data/lib/compass/configuration/helpers.rb +1 -0
  69. data/lib/compass/configuration/helpers.rbc +433 -153
  70. data/lib/compass/configuration/inheritance.rb +2 -0
  71. data/lib/compass/configuration/inheritance.rbc +412 -165
  72. data/lib/compass/configuration/paths.rbc +9 -9
  73. data/lib/compass/configuration/serialization.rbc +151 -84
  74. data/lib/compass/dependencies.rbc +16 -4
  75. data/lib/compass/errors.rbc +5 -5
  76. data/lib/compass/exec.rbc +500 -0
  77. data/lib/compass/exec/command_option_parser.rbc +676 -0
  78. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  79. data/lib/compass/exec/helpers.rbc +758 -0
  80. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  81. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  82. data/lib/compass/frameworks.rb +10 -4
  83. data/lib/compass/frameworks.rbc +118 -66
  84. data/lib/compass/grid_builder.rbc +0 -0
  85. data/lib/compass/installers.rbc +152 -0
  86. data/lib/compass/installers/bare_installer.rbc +939 -0
  87. data/lib/compass/installers/base.rbc +4427 -0
  88. data/lib/compass/installers/manifest.rbc +3335 -0
  89. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  90. data/lib/compass/installers/template_context.rbc +1030 -0
  91. data/lib/compass/logger.rbc +2317 -0
  92. data/lib/compass/quick_cache.rbc +12 -8
  93. data/lib/compass/sass_extensions.rbc +8 -4
  94. data/lib/compass/sass_extensions/functions.rb +4 -2
  95. data/lib/compass/sass_extensions/functions.rbc +90 -57
  96. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  97. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  98. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  99. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  100. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  101. data/lib/compass/sass_extensions/functions/env.rb +5 -0
  102. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  103. data/lib/compass/sass_extensions/functions/font_files.rb +32 -3
  104. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  105. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  106. data/lib/compass/sass_extensions/functions/image_size.rb +19 -16
  107. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  108. data/lib/compass/sass_extensions/functions/inline_image.rb +1 -1
  109. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  110. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  111. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  112. data/lib/compass/sass_extensions/functions/sprites.rb +27 -4
  113. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  114. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  115. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  116. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  117. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  118. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  119. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  120. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  121. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  122. data/lib/compass/sass_extensions/sprites/image.rb +5 -5
  123. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  124. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  125. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  126. data/lib/compass/sass_extensions/sprites/layout_methods.rb +12 -8
  127. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  128. data/lib/compass/sass_extensions/sprites/row_fitter.rb +7 -1
  129. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  130. data/lib/compass/sass_extensions/sprites/sprite_map.rb +1 -1
  131. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  132. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +24 -4
  133. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  134. data/lib/compass/sprite_importer.rb +15 -80
  135. data/lib/compass/sprite_importer.rbc +1125 -1495
  136. data/lib/compass/sprite_importer/binding.rb +11 -0
  137. data/lib/compass/sprite_importer/content.erb +81 -0
  138. data/lib/compass/util.rbc +19 -11
  139. data/lib/compass/version.rbc +53 -25
  140. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  141. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  142. data/test/fixtures/fonts/bgrove.base64.txt +1 -0
  143. data/test/fixtures/fonts/bgrove.ttf +0 -0
  144. data/test/fixtures/sprites/public/images/bool/false.png +0 -0
  145. data/test/fixtures/sprites/public/images/bool/true.png +0 -0
  146. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -2
  147. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -2
  148. data/test/fixtures/stylesheets/compass/css/border_radius.css +6 -9
  149. data/test/fixtures/stylesheets/compass/css/box.css +0 -19
  150. data/test/fixtures/stylesheets/compass/css/box_shadow.css +3 -6
  151. data/test/fixtures/stylesheets/compass/css/columns.css +8 -16
  152. data/test/fixtures/stylesheets/compass/css/grid_background.css +4 -8
  153. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  154. data/test/fixtures/stylesheets/compass/css/pie.css +2 -3
  155. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  156. data/test/fixtures/stylesheets/compass/css/sprites.css +1 -1
  157. data/test/fixtures/stylesheets/compass/css/text_shadow.css +0 -3
  158. data/test/fixtures/stylesheets/compass/css/transform.css +28 -92
  159. data/test/fixtures/stylesheets/compass/css/transition.css +11 -0
  160. data/test/fixtures/stylesheets/compass/css/user-interface.css +4 -0
  161. data/test/fixtures/stylesheets/compass/images/{flag-s8c3c755a68.png → flag-s8f1e8fdb9b.png} +0 -0
  162. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +0 -1
  163. data/test/fixtures/stylesheets/compass/sass/transition.scss +4 -0
  164. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  165. data/test/fixtures/stylesheets/envtest/config.rb +9 -0
  166. data/test/fixtures/stylesheets/envtest/css/env.css +2 -0
  167. data/test/fixtures/stylesheets/envtest/sass/env.scss +3 -0
  168. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  169. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  170. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  171. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  172. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  173. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  174. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  175. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  176. data/test/helpers/command_line.rbc +2820 -0
  177. data/test/helpers/diff.rbc +1104 -0
  178. data/test/helpers/io.rbc +962 -0
  179. data/test/helpers/rails.rbc +1116 -0
  180. data/test/helpers/test_case.rbc +1255 -0
  181. data/test/integrations/compass_test.rb +24 -2
  182. data/test/integrations/compass_test.rbc +6589 -0
  183. data/test/integrations/rails_integration_test.rbc +1342 -0
  184. data/test/integrations/sprites_test.rb +123 -25
  185. data/test/integrations/sprites_test.rbc +6192 -0
  186. data/test/test_helper.rb +7 -5
  187. data/test/test_helper.rbc +1694 -0
  188. data/test/tmp/compass_rails/public/images/{selectors-sef52c5c63a.png → selectors-s4c703bbc05.png} +0 -0
  189. data/test/units/actions_test.rbc +644 -0
  190. data/test/units/command_line_test.rbc +1532 -0
  191. data/test/units/compass_png_test.rbc +0 -0
  192. data/test/units/configuration_test.rbc +3833 -0
  193. data/test/units/rails_configuration_test.rbc +1032 -0
  194. data/test/units/sass_extensions_test.rb +31 -0
  195. data/test/units/sass_extensions_test.rbc +3586 -0
  196. data/test/units/sprites/engine_test.rbc +962 -0
  197. data/test/units/sprites/image_row_test.rbc +1578 -0
  198. data/test/units/sprites/image_test.rb +3 -3
  199. data/test/units/sprites/image_test.rbc +2836 -0
  200. data/test/units/sprites/importer_test.rb +6 -0
  201. data/test/units/sprites/importer_test.rbc +2620 -0
  202. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  203. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  204. data/test/units/sprites/sprite_map_test.rb +19 -6
  205. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  206. metadata +180 -54
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -341,8 +341,8 @@ I
341
341
  I
342
342
  30
343
343
  x
344
- 64
345
- /Users/chris/Projects/compass/lib/compass/configuration/paths.rb
344
+ 66
345
+ /Users/crispee/Projects/compass/lib/compass/configuration/paths.rb
346
346
  p
347
347
  1
348
348
  x
@@ -364,8 +364,8 @@ I
364
364
  I
365
365
  8
366
366
  x
367
- 64
368
- /Users/chris/Projects/compass/lib/compass/configuration/paths.rb
367
+ 66
368
+ /Users/crispee/Projects/compass/lib/compass/configuration/paths.rb
369
369
  p
370
370
  1
371
371
  x
@@ -390,8 +390,8 @@ I
390
390
  I
391
391
  32
392
392
  x
393
- 64
394
- /Users/chris/Projects/compass/lib/compass/configuration/paths.rb
393
+ 66
394
+ /Users/crispee/Projects/compass/lib/compass/configuration/paths.rb
395
395
  p
396
396
  0
397
397
  x
@@ -406,7 +406,7 @@ I
406
406
  I
407
407
  20
408
408
  x
409
- 64
410
- /Users/chris/Projects/compass/lib/compass/configuration/paths.rb
409
+ 66
410
+ /Users/crispee/Projects/compass/lib/compass/configuration/paths.rb
411
411
  p
412
412
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -341,8 +341,8 @@ I
341
341
  I
342
342
  e
343
343
  x
344
- 72
345
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
344
+ 74
345
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
346
346
  p
347
347
  1
348
348
  x
@@ -510,8 +510,8 @@ f
510
510
  I
511
511
  12
512
512
  x
513
- 72
514
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
513
+ 74
514
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
515
515
  p
516
516
  1
517
517
  x
@@ -521,7 +521,7 @@ x
521
521
  4
522
522
  open
523
523
  p
524
- 9
524
+ 11
525
525
  I
526
526
  -1
527
527
  I
@@ -535,14 +535,18 @@ d
535
535
  I
536
536
  c
537
537
  I
538
+ 22
539
+ I
540
+ 0
541
+ I
538
542
  23
539
543
  I
540
544
  e
541
545
  I
542
546
  2d
543
547
  x
544
- 72
545
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
548
+ 74
549
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
546
550
  p
547
551
  1
548
552
  x
@@ -559,7 +563,7 @@ x
559
563
  12
560
564
  parse_string
561
565
  i
562
- 79
566
+ 87
563
567
  5
564
568
  48
565
569
  0
@@ -590,7 +594,7 @@ i
590
594
  39
591
595
  6
592
596
  9
593
- 73
597
+ 81
594
598
  5
595
599
  13
596
600
  49
@@ -631,13 +635,21 @@ i
631
635
  8
632
636
  1
633
637
  15
638
+ 15
639
+ 5
640
+ 49
641
+ 7
642
+ 0
643
+ 49
644
+ 10
645
+ 0
634
646
  8
635
- 74
647
+ 82
636
648
  1
637
649
  15
638
650
  5
639
651
  48
640
- 10
652
+ 11
641
653
  11
642
654
  I
643
655
  7
@@ -649,7 +661,7 @@ I
649
661
  2
650
662
  n
651
663
  p
652
- 11
664
+ 12
653
665
  x
654
666
  7
655
667
  binding
@@ -822,7 +834,7 @@ x
822
834
  4
823
835
  send
824
836
  p
825
- 9
837
+ 21
826
838
  I
827
839
  0
828
840
  I
@@ -832,18 +844,42 @@ I
832
844
  I
833
845
  17
834
846
  I
847
+ 1b
848
+ I
849
+ 0
850
+ I
851
+ 20
852
+ I
853
+ 17
854
+ I
855
+ 36
856
+ I
857
+ 0
858
+ I
859
+ 39
860
+ I
861
+ 17
862
+ I
835
863
  3c
836
864
  I
837
865
  18
838
866
  I
867
+ 50
868
+ I
869
+ 0
870
+ I
839
871
  51
840
872
  I
841
873
  19
842
874
  I
875
+ 6a
876
+ I
877
+ 0
878
+ I
843
879
  6b
844
880
  x
845
- 72
846
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
881
+ 74
882
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
847
883
  p
848
884
  2
849
885
  x
@@ -868,10 +904,13 @@ x
868
904
  1
869
905
  +
870
906
  x
907
+ 5
908
+ uniq!
909
+ x
871
910
  26
872
911
  issue_deprecation_warnings
873
912
  p
874
- 19
913
+ 23
875
914
  I
876
915
  -1
877
916
  I
@@ -901,18 +940,26 @@ I
901
940
  I
902
941
  1d
903
942
  I
904
- 49
943
+ 48
944
+ I
945
+ 1e
946
+ I
947
+ 51
905
948
  I
906
949
  1b
907
950
  I
908
- 4b
951
+ 52
909
952
  I
910
- 1f
953
+ 0
954
+ I
955
+ 53
911
956
  I
912
- 4f
957
+ 20
958
+ I
959
+ 57
913
960
  x
914
- 72
915
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
961
+ 74
962
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
916
963
  p
917
964
  3
918
965
  x
@@ -1116,16 +1163,16 @@ p
1116
1163
  I
1117
1164
  0
1118
1165
  I
1119
- 24
1166
+ 25
1120
1167
  I
1121
1168
  4
1122
1169
  I
1123
- 25
1170
+ 26
1124
1171
  I
1125
1172
  16
1126
1173
  x
1127
- 72
1128
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1174
+ 74
1175
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1129
1176
  p
1130
1177
  1
1131
1178
  x
@@ -1202,16 +1249,16 @@ p
1202
1249
  I
1203
1250
  0
1204
1251
  I
1205
- 27
1252
+ 28
1206
1253
  I
1207
1254
  4
1208
1255
  I
1209
- 28
1256
+ 29
1210
1257
  I
1211
1258
  16
1212
1259
  x
1213
- 72
1214
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1260
+ 74
1261
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1215
1262
  p
1216
1263
  1
1217
1264
  x
@@ -1285,16 +1332,16 @@ p
1285
1332
  I
1286
1333
  0
1287
1334
  I
1288
- 2a
1335
+ 2b
1289
1336
  I
1290
1337
  4
1291
1338
  I
1292
- 2b
1339
+ 2c
1293
1340
  I
1294
1341
  16
1295
1342
  x
1296
- 72
1297
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1343
+ 74
1344
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1298
1345
  p
1299
1346
  1
1300
1347
  x
@@ -1555,60 +1602,72 @@ x
1555
1602
  18
1556
1603
  serialize_property
1557
1604
  p
1558
- 25
1605
+ 31
1559
1606
  I
1560
1607
  0
1561
1608
  I
1562
- 2f
1609
+ 30
1563
1610
  I
1564
1611
  4
1565
1612
  I
1566
- 30
1613
+ 31
1567
1614
  I
1568
1615
  15
1569
1616
  I
1570
- 31
1617
+ 32
1571
1618
  I
1572
1619
  1f
1573
1620
  I
1574
- 32
1621
+ 33
1575
1622
  I
1576
1623
  37
1577
1624
  I
1578
- 31
1625
+ 32
1626
+ I
1627
+ 38
1628
+ I
1629
+ 0
1579
1630
  I
1580
1631
  39
1581
1632
  I
1582
- 34
1633
+ 35
1583
1634
  I
1584
1635
  49
1585
1636
  I
1586
- 35
1637
+ 36
1587
1638
  I
1588
1639
  53
1589
1640
  I
1590
- 36
1641
+ 37
1591
1642
  I
1592
1643
  69
1593
1644
  I
1594
- 34
1645
+ 35
1646
+ I
1647
+ 6a
1648
+ I
1649
+ 0
1595
1650
  I
1596
1651
  6b
1597
1652
  I
1598
- 38
1653
+ 39
1599
1654
  I
1600
1655
  7a
1601
1656
  I
1602
- 39
1657
+ 3a
1603
1658
  I
1604
1659
  84
1605
1660
  I
1606
- 3b
1661
+ 3c
1662
+ I
1663
+ 9d
1664
+ I
1665
+ 0
1607
1666
  I
1608
1667
  9e
1609
1668
  x
1610
- 72
1611
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1669
+ 74
1670
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1612
1671
  p
1613
1672
  3
1614
1673
  x
@@ -1621,48 +1680,52 @@ x
1621
1680
  7
1622
1681
  to_emit
1623
1682
  p
1624
- 19
1683
+ 21
1625
1684
  I
1626
1685
  -1
1627
1686
  I
1628
- 22
1687
+ 23
1629
1688
  I
1630
1689
  0
1631
1690
  I
1632
- 23
1691
+ 24
1633
1692
  I
1634
1693
  6
1635
1694
  I
1636
- 24
1695
+ 25
1637
1696
  I
1638
1697
  15
1639
1698
  I
1640
- 27
1699
+ 28
1641
1700
  I
1642
1701
  24
1643
1702
  I
1644
- 2a
1703
+ 2b
1645
1704
  I
1646
1705
  33
1647
1706
  I
1648
- 2d
1707
+ 2e
1649
1708
  I
1650
1709
  3c
1651
1710
  I
1652
- 2e
1711
+ 2f
1712
+ I
1713
+ 55
1714
+ I
1715
+ 0
1653
1716
  I
1654
1717
  56
1655
1718
  I
1656
- 2f
1719
+ 30
1657
1720
  I
1658
1721
  5f
1659
1722
  I
1660
- 3e
1723
+ 3f
1661
1724
  I
1662
1725
  62
1663
1726
  x
1664
- 72
1665
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1727
+ 74
1728
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1666
1729
  p
1667
1730
  1
1668
1731
  x
@@ -1729,16 +1792,16 @@ p
1729
1792
  I
1730
1793
  -1
1731
1794
  I
1732
- 41
1795
+ 42
1733
1796
  I
1734
1797
  0
1735
1798
  I
1736
- 42
1799
+ 43
1737
1800
  I
1738
1801
  14
1739
1802
  x
1740
- 72
1741
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1803
+ 74
1804
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1742
1805
  p
1743
1806
  2
1744
1807
  x
@@ -1822,28 +1885,32 @@ x
1822
1885
  4
1823
1886
  puts
1824
1887
  p
1825
- 9
1888
+ 11
1826
1889
  I
1827
1890
  -1
1828
1891
  I
1829
- 45
1892
+ 46
1830
1893
  I
1831
1894
  0
1832
1895
  I
1833
- 46
1896
+ 47
1834
1897
  I
1835
1898
  9
1836
1899
  I
1837
- 47
1900
+ 48
1838
1901
  I
1839
1902
  19
1840
1903
  I
1841
- 46
1904
+ 47
1905
+ I
1906
+ 1a
1907
+ I
1908
+ 0
1842
1909
  I
1843
1910
  1b
1844
1911
  x
1845
- 72
1846
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1912
+ 74
1913
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1847
1914
  p
1848
1915
  0
1849
1916
  p
@@ -1863,20 +1930,20 @@ I
1863
1930
  I
1864
1931
  2c
1865
1932
  I
1866
- 22
1933
+ 23
1867
1934
  I
1868
1935
  3a
1869
1936
  I
1870
- 41
1937
+ 42
1871
1938
  I
1872
1939
  48
1873
1940
  I
1874
- 45
1941
+ 46
1875
1942
  I
1876
1943
  56
1877
1944
  x
1878
- 72
1879
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1945
+ 74
1946
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1880
1947
  p
1881
1948
  0
1882
1949
  x
@@ -1891,8 +1958,8 @@ I
1891
1958
  I
1892
1959
  1c
1893
1960
  x
1894
- 72
1895
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1961
+ 74
1962
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1896
1963
  p
1897
1964
  0
1898
1965
  x
@@ -1907,8 +1974,8 @@ I
1907
1974
  I
1908
1975
  1c
1909
1976
  x
1910
- 72
1911
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1977
+ 74
1978
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1912
1979
  p
1913
1980
  0
1914
1981
  x
@@ -1923,7 +1990,7 @@ I
1923
1990
  I
1924
1991
  1c
1925
1992
  x
1926
- 72
1927
- /Users/chris/Projects/compass/lib/compass/configuration/serialization.rb
1993
+ 74
1994
+ /Users/crispee/Projects/compass/lib/compass/configuration/serialization.rb
1928
1995
  p
1929
1996
  0