compass 0.11.7 → 0.12.alpha.0

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