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
@@ -210,8 +210,8 @@ I
210
210
  I
211
211
  1a
212
212
  x
213
- 78
214
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
213
+ 76
214
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
215
215
  p
216
216
  0
217
217
  x
@@ -720,7 +720,7 @@ x
720
720
  6
721
721
  empty?
722
722
  p
723
- 17
723
+ 11
724
724
  I
725
725
  -1
726
726
  I
@@ -734,30 +734,18 @@ a
734
734
  I
735
735
  f
736
736
  I
737
- 20
738
- I
739
- 0
740
- I
741
737
  21
742
738
  I
743
739
  10
744
740
  I
745
- 37
746
- I
747
- 0
748
- I
749
741
  38
750
742
  I
751
743
  11
752
744
  I
753
- 44
754
- I
755
- 0
756
- I
757
745
  45
758
746
  x
759
- 78
760
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
747
+ 76
748
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
761
749
  p
762
750
  1
763
751
  x
@@ -939,7 +927,7 @@ x
939
927
  20
940
928
  initializer_contents
941
929
  p
942
- 21
930
+ 17
943
931
  I
944
932
  -1
945
933
  I
@@ -961,10 +949,6 @@ I
961
949
  I
962
950
  18
963
951
  I
964
- 3e
965
- I
966
- 0
967
- I
968
952
  3f
969
953
  I
970
954
  1a
@@ -977,14 +961,10 @@ I
977
961
  I
978
962
  1c
979
963
  I
980
- 6d
981
- I
982
- 0
983
- I
984
964
  6e
985
965
  x
986
- 78
987
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
966
+ 76
967
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
988
968
  p
989
969
  1
990
970
  x
@@ -1054,8 +1034,8 @@ I
1054
1034
  I
1055
1035
  f
1056
1036
  x
1057
- 78
1058
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
1037
+ 76
1038
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1059
1039
  p
1060
1040
  0
1061
1041
  x
@@ -1101,8 +1081,8 @@ I
1101
1081
  I
1102
1082
  4
1103
1083
  x
1104
- 78
1105
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
1084
+ 76
1085
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1106
1086
  p
1107
1087
  0
1108
1088
  x
@@ -1194,7 +1174,7 @@ Add the following to your environment.rb:
1194
1174
  config.gem "compass", :version => ">=
1195
1175
  n
1196
1176
  p
1197
- 11
1177
+ 9
1198
1178
  I
1199
1179
  -1
1200
1180
  I
@@ -1212,14 +1192,10 @@ I
1212
1192
  I
1213
1193
  2c
1214
1194
  I
1215
- 25
1216
- I
1217
- 0
1218
- I
1219
1195
  26
1220
1196
  x
1221
- 78
1222
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
1197
+ 76
1198
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1223
1199
  p
1224
1200
  0
1225
1201
  x
@@ -1386,7 +1362,7 @@ x
1386
1362
  16
1387
1363
  stylesheet_links
1388
1364
  p
1389
- 27
1365
+ 23
1390
1366
  I
1391
1367
  -1
1392
1368
  I
@@ -1412,10 +1388,6 @@ I
1412
1388
  I
1413
1389
  31
1414
1390
  I
1415
- 2b
1416
- I
1417
- 0
1418
- I
1419
1391
  2c
1420
1392
  I
1421
1393
  3f
@@ -1436,14 +1408,10 @@ I
1436
1408
  I
1437
1409
  40
1438
1410
  I
1439
- 54
1440
- I
1441
- 0
1442
- I
1443
1411
  55
1444
1412
  x
1445
- 78
1446
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
1413
+ 76
1414
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1447
1415
  p
1448
1416
  1
1449
1417
  x
@@ -1537,7 +1505,7 @@ x
1537
1505
  3
1538
1506
  ===
1539
1507
  p
1540
- 15
1508
+ 11
1541
1509
  I
1542
1510
  -1
1543
1511
  I
@@ -1551,10 +1519,6 @@ I
1551
1519
  I
1552
1520
  4a
1553
1521
  I
