compass 0.11.5 → 0.11.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/compass +5 -1
  3. data/bin/compass.compiled.rbc +707 -0
  4. data/examples/compass/compass_app_log.txt +6 -0
  5. data/features/command_line.feature +16 -16
  6. data/features/extensions.feature +6 -0
  7. data/features/step_definitions/command_line_steps.rb +2 -0
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  10. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  12. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  13. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  14. data/lib/compass.rbc +42 -36
  15. data/lib/compass/actions.rbc +244 -85
  16. data/lib/compass/app_integration.rbc +28 -20
  17. data/lib/compass/app_integration/merb.rbc +8 -4
  18. data/lib/compass/app_integration/rails.rbc +664 -148
  19. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  20. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  21. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  22. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  23. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  24. data/lib/compass/browser_support.rbc +35 -23
  25. data/lib/compass/commands.rbc +307 -0
  26. data/lib/compass/commands/base.rbc +1044 -0
  27. data/lib/compass/commands/clean_project.rbc +1856 -0
  28. data/lib/compass/commands/create_project.rbc +2691 -0
  29. data/lib/compass/commands/default.rbc +1677 -0
  30. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  31. data/lib/compass/commands/help.rbc +1921 -0
  32. data/lib/compass/commands/imports.rbc +969 -0
  33. data/lib/compass/commands/installer_command.rbc +807 -0
  34. data/lib/compass/commands/interactive.rbc +1341 -0
  35. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  36. data/lib/compass/commands/print_version.rbc +2478 -0
  37. data/lib/compass/commands/project_base.rbc +2085 -0
  38. data/lib/compass/commands/project_stats.rb +7 -7
  39. data/lib/compass/commands/project_stats.rbc +4202 -0
  40. data/lib/compass/commands/registry.rbc +1350 -0
  41. data/lib/compass/commands/sprite.rbc +2212 -0
  42. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  43. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  44. data/lib/compass/commands/update_project.rbc +3002 -0
  45. data/lib/compass/commands/validate_project.rbc +1686 -0
  46. data/lib/compass/commands/watch_project.rbc +4155 -0
  47. data/lib/compass/commands/write_configuration.rbc +2896 -0
  48. data/lib/compass/compiler.rbc +591 -398
  49. data/lib/compass/configuration.rbc +134 -78
  50. data/lib/compass/configuration/adapters.rbc +98 -40
  51. data/lib/compass/configuration/comments.rbc +132 -51
  52. data/lib/compass/configuration/data.rbc +541 -551
  53. data/lib/compass/configuration/defaults.rbc +764 -189
  54. data/lib/compass/configuration/file_data.rbc +37 -125
  55. data/lib/compass/configuration/helpers.rb +7 -2
  56. data/lib/compass/configuration/helpers.rbc +433 -153
  57. data/lib/compass/configuration/inheritance.rbc +412 -165
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rbc +151 -84
  60. data/lib/compass/dependencies.rbc +16 -4
  61. data/lib/compass/errors.rbc +5 -5
  62. data/lib/compass/exec.rbc +500 -0
  63. data/lib/compass/exec/command_option_parser.rbc +676 -0
  64. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  65. data/lib/compass/exec/helpers.rbc +758 -0
  66. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  67. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  68. data/lib/compass/frameworks.rb +10 -4
  69. data/lib/compass/frameworks.rbc +118 -66
  70. data/lib/compass/grid_builder.rbc +0 -0
  71. data/lib/compass/installers.rbc +152 -0
  72. data/lib/compass/installers/bare_installer.rbc +939 -0
  73. data/lib/compass/installers/base.rbc +4427 -0
  74. data/lib/compass/installers/manifest.rbc +3335 -0
  75. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  76. data/lib/compass/installers/template_context.rbc +1030 -0
  77. data/lib/compass/logger.rbc +2317 -0
  78. data/lib/compass/quick_cache.rbc +12 -8
  79. data/lib/compass/sass_extensions.rbc +8 -4
  80. data/lib/compass/sass_extensions/functions.rbc +90 -57
  81. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  82. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  83. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  84. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  85. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  86. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  87. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  88. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  89. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  90. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  91. data/lib/compass/sass_extensions/functions/lists.rb +5 -0
  92. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  93. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  94. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  95. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  96. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  97. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  98. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  99. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  100. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  101. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  102. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  103. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  104. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  105. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  106. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  107. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  108. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  109. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +1 -1
  110. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  111. data/lib/compass/sprite_importer.rbc +1125 -1495
  112. data/lib/compass/util.rbc +19 -11
  113. data/lib/compass/version.rbc +53 -25
  114. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  115. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  116. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  117. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  118. data/test/fixtures/stylesheets/compass/css/user-interface.css +5 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  120. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  121. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  122. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  123. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  124. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  125. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  126. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  127. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  128. data/test/helpers/command_line.rbc +2820 -0
  129. data/test/helpers/diff.rbc +1104 -0
  130. data/test/helpers/io.rbc +962 -0
  131. data/test/helpers/rails.rbc +1116 -0
  132. data/test/helpers/test_case.rbc +1255 -0
  133. data/test/integrations/compass_test.rbc +6589 -0
  134. data/test/integrations/rails_integration_test.rbc +1342 -0
  135. data/test/integrations/sprites_test.rbc +6192 -0
  136. data/test/test_helper.rbc +1694 -0
  137. data/test/units/actions_test.rbc +644 -0
  138. data/test/units/command_line_test.rbc +1532 -0
  139. data/test/units/compass_png_test.rbc +0 -0
  140. data/test/units/configuration_test.rbc +3833 -0
  141. data/test/units/rails_configuration_test.rbc +1032 -0
  142. data/test/units/sass_extensions_test.rb +5 -0
  143. data/test/units/sass_extensions_test.rbc +3586 -0
  144. data/test/units/sprites/engine_test.rbc +962 -0
  145. data/test/units/sprites/image_row_test.rbc +1578 -0
  146. data/test/units/sprites/image_test.rbc +2836 -0
  147. data/test/units/sprites/importer_test.rbc +2620 -0
  148. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  149. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  150. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  151. metadata +157 -51
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -364,8 +364,8 @@ e
364
364
  I
