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
@@ -3,25 +3,15 @@ unless defined?(Compass::RAILS_LOADED)
3
3
  begin
4
4
  require 'action_pack/version'
5
5
  if ActionPack::VERSION::MAJOR >= 3
6
- # TODO figure something out so image_path works with rails integration
7
- %w(railtie).each do |lib|
8
- require "compass/app_integration/rails/actionpack3/#{lib}"
6
+ if ActionPack::VERSION::MINOR < 1
7
+ require 'compass/app_integration/rails/actionpack30'
8
+ else
9
+ require 'compass/app_integration/rails/actionpack31'
9
10
  end
10
11
  else
11
- %w(action_controller sass_plugin urls).each do |lib|
12
- require "compass/app_integration/rails/actionpack2/#{lib}"
13
- end
12
+ require 'compass/app_integration/rails/actionpack2x'
14
13
  end
15
- rescue LoadError => e
16
- $stderr.puts "Compass could not access the rails environment."
17
- rescue NameError => e
14
+ rescue LoadError, NameError
18
15
  $stderr.puts "Compass could not access the rails environment."
19
16
  end
20
-
21
- # Wierd that this has to be re-included to pick up sub-modules. Ruby bug?
22
- class Sass::Script::Functions::EvaluationContext
23
- include Sass::Script::Functions
24
- private
25
- include ActionView::Helpers::AssetTagHelper
26
- end
27
17
  end
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -135,8 +135,8 @@ I
135
135
  I
136
136
  13
137
137
  x
138
- 74
139
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone.rb
138
+ 72
139
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone.rb
140
140
  p
141
141
  1
142
142
  x
@@ -383,8 +383,8 @@ c
383
383
  I
384
384
  b
385
385
  x
386
- 74
387
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone.rb
386
+ 72
387
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone.rb
388
388
  p
389
389
  1
390
390
  x
@@ -510,8 +510,8 @@ I
510
510
  I
511
511
  29
512
512
  x
513
- 74
514
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone.rb
513
+ 72
514
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone.rb
515
515
  p
516
516
  0
517
517
  p
@@ -531,8 +531,8 @@ f
531
531
  I
532
532
  25
533
533
  x
534
- 74
535
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone.rb
534
+ 72
535
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone.rb
536
536
  p
537
537
  0
538
538
  x
@@ -547,8 +547,8 @@ I
547
547
  I
548
548
  1c
549
549
  x
550
- 74
551
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone.rb
550
+ 72
551
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone.rb
552
552
  p
553
553
  0
554
554
  x
@@ -563,8 +563,8 @@ I
563
563
  I
564
564
  1c
565
565
  x
566
- 74
567
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone.rb
566
+ 72
567
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone.rb
568
568
  p
569
569
  0
570
570
  x
@@ -583,7 +583,7 @@ I
583
583
  I
584
584
  2a
585
585
  x
586
- 74
587
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone.rb
586
+ 72
587
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone.rb
588
588
  p
589
589
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -377,8 +377,8 @@ I
377
377
  I
378
378
  3
379
379
  x
380
- 97
381
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
380
+ 95
381
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
382
382
  p
383
383
  0
384
384
  x
@@ -430,8 +430,8 @@ a
430
430
  I
431
431
  4
432
432
  x
433
- 97
434
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
433
+ 95
434
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
435
435
  p
436
436
  0
437
437
  x
@@ -477,8 +477,8 @@ e
477
477
  I
478
478
  4
479
479
  x
480
- 97
481
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
480
+ 95
481
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
482
482
  p
483
483
  0
484
484
  x
@@ -524,8 +524,8 @@ I
524
524
  I
525
525
  4
526
526
  x
527
- 97
528
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
527
+ 95
528
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
529
529
  p
530
530
  0
531
531
  x
@@ -571,8 +571,8 @@ I
571
571
  I
572
572
  4
573
573
  x
574
- 97
575
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
574
+ 95
575
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
576
576
  p
577
577
  0
578
578
  x
@@ -618,8 +618,8 @@ I
618
618
  I
619
619
  4
620
620
  x
621
- 97
622
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
621
+ 95
622
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
623
623
  p
624
624
  0
625
625
  p
@@ -651,8 +651,8 @@ I
651
651
  I
652
652
  56
653
653
  x
