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
@@ -61,6 +61,19 @@ module Compass
61
61
  inherited_writer(*attributes)
62
62
  end
63
63
 
64
+ def chained_method(method)
65
+ line = __LINE__ + 1
66
+ class_eval %Q{
67
+ alias_method :_chained_#{method}, method
68
+ def #{method}(*args, &block)
69
+ _chained_#{method}(*args, &block)
70
+ if inherited_data
71
+ inherited_data.#{method}(*args, &block)
72
+ end
73
+ end
74
+ }, __FILE__, line
75
+ end
76
+
64
77
 
65
78
  end
66
79
 
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -364,8 +364,8 @@ e
364
364
  I
365
365
  22
366
366
  x
367
- 72
368
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
367
+ 70
368
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
369
369
  p
370
370
  1
371
371
  x
@@ -391,7 +391,7 @@ x
391
391
  12
392
392
  ClassMethods
393
393
  i
394
- 58
394
+ 44
395
395
  5
396
396
  66
397
397
  99
@@ -435,20 +435,6 @@ i
435
435
  49
436
436
  3
437
437
  4
438
- 15
439
- 99
440
- 7
441
- 8
442
- 7
443
- 9
444
- 65
445
- 67
446
- 49
447
- 2
448
- 0
449
- 49
450
- 3
451
- 4
452
438
  11
453
439
  I
454
440
  5
@@ -460,7 +446,7 @@ I
460
446
  0
461
447
  n
462
448
  p
463
- 10
449
+ 8
464
450
  x
465
451
  16
466
452
  inherited_writer
@@ -710,8 +696,8 @@ I
710
696
  I
711
697
  56
712
698
  x
713
- 72
714
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
699
+ 70
700
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
715
701
  p
716
702
  2
717
703
  x
@@ -736,8 +722,8 @@ I
736
722
  I
737
723
  8
738
724
  x
739
- 72
740
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
725
+ 70
726
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
741
727
  p
742
728
  1
743
729
  x
@@ -977,8 +963,8 @@ I
977
963
  I
978
964
  4c
979
965
  x
980
- 72
981
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
966
+ 70
967
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
982
968
  p
983
969
  2
984
970
  x
@@ -1003,8 +989,8 @@ I
1003
989
  I
1004
990
  8
1005
991
  x
1006
- 72
1007
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
992
+ 70
993
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1008
994
  p
1009
995
  1
1010
996
  x
@@ -1077,176 +1063,15 @@ I
1077
1063
  I
1078
1064
  14
1079
1065
  x
1080
- 72
1081
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1066
+ 70
1067
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1082
1068
  p
1083
1069
  1
1084
1070
  x
1085
1071
  10
1086
1072
  attributes
1087
- x
1088
- 14
1089
- chained_method
1090
- M
1091
- 1
1092
- n
1093
- n
1094
- x
1095
- 14
1096
- chained_method
1097
- i
1098
- 52
1099
- 4
1100
- 65
1101
- 79
1102
- 81
1103
- 0
1104
- 19
1105
- 1
1106
- 15
1107
- 5
1108
- 7
1109
- 1
1110
- 20
1111
- 0
1112
- 47
1113
- 101
1114
- 2
1115
- 7
1116
- 3
1117
- 20
1118
- 0
1119
- 47
1120
- 101
1121
- 2
1122
- 7
1123
- 4
1124
- 20
1125
- 0
1126
- 47
1127
- 101
1128
- 2
1129
- 7
1130
- 5
1131
- 20
1132
- 0
1133
- 47
1134
- 101
1135
- 2
1136
- 7
1137
- 6
1138
- 63
1139
- 9
1140
- 65
1141
- 49
1142
- 7
1143
- 0
1144
- 20
1145
- 1
1146
- 47
1147
- 49
1148
- 8
1149
- 3
1150
- 11
1151
- I
1152
- c
1153
- I
1154
- 2
1155
- I
1156
- 1
1157
- I
1158
- 1
1159
- n
1160
1073
  p
