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