654
- 97
655
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
654
+ 95
655
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
656
656
  p
657
657
  0
658
658
  x
@@ -667,8 +667,8 @@ I
667
667
  I
668
668
  1c
669
669
  x
670
- 97
671
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
670
+ 95
671
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
672
672
  p
673
673
  0
674
674
  x
@@ -683,8 +683,8 @@ I
683
683
  I
684
684
  1c
685
685
  x
686
- 97
687
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
686
+ 95
687
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
688
688
  p
689
689
  0
690
690
  x
@@ -699,8 +699,8 @@ I
699
699
  I
700
700
  1c
701
701
  x
702
- 97
703
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
702
+ 95
703
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
704
704
  p
705
705
  0
706
706
  x
@@ -715,7 +715,7 @@ I
715
715
  I
716
716
  1c
717
717
  x
718
- 97
719
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
718
+ 95
719
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/configuration_defaults.rb
720
720
  p
721
721
  0
@@ -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
- 84
214
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
213
+ 82
214
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
215
215
  p
216
216
  0
217
217
  x
@@ -555,8 +555,8 @@ f
555
555
  I
556
556
  12
557
557
  x
558
- 84
559
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
558
+ 82
559
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
560
560
  p
561
561
  0
562
562
  x
@@ -653,8 +653,8 @@ I
653
653
  I
654
654
  24
655
655
  x
656
- 84
657
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
656
+ 82
657
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
658
658
  p
659
659
  1
660
660
  x
@@ -724,8 +724,8 @@ I
724
724
  I
725
725
  f
726
726
  x
727
- 84
728
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
727
+ 82
728
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
729
729
  p
730
730
  0
731
731
  x
@@ -855,7 +855,7 @@ serialize
855
855
  n
856
856
  n
857
857
  p
858
- 11
858
+ 9
859
859
  I
860
860
  -1
861
861
  I
@@ -873,14 +873,10 @@ I
873
873
  I
874
874
  1f
875
875
  I
876
- 42
877
- I
878
- 1f
879
- I
880
876
  53
881
877
  x
882
- 84
883
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
878
+ 82
879
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
884
880
  p
885
881
  1
886
882
  x
@@ -951,7 +947,7 @@ x
951
947
  25
952
948
  write_configuration_files
953
949
  p
954
- 7
950
+ 5
955
951
  I
956
952
  -1
957
953
  I
@@ -961,14 +957,10 @@ I
961
957
  I
962
958
  23
963
959
  I
964
- 1c
965
- I
966
- 0
967
- I
968
960
  1d
969
961
  x
970
- 84
971
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
962
+ 82
963
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
972
964
  p
973
965
  0
974
966
  x
@@ -1009,8 +1001,8 @@ I
1009
1001
  I
1010
1002
  2
1011
1003
  x
1012
- 84
1013
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1004
+ 82
1005
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1014
1006
  p
1015
1007
  0
1016
1008
  x
@@ -1260,7 +1252,7 @@ x
1260
1252
  16
1261
1253
  stylesheet_links
1262
1254
  p
1263
- 29
1255
+ 23
1264
1256
  I
1265
1257
  -1
1266
1258
  I
@@ -1286,18 +1278,10 @@ I
1286
1278
  I
1287
1279
  2b
1288
1280
  I
1289
- 46
1290
- I
1291
- 0
1292
- I
1293
1281
  47
1294
1282
  I
1295
1283
  46
1296
1284
  I
1297
- 5d
1298
- I
1299
- 0
1300
- I
1301
1285
  5e
1302
1286
  I
1303
1287
  47
@@ -1314,14 +1298,10 @@ I
1314
1298
  I
1315
1299
  47
1316
1300
  I
1317
- 8f
1318
- I
1319
- 0
1320
- I
1321
1301
  90
1322
1302
  x
1323
- 84
1324
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1303
+ 82
1304
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1325
1305
  p
1326
1306
  1
1327
1307
  x
@@ -1375,8 +1355,8 @@ I
1375
1355
  I
1376
1356
  6
1377
1357
  x
1378
- 84
1379
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1358
+ 82
1359
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1380
1360
  p
1381
1361
  0
1382
1362
  p
@@ -1416,8 +1396,8 @@ I
1416
1396
  I
1417
1397
  72
1418
1398
  x