365
365
  22
366
366
  x
367
- 70
368
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
367
+ 72
368
+ /Users/crispee/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
- 44
394
+ 58
395
395
  5
396
396
  66
397
397
  99
@@ -435,6 +435,20 @@ 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
438
452
  11
439
453
  I
440
454
  5
@@ -446,7 +460,7 @@ I
446
460
  0
447
461
  n
448
462
  p
449
- 8
463
+ 10
450
464
  x
451
465
  16
452
466
  inherited_writer
@@ -696,8 +710,8 @@ I
696
710
  I
697
711
  56
698
712
  x
699
- 70
700
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
713
+ 72
714
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
701
715
  p
702
716
  2
703
717
  x
@@ -722,8 +736,8 @@ I
722
736
  I
723
737
  8
724
738
  x
725
- 70
726
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
739
+ 72
740
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
727
741
  p
728
742
  1
729
743
  x
@@ -963,8 +977,8 @@ I
963
977
  I
964
978
  4c
965
979
  x
966
- 70
967
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
980
+ 72
981
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
968
982
  p
969
983
  2
970
984
  x
@@ -989,8 +1003,8 @@ I
989
1003
  I
990
1004
  8
991
1005
  x
992
- 70
993
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1006
+ 72
1007
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
994
1008
  p
995
1009
  1
996
1010
  x
@@ -1063,15 +1077,176 @@ I
1063
1077
  I
1064
1078
  14
1065
1079
  x
1066
- 70
1067
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1080
+ 72
1081
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1068
1082
  p
1069
1083
  1
1070
1084
  x
1071
1085
  10
1072
1086
  attributes
1073
- p
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
1074
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
+ 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
1075
1250
  I
1076
1251
  2
1077
1252
  I
@@ -1086,9 +1261,13 @@ I
1086
1261
  3b
1087
1262
  I
1088
1263
  2c
1264
+ I
1265
+ 40
1266
+ I
1267
+ 3a
1089
1268
  x
1090
- 70
1091
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1269
+ 72
1270
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1092
1271
  p
1093
1272
  0
1094
1273
  x
@@ -1363,16 +1542,16 @@ p
1363
1542
  I
1364
1543
  -1
1365
1544
  I
1366
- 45
1545
+ 52
1367
1546
  I
1368
1547
  0