1161
- 9
1162
- x
1163
- 1
1164
- +
1165
- s
1166
- 36
1167
-
1168
- alias_method :_chained_
1169
- x
1170
- 4
1171
- to_s
1172
- s
1173
- 25
1174
- , method
1175
- def
1176
- s
1177
- 39
1178
- (*args, &block)
1179
- _chained_
1180
- s
1181
- 79
1182
- (*args, &block)
1183
- if inherited_data
1184
- inherited_data.
1185
- s
1186
- 60
1187
- (*args, &block)
1188
- end
1189
- end
1190
-
1191
- x
1192
- 11
1193
- active_path
1194
- x
1195
- 10
1196
- class_eval
1197
- p
1198
- 19
1199
- I
1200
- -1
1201
- I
1202
- 40
1203
- I
1204
- 0
1205
- I
1206
- 41
1207
- I
1208
- 8
1209
- I
1210
- 4a
1211
- I
1212
- 9
1213
- I
1214
- 42
1215
- I
1216
- b
1217
- I
1218
- 43
1219
- I
1220
- 12
1221
- I
1222
- 44
1223
- I
1224
- 19
1225
- I
1226
- 45
1227
- I
1228
- 20
1229
- I
1230
- 47
1231
- I
1232
- 29
1233
- I
1234
- 4a
1235
- I
1236
- 34
1237
- x
1238
- 72
1239
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1240
- p
1241
- 2
1242
- x
1243
- 6
1244
- method
1245
- x
1246
- 4
1247
- line
1248
- p
1249
- 9
1074
+ 7
1250
1075
  I
1251
1076
  2
1252
1077
  I
@@ -1261,13 +1086,9 @@ I
1261
1086
  3b
1262
1087
  I
1263
1088
  2c
1264
- I
1265
- 40
1266
- I
1267
- 3a
1268
1089
  x
1269
- 72
1270
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1090
+ 70
1091
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1271
1092
  p
1272
1093
  0
1273
1094
  x
@@ -1542,16 +1363,16 @@ p
1542
1363
  I
1543
1364
  -1
1544
1365
  I
1545
- 52
1366
+ 45
1546
1367
  I
1547
1368
  0
1548
1369
  I
1549
- 53
1370
+ 46
1550
1371
  I
1551
1372
  6
1552
1373
  x
1553
- 72
1554
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1374
+ 70
1375
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1555
1376
  p
1556
1377
  0
1557
1378
  x
@@ -1632,40 +1453,36 @@ x
1632
1453
  11
1633
1454
  respond_to?
1634
1455
  p
1635
- 15
1456
+ 13
1636
1457
  I
1637
1458
  -1
1638
1459
  I
1639
- 56
1460
+ 49
1640
1461
  I
1641
1462
  0
1642
1463
  I
1643
- c9
1464
+ bc
1644
1465
  I
1645
1466
  1
1646
1467
  I
1647
- 57
1468
+ 4a
1648
1469
  I
1649
1470
  c
1650
1471
  I
1651
- 58
1472
+ 4b
1652
1473
  I
1653
1474
  17
1654
1475
  I
1655
- 59
1476
+ 4c
1656
1477
  I
1657
1478
  22
1658
1479
  I
1659
- 58
1660
- I
1661
- 23
1662
- I
1663
- 0
1480
+ 4b
1664
1481
  I
1665
1482
  24
1666
1483
  x
1667
- 72
1668
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1484
+ 70
1485
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1669
1486
  p
1670
1487
  1
1671
1488
  x
@@ -1735,40 +1552,36 @@ x
1735
1552
  15
1736
1553
  inherited_data=
1737
1554
  p
1738
- 15
1555
+ 13
1739
1556
  I
1740
1557
  -1
1741
1558
  I
1742
- 5e
1559
+ 51
1743
1560
  I
1744
1561
  0
1745
1562
  I