1419
- 84
1420
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1399
+ 82
1400
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1421
1401
  p
1422
1402
  0
1423
1403
  x
@@ -1432,8 +1412,8 @@ b
1432
1412
  I
1433
1413
  23
1434
1414
  x
1435
- 84
1436
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1415
+ 82
1416
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1437
1417
  p
1438
1418
  0
1439
1419
  x
@@ -1448,8 +1428,8 @@ a
1448
1428
  I
1449
1429
  1c
1450
1430
  x
1451
- 84
1452
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1431
+ 82
1432
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1453
1433
  p
1454
1434
  0
1455
1435
  p
@@ -1465,8 +1445,8 @@ I
1465
1445
  I
1466
1446
  36
1467
1447
  x
1468
- 84
1469
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1448
+ 82
1449
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1470
1450
  p
1471
1451
  0
1472
1452
  x
@@ -1481,7 +1461,7 @@ I
1481
1461
  I
1482
1462
  1c
1483
1463
  x
1484
- 84
1485
- /Users/crispee/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1464
+ 82
1465
+ /Users/chris/Projects/compass/lib/compass/app_integration/stand_alone/installer.rb
1486
1466
  p
1487
1467
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -518,7 +518,7 @@ x
518
518
  2
519
519
  <<
520
520
  p
521
- 19
521
+ 15
522
522
  I
523
523
  0
524
524
  I
@@ -536,10 +536,6 @@ I
536
536
  I
537
537
  19
538
538
  I
539
- 25
540
- I
541
- 0
542
- I
543
539
  26
544
540
  I
545
541
  1b
@@ -552,14 +548,10 @@ I
552
548
  I
553
549
  1d
554
550
  I
555
- 6b
556
- I
557
- 0
558
- I
559
551
  6c
560
552
  x
561
- 62
562
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
553
+ 60
554
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
563
555
  p
564
556
  1
565
557
  x
@@ -581,8 +573,8 @@ I
581
573
  I
582
574
  8
583
575
  x
584
- 62
585
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
576
+ 60
577
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
586
578
  p
587
579
  2
588
580
  x
@@ -795,8 +787,8 @@ I
795
787
  I
796
788
  f
797
789
  x
798
- 62
799
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
790
+ 60
791
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
800
792
  p
801
793
  1
802
794
  x
@@ -806,7 +798,7 @@ x
806
798
  7
807
799
  reject!
808
800
  p
809
- 13
801
+ 11
810
802
  I
811
803
  0
812
804
  I
@@ -824,18 +816,14 @@ I
824
816
  I
825
817
  2f
826
818
  I
827
- 25
828
- I
829
- 0
830
- I
831
819
  26
832
820
  I
833
821
  31
834
822
  I
835
823
  38
836
824
  x
837
- 62
838
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
825
+ 60
826
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
839
827
  p
840
828
  1
841
829
  x
@@ -857,8 +845,8 @@ I
857
845
  I
858
846
  8
859
847
  x
860
- 62
861
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
848
+ 60
849
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
862
850
  p
863
851
  2
864
852
  x
@@ -955,8 +943,8 @@ I
955
943
  I
956
944
  23
957
945
  x
958
- 62
959
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
946
+ 60
947
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
960
948
  p
961
949
  2
962
950
  x
@@ -1054,8 +1042,8 @@ I
1054
1042
  I
1055
1043
  21
1056
1044
  x
1057
- 62
1058
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
1045
+ 60
1046
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
1059
1047
  p
1060
1048
  1
1061
1049
  x
@@ -1106,8 +1094,8 @@ I
1106
1094
  I
1107
1095
  81
1108
1096
  x
1109
- 62
1110
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
1097
+ 60
1098
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
1111
1099
  p
1112
1100
  0
1113
1101
  x
@@ -1122,8 +1110,8 @@ I
1122
1110
  I
1123
1111
  1c
1124
1112
  x
1125
- 62
1126
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
1113
+ 60
1114
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
1127
1115
  p
1128
1116
  0
1129
1117
  x
@@ -1138,7 +1126,7 @@ I
1138
1126
  I
1139
1127
  1c
1140
1128
  x
1141
- 62
1142
- /Users/crispee/Projects/compass/lib/compass/browser_support.rb
1129
+ 60
1130
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
1143
1131
  p
1144
1132
  0