compass 0.11.5 → 0.11.6

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 (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
@@ -391,8 +391,8 @@ I
391
391
  I
392
392
  23
393
393
  x
394
- 52
395
- /Users/chris/Projects/compass/lib/compass/actions.rb
394
+ 54
395
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
396
396
  p
397
397
  0
398
398
  x
@@ -538,7 +538,7 @@ x
538
538
  10
539
539
  write_file
540
540
  p
541
- 9
541
+ 11
542
542
  I
543
543
  -1
544
544
  I
@@ -548,6 +548,10 @@ I
548
548
  I
549
549
  c
550
550
  I
551
+ 27
552
+ I
553
+ 0
554
+ I
551
555
  28
552
556
  I
553
557
  d
@@ -558,8 +562,8 @@ e
558
562
  I
559
563
  58
560
564
  x
561
- 52
562
- /Users/chris/Projects/compass/lib/compass/actions.rb
565
+ 54
566
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
563
567
  p
564
568
  5
565
569
  x
@@ -865,7 +869,7 @@ x
865
869
  7
866
870
  mkdir_p
867
871
  p
868
- 19
872
+ 23
869
873
  I
870
874
  -1
871
875
  I
@@ -875,6 +879,10 @@ I
875
879
  I
876
880
  13
877
881
  I
882
+ 1f
883
+ I
884
+ 0
885
+ I
878
886
  20
879
887
  I
880
888
  14
@@ -903,10 +911,14 @@ a6
903
911
  I
904
912
  1c
905
913
  I
914
+ ba
915
+ I
916
+ 0
917
+ I
906
918
  bb
907
919
  x
908
- 52
909
- /Users/chris/Projects/compass/lib/compass/actions.rb
920
+ 54
921
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
910
922
  p
911
923
  3
912
924
  x
@@ -1382,8 +1394,8 @@ I
1382
1394
  I
1383
1395
  d
1384
1396
  x
1385
- 52
1386
- /Users/chris/Projects/compass/lib/compass/actions.rb
1397
+ 54
1398
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
1387
1399
  p
1388
1400
  1
1389
1401
  x
@@ -1393,7 +1405,7 @@ x
1393
1405
  4
1394
1406
  open
1395
1407
  p
1396
- 39
1408
+ 53
1397
1409
  I
1398
1410
  -1
1399
1411
  I
@@ -1403,6 +1415,10 @@ I
1403
1415
  I
1404
1416
  22
1405
1417
  I
1418
+ 27
1419
+ I
1420
+ 0
1421
+ I
1406
1422
  28
1407
1423
  I
1408
1424
  23
@@ -1411,6 +1427,10 @@ I
1411
1427
  I
1412
1428
  24
1413
1429
  I
1430
+ 4e
1431
+ I
1432
+ 0
1433
+ I
1414
1434
  4f
1415
1435
  I
1416
1436
  25
@@ -1447,10 +1467,18 @@ b0
1447
1467
  I
1448
1468
  2e
1449
1469
  I
1470
+ d3
1471
+ I
1472
+ 0
1473
+ I
1450
1474
  d5
1451
1475
  I
1452
1476
  31
1453
1477
  I
1478
+ e5
1479
+ I
1480
+ 0
1481
+ I
1454
1482
  e6
1455
1483
  I
1456
1484
  33
@@ -1459,6 +1487,10 @@ ea
1459
1487
  I
1460
1488
  34
1461
1489
  I
1490
+ fe
1491
+ I
1492
+ 0
1493
+ I
1462
1494
  100
1463
1495
  I
1464
1496
  36
@@ -1467,14 +1499,22 @@ I
1467
1499
  I
1468
1500
  37
1469
1501
  I
1502
+ 115
1503
+ I
1504
+ 0
1505
+ I
1470
1506
  116
1471
1507
  I
1472
1508
  38
1473
1509
  I
1510
+ 121
1511
+ I
1512
+ 0
1513
+ I
1474
1514
  122
1475
1515
  x
1476
- 52
1477
- /Users/chris/Projects/compass/lib/compass/actions.rb
1516
+ 54
1517
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
1478
1518
  p
1479
1519
  8
1480
1520
  x
@@ -1646,7 +1686,7 @@ x
1646
1686
  6
1647
1687
  result
1648
1688
  p
1649
- 7
1689
+ 9
1650
1690
  I
1651
1691
  -1
1652
1692
  I
@@ -1656,14 +1696,18 @@ I
1656
1696
  I
1657
1697
  3f
1658
1698
  I
1699
+ 35
1700
+ I
1701
+ 0
1702
+ I
1659
1703
  36
1660
1704
  I
1661
1705
  40
1662
1706
  I
1663
1707
  58
1664
1708
  x
1665
- 52
1666
- /Users/chris/Projects/compass/lib/compass/actions.rb
1709
+ 54
1710
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
1667
1711
  p
1668
1712
  2
1669
1713
  x
@@ -1683,45 +1727,100 @@ x
1683
1727
  6
1684
1728
  remove
1685
1729
  i
1686
- 40
1687
- 45
1730
+ 95
1731
+ 20
1688
1732
  0
1733
+ 13
1734
+ 10
1735
+ 11
1736
+ 15
1737
+ 7
1738
+ 0
1739
+ 64
1740
+ 19
1741
+ 0
1742
+ 15
1743
+ 45
1689
1744
  1
1745
+ 2
1690
1746
  20
1691
1747
  0
1692
1748
  49
1693
- 2
1749
+ 3
1694
1750
  1
1695
1751
  9
1696
- 38
1752
+ 55
1697
1753
  45
1698
- 0
1699
- 3
1754
+ 4
1755
+ 5
1700
1756
  20
1701
1757
  0
1702
1758
  49
1703
- 4
1759
+ 6
1704
1760
  1
1705
1761
  15
1706
1762
  5
1707
1763
  7
1708
- 5
1764
+ 7
1709
1765
  5
1710
1766
  20
1711
1767
  0
1712
1768
  47
1713
1769
  49
1714
- 6
1770
+ 8
1715
1771
  1
1772
+ 7
1773
+ 9
1774
+ 64
1775
+ 81
1776
+ 10
1716
1777
  5
1717
1778
  48
1779
+ 11
1780
+ 47
1781
+ 49
1782
+ 12
1783
+ 3
1784
+ 8
1785
+ 94
1786
+ 45
1787
+ 1
1788
+ 13
1789
+ 20
1790
+ 0
1791
+ 49
1792
+ 14
1793
+ 1
1794
+ 9
1795
+ 93
1796
+ 45
1797
+ 1
1798
+ 15
1799
+ 20
1800
+ 0
1801
+ 49
1802
+ 16
1803
+ 1
1804
+ 15
1805
+ 5
1806
+ 7
1718
1807
  7
1808
+ 5
1809
+ 20
1810
+ 0
1719
1811
  47
1720
1812
  49
1721
1813
  8
1814
+ 1
1815
+ 5
1816
+ 48
1817
+ 11
1818
+ 47
1819
+ 49
1820
+ 12
1722
1821
  3
1723
1822
  8
1724
- 39
1823
+ 94
1725
1824
  1
1726
1825
  11
1727
1826
  I
@@ -1734,32 +1833,52 @@ I
1734
1833
  1
1735
1834
  n
1736
1835
  p
1737
- 9
1836
+ 17
1837
+ s
1838
+ 0
1839
+
1738
1840
  x
1739
1841
  4
1740
1842
  File
1741
1843
  n
1742
1844
  x
1743
- 7
1744
- exists?
1845
+ 10
1846
+ directory?
1847
+ x
1848
+ 9
1849
+ FileUtils
1745
1850
  n
1746
1851
  x
1747
- 6
1748
- unlink
1852
+ 5
1853
+ rm_rf
1749
1854
  x
1750
1855
  6
1751
1856
  remove
1752
1857
  x
1753
1858
  8
1754
1859
  basename
1860
+ s
1861
+ 1
1862
+ /
1863
+ x
1864
+ 1
1865
+ +
1755
1866
  x
1756
1867
  7
1757
1868
  options
1758
1869
  x
1759
1870
  10
1760
1871
  log_action
1872
+ n
1873
+ x
1874
+ 7
1875
+ exists?
1876
+ n
1877
+ x
1878
+ 6
1879
+ unlink
1761
1880
  p
1762
- 11
1881
+ 21
1763
1882
  I
1764
1883
  -1
1765
1884
  I
@@ -1769,22 +1888,42 @@ I
1769
1888
  I
1770
1889
  44
1771
1890
  I
1772
- a
1891
+ c
1773
1892
  I
1774
1893
  45
1775
1894
  I
1776
- 13
1895
+ 16
1777
1896
  I
1778
1897
  46
1779
1898
  I
1780
- 26
1899
+ 1f
1781
1900
  I
1782
- 44
1901
+ 47
1783
1902
  I
1784
- 28
1903
+ 37
1904
+ I
1905
+ 48
1906
+ I
1907
+ 41
1908
+ I
1909
+ 49
1910
+ I
1911
+ 4a
1912
+ I
1913
+ 4a
1914
+ I
1915
+ 5d
1916
+ I
1917
+ 48
1918
+ I
1919
+ 5e
1920
+ I
1921
+ 0
1922
+ I
1923
+ 5f
1785
1924
  x
1786
- 52
1787
- /Users/chris/Projects/compass/lib/compass/actions.rb
1925
+ 54
1926
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
1788
1927
  p
1789
1928
  1
1790
1929
  x
@@ -1874,12 +2013,12 @@ p
1874
2013
  I
1875
2014
  0
1876
2015
  I
1877
- 4b
2016
+ 4f
1878
2017
  I
1879
2018
  e
1880
2019
  x
1881
- 52
1882
- /Users/chris/Projects/compass/lib/compass/actions.rb
2020
+ 54
2021
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
1883
2022
  p
1884
2023
  1
1885
2024
  x
@@ -1893,16 +2032,16 @@ p
1893
2032
  I
1894
2033
  -1
1895
2034
  I
1896
- 4a
2035
+ 4e
1897
2036
  I
1898
2037
  0
1899
2038
  I
1900
- 4b
2039
+ 4f
1901
2040
  I
1902
2041
  a
1903
2042
  x
1904
- 52
1905
- /Users/chris/Projects/compass/lib/compass/actions.rb
2043
+ 54
2044
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
1906
2045
  p
1907
2046
  1
1908
2047
  x
@@ -2023,36 +2162,40 @@ x
2023
2162
  2
2024
2163
  []
2025
2164
  p
2026
- 13
2165
+ 15
2027
2166
  I
2028
2167
  -1
2029
2168
  I
2030
- 4e
2169
+ 52
2031
2170
  I
2032
2171
  0
2033
2172
  I
2034
- 4f
2173
+ 53
2035
2174
  I
2036
2175
  14
2037
2176
  I
2038
- 50
2177
+ 54
2039
2178
  I
2040
2179
  2f
2041
2180
  I
2042
- 51
2181
+ 55
2043
2182
  I
2044
2183
  32
2045
2184
  I
2046
- 52
2185
+ 56
2047
2186
  I
2048
2187
  38
2049
2188
  I
2050
- 54
2189
+ 58
2190
+ I
2191
+ 3a
2192
+ I
2193
+ 0
2051
2194
  I
2052
2195
  3b
2053
2196
  x
2054
- 52
2055
- /Users/chris/Projects/compass/lib/compass/actions.rb
2197
+ 54
2198
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
2056
2199
  p
2057
2200
  1
2058
2201
  x
@@ -2135,16 +2278,16 @@ p
2135
2278
  I
2136
2279
  -1
2137
2280
  I
2138
- 59
2281
+ 5d
2139
2282
  I
2140
2283
  0
2141
2284
  I
2142
- 5a
2285
+ 5e
2143
2286
  I
2144
2287
  1d
2145
2288
  x
2146
- 52
2147
- /Users/chris/Projects/compass/lib/compass/actions.rb
2289
+ 54
2290
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
2148
2291
  p
2149
2292
  1
2150
2293
  x
@@ -2236,20 +2379,24 @@ x
2236
2379
  I
2237
2380
  -2
2238
2381
  p
2239
- 5
2382
+ 7
2240
2383
  I
2241
2384
  -1
2242
2385
  I
2243
- 5e
2386
+ 62
2244
2387
  I
2245
2388
  0
2246
2389
  I
2247
- 5f
2390
+ 63
2391
+ I
2392
+ 28
2393
+ I
2394
+ 0
2248
2395
  I
2249
2396
  29
2250
2397
  x
2251
- 52
2252
- /Users/chris/Projects/compass/lib/compass/actions.rb
2398
+ 54
2399
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
2253
2400
  p
2254
2401
  1
2255
2402
  x
@@ -2442,36 +2589,48 @@ x
2442
2589
  6
2443
2590
  record
2444
2591
  p
2445
- 13
2592
+ 19
2446
2593
  I
2447
2594
  -1
2448
2595
  I
2449
- 62
2596
+ 66
2450
2597
  I
2451
2598
  0
2452
2599
  I
2453
- 63
2600
+ 67
2454
2601
  I
2455
2602
  16
2456
2603
  I
2457
- 64
2604
+ 68
2605
+ I
2606
+ 33
2607
+ I
2608
+ 0
2458
2609
  I
2459
2610
  34
2460
2611
  I
2461
- 65
2612
+ 69
2613
+ I
2614
+ 64
2615
+ I
2616
+ 0
2462
2617
  I
2463
2618
  65
2464
2619
  I
2465
- 66
2620
+ 6a
2466
2621
  I
2467
2622
  6c
2468
2623
  I
2469
- 67
2624
+ 6b
2625
+ I
2626
+ 80
2627
+ I
2628
+ 0
2470
2629
  I
2471
2630
  81
2472
2631
  x
2473
- 52
2474
- /Users/chris/Projects/compass/lib/compass/actions.rb
2632
+ 54
2633
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
2475
2634
  p
2476
2635
  4
2477
2636
  x
@@ -2519,28 +2678,28 @@ I
2519
2678
  I
2520
2679
  5e
2521
2680
  I
2522
- 4a
2681
+ 4e
2523
2682
  I
2524
2683
  6c
2525
2684
  I
2526
- 4e
2685
+ 52
2527
2686
  I
2528
2687
  7a
2529
2688
  I
2530
- 59
2689
+ 5d
2531
2690
  I
2532
2691
  88
2533
2692
  I
2534
- 5e
2693
+ 62
2535
2694
  I
2536
2695
  96
2537
2696
  I
2538
- 62
2697
+ 66
2539
2698
  I
2540
2699
  a4
2541
2700
  x
2542
- 52
2543
- /Users/chris/Projects/compass/lib/compass/actions.rb
2701
+ 54
2702
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
2544
2703
  p
2545
2704
  0
2546
2705
  x
@@ -2555,8 +2714,8 @@ I
2555
2714
  I
2556
2715
  1c
2557
2716
  x
2558
- 52
2559
- /Users/chris/Projects/compass/lib/compass/actions.rb
2717
+ 54
2718
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
2560
2719
  p
2561
2720
  0
2562
2721
  x
@@ -2571,7 +2730,7 @@ I
2571
2730
  I
2572
2731
  1c
2573
2732
  x
2574
- 52
2575
- /Users/chris/Projects/compass/lib/compass/actions.rb
2733
+ 54
2734
+ /Users/crispee/Projects/compass/lib/compass/actions.rb
2576
2735
  p
2577
2736
  0