1746
- 5f
1563
+ 52
1747
1564
  I
1748
1565
  6
1749
1566
  I
1750
- 60
1567
+ 53
1751
1568
  I
1752
1569
  11
1753
1570
  I
1754
- c9
1571
+ bc
1755
1572
  I
1756
1573
  12
1757
1574
  I
1758
- 62
1759
- I
1760
- 1c
1761
- I
1762
- 0
1575
+ 55
1763
1576
  I
1764
1577
  1d
1765
1578
  I
1766
- 64
1579
+ 57
1767
1580
  I
1768
1581
  1f
1769
1582
  x
1770
- 72
1771
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1583
+ 70
1584
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1772
1585
  p
1773
1586
  1
1774
1587
  x
@@ -1816,20 +1629,20 @@ p
1816
1629
  I
1817
1630
  -1
1818
1631
  I
1819
- 67
1632
+ 5a
1820
1633
  I
1821
1634
  0
1822
1635
  I
1823
- c9
1636
+ bc
1824
1637
  I
1825
1638
  1
1826
1639
  I
1827
- 68
1640
+ 5b
1828
1641
  I
1829
1642
  b
1830
1643
  x
1831
- 72
1832
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1644
+ 70
1645
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1833
1646
  p
1834
1647
  0
1835
1648
  x
@@ -1883,24 +1696,24 @@ p
1883
1696
  I
1884
1697
  -1
1885
1698
  I
1886
- 6b
1699
+ 5e
1887
1700
  I
1888
1701
  0
1889
1702
  I
1890
- 6c
1703
+ 5f
1891
1704
  I
1892
1705
  8
1893
1706
  I
1894
- 6d
1707
+ 60
1895
1708
  I
1896
1709
  b
1897
1710
  I
1898
- 6e
1711
+ 61
1899
1712
  I
1900
1713
  11
1901
1714
  x
1902
- 72
1903
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1715
+ 70
1716
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1904
1717
  p
1905
1718
  1
1906
1719
  x
@@ -1997,28 +1810,28 @@ p
1997
1810
  I
1998
1811
  -1
1999
1812
  I
2000
- 71
1813
+ 64
2001
1814
  I
2002
1815
  0
2003
1816
  I
2004
- 72
1817
+ 65
2005
1818
  I
2006
1819
  10
2007
1820
  I
2008
- 73
1821
+ 66
2009
1822
  I
2010
1823
  20
2011
1824
  I
2012
- 74
1825
+ 67
2013
1826
  I
2014
1827
  28
2015
1828
  I
2016
- 75
1829
+ 68
2017
1830
  I
2018
1831
  2a
2019
1832
  x
2020
- 72
2021
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1833
+ 70
1834
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2022
1835
  p
2023
1836
  1
2024
1837
  x
@@ -2088,20 +1901,20 @@ p
2088
1901
  I
2089
1902
  -1
2090
1903
  I
2091
- 78
1904
+ 6b
2092
1905
  I
2093
1906
  0
2094
1907
  I
2095
- 79
1908
+ 6c
2096
1909
  I
2097
1910
  10
2098
1911
  I
2099
- 7a
1912
+ 6d
2100
1913
  I
2101
1914
  18
2102
1915
  x
2103
- 72
2104
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1916
+ 70
1917
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2105
1918
  p
2106
1919
  1
2107
1920
  x
@@ -2159,16 +1972,16 @@ p
2159
1972
  I
2160
1973
  -1
2161
1974
  I
2162
- 7d
1975
+ 70
2163
1976
  I
2164
1977
  0
2165
1978
  I
2166
- 7e
1979
+ 71
2167
1980
  I
2168
1981
  f
2169
1982
  x
2170
- 72
2171
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1983
+ 70
1984
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2172
1985
  p
2173
1986
  0
2174
1987
  x
@@ -2245,36 +2058,32 @@ x
2245
2058
  4
2246
2059
  send
2247
2060
  p
2248
- 13
2061
+ 11
2249
2062
  I
