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