1369
1548
  I
1370
- 46
1549
+ 53
1371
1550
  I
1372
1551
  6
1373
1552
  x
1374
- 70
1375
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1553
+ 72
1554
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1376
1555
  p
1377
1556
  0
1378
1557
  x
@@ -1453,36 +1632,40 @@ x
1453
1632
  11
1454
1633
  respond_to?
1455
1634
  p
1456
- 13
1635
+ 15
1457
1636
  I
1458
1637
  -1
1459
1638
  I
1460
- 49
1639
+ 56
1461
1640
  I
1462
1641
  0
1463
1642
  I
1464
- bc
1643
+ c9
1465
1644
  I
1466
1645
  1
1467
1646
  I
1468
- 4a
1647
+ 57
1469
1648
  I
1470
1649
  c
1471
1650
  I
1472
- 4b
1651
+ 58
1473
1652
  I
1474
1653
  17
1475
1654
  I
1476
- 4c
1655
+ 59
1477
1656
  I
1478
1657
  22
1479
1658
  I
1480
- 4b
1659
+ 58
1660
+ I
1661
+ 23
1662
+ I
1663
+ 0
1481
1664
  I
1482
1665
  24
1483
1666
  x
1484
- 70
1485
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1667
+ 72
1668
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1486
1669
  p
1487
1670
  1
1488
1671
  x
@@ -1552,36 +1735,40 @@ x
1552
1735
  15
1553
1736
  inherited_data=
1554
1737
  p
1555
- 13
1738
+ 15
1556
1739
  I
1557
1740
  -1
1558
1741
  I
1559
- 51
1742
+ 5e
1560
1743
  I
1561
1744
  0
1562
1745
  I
1563
- 52
1746
+ 5f
1564
1747
  I
1565
1748
  6
1566
1749
  I
1567
- 53
1750
+ 60
1568
1751
  I
1569
1752
  11
1570
1753
  I
1571
- bc
1754
+ c9
1572
1755
  I
1573
1756
  12
1574
1757
  I
1575
- 55
1758
+ 62
1759
+ I
1760
+ 1c
1761
+ I
1762
+ 0
1576
1763
  I
1577
1764
  1d
1578
1765
  I
1579
- 57
1766
+ 64
1580
1767
  I
1581
1768
  1f
1582
1769
  x
1583
- 70
1584
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1770
+ 72
1771
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1585
1772
  p
1586
1773
  1
1587
1774
  x
@@ -1629,20 +1816,20 @@ p
1629
1816
  I
1630
1817
  -1
1631
1818
  I
1632
- 5a
1819
+ 67
1633
1820
  I
1634
1821
  0
1635
1822
  I
1636
- bc
1823
+ c9
1637
1824
  I
1638
1825
  1
1639
1826
  I
1640
- 5b
1827
+ 68
1641
1828
  I
1642
1829
  b
1643
1830
  x
1644
- 70
1645
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1831
+ 72
1832
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1646
1833
  p
1647
1834
  0
1648
1835
  x
@@ -1696,24 +1883,24 @@ p
1696
1883
  I
1697
1884
  -1
1698
1885
  I
1699
- 5e
1886
+ 6b
1700
1887
  I
1701
1888
  0
1702
1889
  I
1703
- 5f
1890
+ 6c
1704
1891
  I
1705
1892
  8
1706
1893
  I
1707
- 60
1894
+ 6d
1708
1895
  I
1709
1896
  b
1710
1897
  I
1711
- 61
1898
+ 6e
1712
1899
  I
1713
1900
  11
1714
1901
  x
1715
- 70
1716
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
1902
+ 72
1903
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1717
1904
  p
1718
1905
  1
1719
1906
  x
@@ -1810,28 +1997,28 @@ p
1810
1997
  I
1811
1998
  -1
1812
1999
  I
1813
- 64
2000
+ 71
1814
2001
  I
1815
2002
  0
1816
2003
  I
1817
- 65
2004
+ 72
1818
2005
  I
1819
2006
  10
1820
2007
  I
1821
- 66
2008
+ 73
1822
2009
  I
1823
2010
  20
1824
2011
  I
1825
- 67
2012
+ 74
1826
2013
  I
1827
2014
  28
1828
2015
  I
1829
- 68
2016
+ 75
1830
2017
  I