2250
2063
  -1
2251
2064
  I
2252
- 81
2065
+ 74
2253
2066
  I
2254
2067
  0
2255
2068
  I
2256
- 82
2069
+ 75
2257
2070
  I
2258
2071
  f
2259
2072
  I
2260
- 83
2073
+ 76
2261
2074
  I
2262
2075
  18
2263
2076
  I
2264
- 84
2077
+ 77
2265
2078
  I
2266
2079
  21
2267
2080
  I
2268
- 83
2269
- I
2270
- 22
2271
- I
2272
- 0
2081
+ 76
2273
2082
  I
2274
2083
  23
2275
2084
  x
2276
- 72
2277
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2085
+ 70
2086
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2278
2087
  p
2279
2088
  2
2280
2089
  x
@@ -2409,48 +2218,44 @@ x
2409
2218
  11
2410
2219
  respond_to?
2411
2220
  p
2412
- 19
2221
+ 17
2413
2222
  I
2414
2223
  -1
2415
2224
  I
2416
- 89
2225
+ 7c
2417
2226
  I
2418
2227
  0
2419
2228
  I
2420
- 8a
2229
+ 7d
2421
2230
  I
2422
2231
  9
2423
2232
  I
2424
- 8b
2233
+ 7e
2425
2234
  I
2426
2235
  19
2427
2236
  I
2428
- 8c
2237
+ 7f
2429
2238
  I
2430
2239
  2a
2431
2240
  I
2432
- 8d
2241
+ 80
2433
2242
  I
2434
2243
  3b
2435
2244
  I
2436
- 8e
2245
+ 81
2437
2246
  I
2438
2247
  45
2439
2248
  I
2440
- 8f
2249
+ 82
2441
2250
  I
2442
2251
  4f
2443
2252
  I
2444
- 8e
2445
- I
2446
- 50
2447
- I
2448
- 0
2253
+ 81
2449
2254
  I
2450
2255
  51
2451
2256
  x
2452
- 72
2453
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2257
+ 70
2258
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2454
2259
  p
2455
2260
  1
2456
2261
  x
@@ -2532,32 +2337,28 @@ x
2532
2337
  11
2533
2338
  default_for
2534
2339
  p
2535
- 11
2340
+ 9
2536
2341
  I
2537
2342
  -1
2538
2343
  I
2539
- 95
2344
+ 88
2540
2345
  I
2541
2346
  0
2542
2347
  I
2543
- 96
2348
+ 89
2544
2349
  I
2545
2350
  15
2546
2351
  I
2547
- 99
2352
+ 8c
2548
2353
  I
2549
2354
  1f
2550
2355
  I
2551
- 97
2552
- I
2553
- 21
2554
- I
2555
- 0
2356
+ 8a
2556
2357
  I
2557
2358
  22
2558
2359
  x
2559
- 72
2560
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2360
+ 70
2361
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2561
2362
  p
2562
2363
  2
2563
2364
  x
@@ -2662,32 +2463,28 @@ x
2662
2463
  5
2663
2464
  raise
2664
2465
  p
2665
- 11
2466
+ 9
2666
2467
  I
2667
2468
  -1
2668
2469
  I
2669
- 9d
2470
+ 90
2670
2471
  I
2671
2472
  4
2672
2473
  I
2673
- 9e
2474
+ 91
2674
2475
  I
2675
2476
  9
2676
2477
  I
2677
- 9f
2478
+ 92
2678
2479
  I
2679
2480
  23
2680
2481
  I
2681
- a1
2682
- I
2683
- 30
2684
- I
2685
- 0
2482
+ 94
2686
2483
  I
2687
2484
  31
2688
2485
  x
2689
- 72
2690
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2486
+ 70
2487
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2691
2488
  p
2692
2489
  3
2693
2490
  x
@@ -2754,40 +2551,36 @@ x
2754
2551
  14
2755
2552
  inherited_data
2756
2553
  p