1554
- 14
1555
- I
1556
- 0
1557
- I
1558
1522
  19
1559
1523
  I
1560
1524
  4b
@@ -1563,14 +1527,10 @@ I
1563
1527
  I
1564
1528
  4c
1565
1529
  I
1566
- 2f
1567
- I
1568
- 0
1569
- I
1570
1530
  33
1571
1531
  x
1572
- 78
1573
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
1532
+ 76
1533
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1574
1534
  p
1575
1535
  0
1576
1536
  x
@@ -1642,8 +1602,8 @@ I
1642
1602
  I
1643
1603
  15
1644
1604
  x
1645
- 78
1646
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
1605
+ 76
1606
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1647
1607
  p
1648
1608
  2
1649
1609
  x
@@ -1815,7 +1775,7 @@ x
1815
1775
  2
1816
1776
  ==
1817
1777
  p
1818
- 25
1778
+ 23
1819
1779
  I
1820
1780
  -1
1821
1781
  I
@@ -1861,14 +1821,10 @@ I
1861
1821
  I
1862
1822
  5d
1863
1823
  I
1864
- 5b
1865
- I
1866
- 0
1867
- I
1868
1824
  5c
1869
1825
  x
1870
- 78
1871
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
1826
+ 76
1827
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
1872
1828
  p
1873
1829
  3
1874
1830
  x
@@ -2076,7 +2032,7 @@ x
2076
2032
  2
2077
2033
  ==
2078
2034
  p
2079
- 31
2035
+ 29
2080
2036
  I
2081
2037
  -1
2082
2038
  I
@@ -2134,14 +2090,10 @@ I
2134
2090
  I
2135
2091
  6e
2136
2092
  I
2137
- 72
2138
- I
2139
- 0
2140
- I
2141
2093
  73
2142
2094
  x
2143
- 78
2144
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
2095
+ 76
2096
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2145
2097
  p
2146
2098
  3
2147
2099
  x
@@ -2292,7 +2244,7 @@ x
2292
2244
  n
2293
2245
  n
2294
2246
  p
2295
- 13
2247
+ 11
2296
2248
  I
2297
2249
  -1
2298
2250
  I
@@ -2314,14 +2266,10 @@ I
2314
2266
  I
2315
2267
  77
2316
2268
  I
2317
- 47
2318
- I
2319
- 77
2320
- I
2321
2269
  58
2322
2270
  x
2323
- 78
2324
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
2271
+ 76
2272
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2325
2273
  p
2326
2274
  1
2327
2275
  x
@@ -2421,8 +2369,8 @@ I
2421
2369
  I
2422
2370
  1c
2423
2371
  x
2424
- 78
2425
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
2372
+ 76
2373
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2426
2374
  p
2427
2375
  0
2428
2376
  x
@@ -2512,7 +2460,7 @@ s
2512
2460
  1
2513
2461
  /
2514
2462
  p
2515
- 11
2463
+ 9
2516
2464
  I
2517
2465
  -1
2518
2466
  I
@@ -2530,14 +2478,10 @@ I
2530
2478
  I
2531
2479
  85
2532
2480
  I
2533
- 26
2534
- I
2535
- 0
2536
- I
2537
2481
  27
2538
2482
  x
2539
- 78
2540
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
2483
+ 76
2484
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2541
2485
  p
2542
2486
  0
2543
2487
  x
@@ -2589,7 +2533,7 @@ x
2589
2533
  21
2590
2534
  html_stylesheet_links
2591
2535
  p
2592
- 11
2536
+ 9
2593
2537
  I
2594
2538
  -1
2595
2539
  I
@@ -2607,14 +2551,10 @@ c
2607
2551
  I
2608
2552
  8d
2609
2553
  I
2610
- f
2611
- I
2612
- 0
2613
- I
2614
2554
  10
2615
2555
  x
2616
- 78
2617
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
2556
+ 76
2557
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
2618
2558
  p
2619
2559
  0
2620
2560
  x
@@ -2955,7 +2895,7 @@ x
2955
2895
  2
2956
2896
  <<
2957
2897
  p