1831
2018
  2a
1832
2019
  x
1833
- 70
1834
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2020
+ 72
2021
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1835
2022
  p
1836
2023
  1
1837
2024
  x
@@ -1901,20 +2088,20 @@ p
1901
2088
  I
1902
2089
  -1
1903
2090
  I
1904
- 6b
2091
+ 78
1905
2092
  I
1906
2093
  0
1907
2094
  I
1908
- 6c
2095
+ 79
1909
2096
  I
1910
2097
  10
1911
2098
  I
1912
- 6d
2099
+ 7a
1913
2100
  I
1914
2101
  18
1915
2102
  x
1916
- 70
1917
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2103
+ 72
2104
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1918
2105
  p
1919
2106
  1
1920
2107
  x
@@ -1972,16 +2159,16 @@ p
1972
2159
  I
1973
2160
  -1
1974
2161
  I
1975
- 70
2162
+ 7d
1976
2163
  I
1977
2164
  0
1978
2165
  I
1979
- 71
2166
+ 7e
1980
2167
  I
1981
2168
  f
1982
2169
  x
1983
- 70
1984
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2170
+ 72
2171
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
1985
2172
  p
1986
2173
  0
1987
2174
  x
@@ -2058,32 +2245,36 @@ x
2058
2245
  4
2059
2246
  send
2060
2247
  p
2061
- 11
2248
+ 13
2062
2249
  I
2063
2250
  -1
2064
2251
  I
2065
- 74
2252
+ 81
2066
2253
  I
2067
2254
  0
2068
2255
  I
2069
- 75
2256
+ 82
2070
2257
  I
2071
2258
  f
2072
2259
  I
2073
- 76
2260
+ 83
2074
2261
  I
2075
2262
  18
2076
2263
  I
2077
- 77
2264
+ 84
2078
2265
  I
2079
2266
  21
2080
2267
  I
2081
- 76
2268
+ 83
2269
+ I
2270
+ 22
2271
+ I
2272
+ 0
2082
2273
  I
2083
2274
  23
2084
2275
  x
2085
- 70
2086
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2276
+ 72
2277
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2087
2278
  p
2088
2279
  2
2089
2280
  x
@@ -2218,44 +2409,48 @@ x
2218
2409
  11
2219
2410
  respond_to?
2220
2411
  p
2221
- 17
2412
+ 19
2222
2413
  I
2223
2414
  -1
2224
2415
  I
2225
- 7c
2416
+ 89
2226
2417
  I
2227
2418
  0
2228
2419
  I
2229
- 7d
2420
+ 8a
2230
2421
  I
2231
2422
  9
2232
2423
  I
2233
- 7e
2424
+ 8b
2234
2425
  I
2235
2426
  19
2236
2427
  I
2237
- 7f
2428
+ 8c
2238
2429
  I
2239
2430
  2a
2240
2431
  I
2241
- 80
2432
+ 8d
2242
2433
  I
2243
2434
  3b
2244
2435
  I
2245
- 81
2436
+ 8e
2246
2437
  I
2247
2438
  45
2248
2439
  I
2249
- 82
2440
+ 8f
2250
2441
  I
2251
2442
  4f
2252
2443
  I
2253
- 81
2444
+ 8e
2445
+ I
2446
+ 50
2447
+ I
2448
+ 0
2254
2449
  I
2255
2450
  51
2256
2451
  x
2257
- 70
2258
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2452
+ 72
2453
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2259
2454
  p
2260
2455
  1
2261
2456
  x
@@ -2337,28 +2532,32 @@ x
2337
2532
  11
2338
2533
  default_for
2339
2534
  p
2340
- 9
2535
+ 11
2341
2536
  I
2342
2537
  -1
2343
2538
  I
2344
- 88
2539
+ 95
2345
2540
  I
2346
2541
  0
2347
2542
  I
2348
- 89
2543
+ 96
2349
2544
  I
2350
2545
  15
2351
2546
  I
2352
- 8c
2547
+ 99
2353
2548
  I
2354
2549
  1f
2355
2550
  I
2356
- 8a
2551
+ 97
2552
+ I
2553
+ 21
2554
+ I
2555
+ 0
2357
2556
  I
2358
2557
  22
2359
2558
  x