2757
- 15
2554
+ 13
2758
2555
  I
2759
2556
  -1
2760
2557
  I
2761
- a5
2558
+ 98
2762
2559
  I
2763
2560
  0
2764
2561
  I
2765
- a6
2562
+ 99
2766
2563
  I
2767
2564
  5
2768
2565
  I
2769
- a7
2566
+ 9a
2770
2567
  I
2771
2568
  8
2772
2569
  I
2773
- a8
2570
+ 9b
2774
2571
  I
2775
2572
  d
2776
2573
  I
2777
- a9
2574
+ 9c
2778
2575
  I
2779
2576
  17
2780
2577
  I
2781
- ab
2782
- I
2783
- 18
2784
- I
2785
- 0
2578
+ 9e
2786
2579
  I
2787
2580
  19
2788
2581
  x
2789
- 72
2790
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2582
+ 70
2583
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2791
2584
  p
2792
2585
  1
2793
2586
  x
@@ -2864,32 +2657,28 @@ x
2864
2657
  2
2865
2658
  <<
2866
2659
  p
2867
- 11
2660
+ 9
2868
2661
  I
2869
2662
  -1
2870
2663
  I
2871
- af
2664
+ a2
2872
2665
  I
2873
2666
  0
2874
2667
  I
2875
- b0
2668
+ a3
2876
2669
  I
2877
2670
  6
2878
2671
  I
2879
- b1
2880
- I
2881
- 21
2882
- I
2883
- 0
2672
+ a4
2884
2673
  I
2885
2674
  23
2886
2675
  I
2887
- b2
2676
+ a5
2888
2677
  I
2889
2678
  26
2890
2679
  x
2891
- 72
2892
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2680
+ 70
2681
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2893
2682
  p
2894
2683
  1
2895
2684
  x
@@ -3305,80 +3094,44 @@ x
3305
3094
  2
3306
3095
  <<
3307
3096
  p
3308
- 35
3097
+ 17
3309
3098
  I
3310
3099
  0
3311
3100
  I
3312
- b9
3101
+ ac
3313
3102
  I
3314
3103
  4
3315
3104
  I
3316
- ba
3105
+ ad
3317
3106
  I
3318
3107
  7
3319
3108
  I
3320
- bf
3109
+ b2
3321
3110
  I
3322
3111
  10
3323
3112
  I
3324
- bb
3325
- I
3326
- 2b
3327
- I
3328
- 0
3329
- I
3330
- 30
3331
- I
3332
- bb
3333
- I
3334
- 46
3335
- I
3336
- 0
3113
+ ae
3337
3114
  I
3338
3115
  4e
3339
3116
  I
3340
- bc
3341
- I
3342
- 69
3343
- I
3344
- 0
3345
- I
3346
- 6e
3347
- I
3348
- bc
3349
- I
3350
- 84
3351
- I
3352
- 0
3117
+ af
3353
3118
  I
3354
3119
  8c
3355
3120
  I
3356
- bd
3357
- I
3358
- a7
3359
- I
3360
- 0
3361
- I
3362
- ac
3363
- I
3364
- bd
3365
- I
3366
- c2
3367
- I
3368
- 0
3121
+ b0
3369
3122
  I
3370
3123
  ca
3371
3124
  I
3372
- be
3125
+ b1
3373
3126
  I
3374
3127
  d8
3375
3128
  I
3376
- ba
3129
+ ad
3377
3130
  I
3378
3131
  dc
3379
3132
  x
3380
- 72
3381
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3133
+ 70
3134
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3382
3135
  p
3383
3136
  1
3384
3137
  x
@@ -3395,24 +3148,24 @@ p
3395
3148
  I
3396
3149
  0
3397
3150
  I
3398
- b7
3151
+ aa
3399
3152
  I
3400
3153
  4
3401
3154
  I
3402
- b8
3155
+ ab
3403
3156
  I
3404
3157
  9
3405
3158
  I