2958
- 27
2898
+ 21
2959
2899
  I
2960
2900
  0
2961
2901
  I
@@ -2965,10 +2905,6 @@ I
2965
2905
  I
2966
2906
  95
2967
2907
  I
2968
- 26
2969
- I
2970
- 0
2971
- I
2972
2908
  27
2973
2909
  I
2974
2910
  96
@@ -2985,10 +2921,6 @@ I
2985
2921
  I
2986
2922
  97
2987
2923
  I
2988
- 7e
2989
- I
2990
- 0
2991
- I
2992
2924
  7f
2993
2925
  I
2994
2926
  9a
@@ -3001,18 +2933,14 @@ a6
3001
2933
  I
3002
2934
  9a
3003
2935
  I
3004
- a7
3005
- I
3006
- 0
3007
- I
3008
2936
  a8
3009
2937
  I
3010
2938
  9d
3011
2939
  I
3012
2940
  b6
3013
2941
  x
3014
- 78
3015
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
2942
+ 76
2943
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3016
2944
  p
3017
2945
  2
3018
2946
  x
@@ -3045,8 +2973,8 @@ I
3045
2973
  I
3046
2974
  12
3047
2975
  x
3048
- 78
3049
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
2976
+ 76
2977
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3050
2978
  p
3051
2979
  1
3052
2980
  x
@@ -3426,7 +3354,7 @@ x
3426
3354
  2
3427
3355
  <<
3428
3356
  p
3429
- 29
3357
+ 23
3430
3358
  I
3431
3359
  0
3432
3360
  I
@@ -3436,10 +3364,6 @@ I
3436
3364
  I
3437
3365
  a5
3438
3366
  I
3439
- 26
3440
- I
3441
- 0
3442
- I
3443
3367
  27
3444
3368
  I
3445
3369
  a6
@@ -3456,10 +3380,6 @@ I
3456
3380
  I
3457
3381
  a7
3458
3382
  I
3459
- 7e
3460
- I
3461
- 0
3462
- I
3463
3383
  7f
3464
3384
  I
3465
3385
  aa
@@ -3476,18 +3396,14 @@ b5
3476
3396
  I
3477
3397
  ab
3478
3398
  I
3479
- b6
3480
- I
3481
- 0
3482
- I
3483
3399
  b7
3484
3400
  I
3485
3401
  ae
3486
3402
  I
3487
3403
  c9
3488
3404
  x
3489
- 78
3490
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
3405
+ 76
3406
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3491
3407
  p
3492
3408
  2
3493
3409
  x
@@ -3530,8 +3446,8 @@ b1
3530
3446
  I
3531
3447
  1b
3532
3448
  x
3533
- 78
3534
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
3449
+ 76
3450
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3535
3451
  p
3536
3452
  1
3537
3453
  x
@@ -3606,8 +3522,8 @@ a1
3606
3522
  I
3607
3523
  e2
3608
3524
  x
3609
- 78
3610
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
3525
+ 76
3526
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3611
3527
  p
3612
3528
  0
3613
3529
  x
@@ -3622,8 +3538,8 @@ b
3622
3538
  I
3623
3539
  23
3624
3540
  x
3625
- 78
3626
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
3541
+ 76
3542
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3627
3543
  p
3628
3544
  0
3629
3545
  x
@@ -3638,8 +3554,8 @@ a
3638
3554
  I
3639
3555
  1c
3640
3556
  x
3641
- 78
3642
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
3557
+ 76
3558
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3643
3559
  p
3644
3560
  0
3645
3561
  p
@@ -3655,8 +3571,8 @@ I
3655
3571
  I
3656
3572
  36
3657
3573
  x
3658
- 78
3659
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
3574
+ 76
3575
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3660
3576
  p
3661
3577
  0
3662
3578
  x
@@ -3671,7 +3587,7 @@ I
3671
3587
  I
3672
3588
  1c
3673
3589
  x
3674
- 78
3675
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails/installer.rb
3590
+ 76
3591
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails/installer.rb
3676
3592
  p
3677
3593
  0