2360
- 70
2361
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2559
+ 72
2560
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2362
2561
  p
2363
2562
  2
2364
2563
  x
@@ -2463,28 +2662,32 @@ x
2463
2662
  5
2464
2663
  raise
2465
2664
  p
2466
- 9
2665
+ 11
2467
2666
  I
2468
2667
  -1
2469
2668
  I
2470
- 90
2669
+ 9d
2471
2670
  I
2472
2671
  4
2473
2672
  I
2474
- 91
2673
+ 9e
2475
2674
  I
2476
2675
  9
2477
2676
  I
2478
- 92
2677
+ 9f
2479
2678
  I
2480
2679
  23
2481
2680
  I
2482
- 94
2681
+ a1
2682
+ I
2683
+ 30
2684
+ I
2685
+ 0
2483
2686
  I
2484
2687
  31
2485
2688
  x
2486
- 70
2487
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2689
+ 72
2690
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2488
2691
  p
2489
2692
  3
2490
2693
  x
@@ -2551,36 +2754,40 @@ x
2551
2754
  14
2552
2755
  inherited_data
2553
2756
  p
2554
- 13
2757
+ 15
2555
2758
  I
2556
2759
  -1
2557
2760
  I
2558
- 98
2761
+ a5
2559
2762
  I
2560
2763
  0
2561
2764
  I
2562
- 99
2765
+ a6
2563
2766
  I
2564
2767
  5
2565
2768
  I
2566
- 9a
2769
+ a7
2567
2770
  I
2568
2771
  8
2569
2772
  I
2570
- 9b
2773
+ a8
2571
2774
  I
2572
2775
  d
2573
2776
  I
2574
- 9c
2777
+ a9
2575
2778
  I
2576
2779
  17
2577
2780
  I
2578
- 9e
2781
+ ab
2782
+ I
2783
+ 18
2784
+ I
2785
+ 0
2579
2786
  I
2580
2787
  19
2581
2788
  x
2582
- 70
2583
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2789
+ 72
2790
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2584
2791
  p
2585
2792
  1
2586
2793
  x
@@ -2657,28 +2864,32 @@ x
2657
2864
  2
2658
2865
  <<
2659
2866
  p
2660
- 9
2867
+ 11
2661
2868
  I
2662
2869
  -1
2663
2870
  I
2664
- a2
2871
+ af
2665
2872
  I
2666
2873
  0
2667
2874
  I
2668
- a3
2875
+ b0
2669
2876
  I
2670
2877
  6
2671
2878
  I
2672
- a4
2879
+ b1
2880
+ I
2881
+ 21
2882
+ I
2883
+ 0
2673
2884
  I
2674
2885
  23
2675
2886
  I
2676
- a5
2887
+ b2
2677
2888
  I
2678
2889
  26
2679
2890
  x
2680
- 70
2681
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
2891
+ 72
2892
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
2682
2893
  p
2683
2894
  1
2684
2895
  x
@@ -3094,44 +3305,80 @@ x
3094
3305
  2
3095
3306
  <<
3096
3307
  p
3097
- 17
3308
+ 35
3098
3309
  I
3099
3310
  0
3100
3311
  I
3101
- ac
3312
+ b9
3102
3313
  I
3103
3314
  4
3104
3315
  I
3105
- ad
3316
+ ba
3106
3317
  I
3107
3318
  7
3108
3319
  I
3109
- b2
3320
+ bf
3110
3321
  I
3111
3322
  10
3112
3323
  I
3113
- ae
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
3114
3337
  I
3115
3338
  4e
3116
3339
  I
3117
- af
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
3118
3353
  I
3119
3354
  8c
3120
3355
  I
3121
- b0
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
3122
3369
  I
3123
3370
  ca
3124
3371
  I
3125
- b1
3372
+ be
3126
3373
  I
3127
3374
  d8
3128
3375
  I
3129
- ad
3376
+ ba
3130
3377
  I
3131
3378
  dc
3132
3379
  x
3133
- 70
3134
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3380
+ 72
3381
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3135
3382
  p
3136
3383
  1
3137
3384
  x
@@ -3148,24 +3395,24 @@ p
3148
3395
  I
3149
3396
  0
3150
3397
  I
3151
- aa
3398
+ b7
3152
3399
  I