3406
- b9
3159
+ ac
3407
3160
  I
3408
3161
  12
3409
3162
  I
3410
- c1
3163
+ b4
3411
3164
  I
3412
3165
  21
3413
3166
  x
3414
- 72
3415
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3167
+ 70
3168
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3416
3169
  p
3417
3170
  2
3418
3171
  x
@@ -3429,24 +3182,24 @@ p
3429
3182
  I
3430
3183
  -1
3431
3184
  I
3432
- b5
3185
+ a8
3433
3186
  I
3434
3187
  0
3435
3188
  I
3436
- b6
3189
+ a9
3437
3190
  I
3438
3191
  a
3439
3192
  I
3440
- b7
3193
+ aa
3441
3194
  I
3442
3195
  13
3443
3196
  I
3444
- c3
3197
+ b6
3445
3198
  I
3446
3199
  16
3447
3200
  x
3448
- 72
3449
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3201
+ 70
3202
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3450
3203
  p
3451
3204
  1
3452
3205
  x
@@ -3457,68 +3210,68 @@ p
3457
3210
  I
3458
3211
  2
3459
3212
  I
3460
- 52
3213
+ 45
3461
3214
  I
3462
3215
  10
3463
3216
  I
3464
- 56
3217
+ 49
3465
3218
  I
3466
3219
  1e
3467
3220
  I
3468
- 5e
3221
+ 51
3469
3222
  I
3470
3223
  2c
3471
3224
  I
3472
- 67
3225
+ 5a
3473
3226
  I
3474
3227
  3a
3475
3228
  I
3476
- 6b
3229
+ 5e
3477
3230
  I
3478
3231
  48
3479
3232
  I
3480
- 71
3233
+ 64
3481
3234
  I
3482
3235
  56
3483
3236
  I
3484
- 78
3237
+ 6b
3485
3238
  I
3486
3239
  64
3487
3240
  I
3488
- 7d
3241
+ 70
3489
3242
  I
3490
3243
  72
3491
3244
  I
3492
- 81
3245
+ 74
3493
3246
  I
3494
3247
  80
3495
3248
  I
3496
- 89
3249
+ 7c
3497
3250
  I
3498
3251
  8e
3499
3252
  I
3500
- 95
3253
+ 88
3501
3254
  I
3502
3255
  9c
3503
3256
  I
3504
- 9d
3257
+ 90
3505
3258
  I
3506
3259
  aa
3507
3260
  I
3508
- a5
3261
+ 98
3509
3262
  I
3510
3263
  b8
3511
3264
  I
3512
- af
3265
+ a2
3513
3266
  I
3514
3267
  c6
3515
3268
  I
3516
- b5
3269
+ a8
3517
3270
  I
3518
3271
  d4
3519
3272
  x
3520
- 72
3521
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3273
+ 70
3274
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3522
3275
  p
3523
3276
  0
3524
3277
  p
@@ -3534,12 +3287,12 @@ I
3534
3287
  I
3535
3288
  27
3536
3289
  I
3537
- 50
3290
+ 43
3538
3291
  I
3539
3292
  41
3540
3293
  x
3541
- 72
3542
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3294
+ 70
3295
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3543
3296
  p
3544
3297
  0
3545
3298
  x
@@ -3554,8 +3307,8 @@ I
3554
3307
  I
3555
3308
  1c
3556
3309
  x
3557
- 72
3558
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3310
+ 70
3311
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3559
3312
  p
3560
3313
  0
3561
3314
  x
@@ -3570,8 +3323,8 @@ I
3570
3323
  I
3571
3324
  1c
3572
3325
  x
3573
- 72
3574
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3326
+ 70
3327
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3575
3328
  p
3576
3329
  0
3577
3330
  x
@@ -3586,7 +3339,7 @@ I
3586
3339
  I
3587
3340
  1c
3588
3341
  x
3589
- 72
3590
- /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3342
+ 70
3343
+ /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3591
3344
  p
3592
3345
  0