3153
3400
  4
3154
3401
  I
3155
- ab
3402
+ b8
3156
3403
  I
3157
3404
  9
3158
3405
  I
3159
- ac
3406
+ b9
3160
3407
  I
3161
3408
  12
3162
3409
  I
3163
- b4
3410
+ c1
3164
3411
  I
3165
3412
  21
3166
3413
  x
3167
- 70
3168
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3414
+ 72
3415
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3169
3416
  p
3170
3417
  2
3171
3418
  x
@@ -3182,24 +3429,24 @@ p
3182
3429
  I
3183
3430
  -1
3184
3431
  I
3185
- a8
3432
+ b5
3186
3433
  I
3187
3434
  0
3188
3435
  I
3189
- a9
3436
+ b6
3190
3437
  I
3191
3438
  a
3192
3439
  I
3193
- aa
3440
+ b7
3194
3441
  I
3195
3442
  13
3196
3443
  I
3197
- b6
3444
+ c3
3198
3445
  I
3199
3446
  16
3200
3447
  x
3201
- 70
3202
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3448
+ 72
3449
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3203
3450
  p
3204
3451
  1
3205
3452
  x
@@ -3210,68 +3457,68 @@ p
3210
3457
  I
3211
3458
  2
3212
3459
  I
3213
- 45
3460
+ 52
3214
3461
  I
3215
3462
  10
3216
3463
  I
3217
- 49
3464
+ 56
3218
3465
  I
3219
3466
  1e
3220
3467
  I
3221
- 51
3468
+ 5e
3222
3469
  I
3223
3470
  2c
3224
3471
  I
3225
- 5a
3472
+ 67
3226
3473
  I
3227
3474
  3a
3228
3475
  I
3229
- 5e
3476
+ 6b
3230
3477
  I
3231
3478
  48
3232
3479
  I
3233
- 64
3480
+ 71
3234
3481
  I
3235
3482
  56
3236
3483
  I
3237
- 6b
3484
+ 78
3238
3485
  I
3239
3486
  64
3240
3487
  I
3241
- 70
3488
+ 7d
3242
3489
  I
3243
3490
  72
3244
3491
  I
3245
- 74
3492
+ 81
3246
3493
  I
3247
3494
  80
3248
3495
  I
3249
- 7c
3496
+ 89
3250
3497
  I
3251
3498
  8e
3252
3499
  I
3253
- 88
3500
+ 95
3254
3501
  I
3255
3502
  9c
3256
3503
  I
3257
- 90
3504
+ 9d
3258
3505
  I
3259
3506
  aa
3260
3507
  I
3261
- 98
3508
+ a5
3262
3509
  I
3263
3510
  b8
3264
3511
  I
3265
- a2
3512
+ af
3266
3513
  I
3267
3514
  c6
3268
3515
  I
3269
- a8
3516
+ b5
3270
3517
  I
3271
3518
  d4
3272
3519
  x
3273
- 70
3274
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3520
+ 72
3521
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3275
3522
  p
3276
3523
  0
3277
3524
  p
@@ -3287,12 +3534,12 @@ I
3287
3534
  I
3288
3535
  27
3289
3536
  I
3290
- 43
3537
+ 50
3291
3538
  I
3292
3539
  41
3293
3540
  x
3294
- 70
3295
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3541
+ 72
3542
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3296
3543
  p
3297
3544
  0
3298
3545
  x
@@ -3307,8 +3554,8 @@ I
3307
3554
  I
3308
3555
  1c
3309
3556
  x
3310
- 70
3311
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3557
+ 72
3558
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3312
3559
  p
3313
3560
  0
3314
3561
  x
@@ -3323,8 +3570,8 @@ I
3323
3570
  I
3324
3571
  1c
3325
3572
  x
3326
- 70
3327
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3573
+ 72
3574
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3328
3575
  p
3329
3576
  0
3330
3577
  x
@@ -3339,7 +3586,7 @@ I
3339
3586
  I
3340
3587
  1c
3341
3588
  x
3342
- 70
3343
- /Users/chris/Projects/compass/lib/compass/configuration/inheritance.rb
3589
+ 72
3590
+ /Users/crispee/Projects/compass/lib/compass/configuration/inheritance.rb
3344
3591
  p
3345
3592
  0