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
@@ -178,16 +178,12 @@ x
178
178
  5
179
179
  raise
180
180
  p
181
- 23
181
+ 17
182
182
  I
183
183
  0
184
184
  I
185
185
  2
186
186
  I
187
- 12
188
- I
189
- 0
190
- I
191
187
  17
192
188
  I
193
189
  3
@@ -200,10 +196,6 @@ I
200
196
  I
201
197
  6
202
198
  I
203
- 3f
204
- I
205
- 0
206
- I
207
199
  44
208
200
  I
209
201
  7
@@ -220,13 +212,9 @@ I
220
212
  I
221
213
  a
222
214
  I
223
- 6e
224
- I
225
- 0
226
- I
227
215
  7f
228
216
  x
229
- 59
230
- /Users/crispee/Projects/compass/lib/compass/dependencies.rb
217
+ 57
218
+ /Users/chris/Projects/compass/lib/compass/dependencies.rb
231
219
  p
232
220
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -154,8 +154,8 @@ I
154
154
  I
155
155
  29
156
156
  x
157
- 53
158
- /Users/crispee/Projects/compass/lib/compass/errors.rb
157
+ 51
158
+ /Users/chris/Projects/compass/lib/compass/errors.rb
159
159
  p
160
160
  0
161
161
  x
@@ -170,7 +170,7 @@ I
170
170
  I
171
171
  1c
172
172
  x
173
- 53
174
- /Users/crispee/Projects/compass/lib/compass/errors.rb
173
+ 51
174
+ /Users/chris/Projects/compass/lib/compass/errors.rb
175
175
  p
176
176
  0
@@ -13,17 +13,11 @@ module Compass
13
13
  options = arguments.last.is_a?(Hash) ? arguments.pop : {}
14
14
  self.path = path = options[:path] || arguments.shift
15
15
  @name = name
16
- @templates_directory = options[:templates_directory]
17
- @templates_directory ||= File.join(path, 'templates') if path
18
- @stylesheets_directory = options[:stylesheets_directory]
19
- @stylesheets_directory ||= File.join(path, 'stylesheets') if path
16
+ @templates_directory = options[:templates_directory] || File.join(path, 'templates')
17
+ @stylesheets_directory = options[:stylesheets_directory] || File.join(path, 'stylesheets')
20
18
  end
21
19
  def template_directories
22
- if templates_directory
23
- Dir.glob(File.join(templates_directory, "*")).map{|f| File.basename(f)}
24
- else
25
- []
26
- end
20
+ Dir.glob(File.join(templates_directory, "*")).map{|f| File.basename(f)}
27
21
  end
28
22
  def manifest_file(pattern)
29
23
  File.join(templates_directory, pattern.to_s, "manifest.rb")
@@ -82,7 +76,7 @@ module Compass
82
76
  def template_exists?(template)
83
77
  framework_name, template = template.split(%r{/}, 2)
84
78
  template ||= "project"
85
- if (framework = self[framework_name]) && framework.templates_directory
79
+ if framework = self[framework_name]
86
80
  return File.directory?(File.join(framework.templates_directory, template))
87
81
  end
88
82
  false
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -677,7 +677,7 @@ x
677
677
  22
678
678
  @stylesheets_directory
679
679
  p
680
- 17
680
+ 15
681
681
  I
682
682
  -1
683
683
  I
@@ -687,10 +687,6 @@ I
687
687
  I
688
688
  d
689
689
  I
690
- 1b
691
- I
692
- d
693
- I
694
690
  1e
695
691
  I
696
692
  7f
@@ -713,8 +709,8 @@ I
713
709
  I
714
710
  71
715
711
  x
716
- 57
717
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
712
+ 55
713
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
718
714
  p
719
715
  4
720
716
  x
@@ -856,8 +852,8 @@ I
856
852
  I
857
853
  d
858
854
  x
859
- 57
860
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
855
+ 55
856
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
861
857
  p
862
858
  1
863
859
  x
@@ -879,8 +875,8 @@ I
879
875
  I
880
876
  18
881
877
  x
882
- 57
883
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
878
+ 55
879
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
884
880
  p
885
881
  0
886
882
  x
@@ -953,8 +949,8 @@ I
953
949
  I
954
950
  12
955
951
  x
956
- 57
957
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
952
+ 55
953
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
958
954
  p
959
955
  1
960
956
  x
@@ -1127,8 +1123,8 @@ I
1127
1123
  I
1128
1124
  5a
1129
1125
  x
1130
- 57
1131
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1126
+ 55
1127
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1132
1128
  p
1133
1129
  2
1134
1130
  x
@@ -1170,8 +1166,8 @@ I
1170
1166
  I
1171
1167
  54
1172
1168
  x
1173
- 57
1174
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1169
+ 55
1170
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1175
1171
  p
1176
1172
  0
1177
1173
  x
@@ -1235,7 +1231,7 @@ x
1235
1231
  11
1236
1232
  @registered
1237
1233
  p
1238
- 13
1234
+ 11
1239
1235
  I
1240
1236
  -1
1241
1237
  I
@@ -1257,14 +1253,10 @@ I
1257
1253
  I
1258
1254
  24
1259
1255
  I
1260
- 1a
1261
- I
1262
- 24
1263
- I
1264
1256
  1f
1265
1257
  x
1266
- 57
1267
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1258
+ 55
1259
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1268
1260
  p
1269
1261
  0
1270
1262
  x
@@ -1383,7 +1375,7 @@ x
1383
1375
  2
1384
1376
  <<
1385
1377
  p
1386
- 13
1378
+ 11
1387
1379
  I
1388
1380
  -1
1389
1381
  I
@@ -1405,14 +1397,10 @@ I
1405
1397
  I
1406
1398
  2c
1407
1399
  I
1408
- 38
1409
- I
1410
- 0
1411
- I
1412
1400
  39
1413
1401
  x
1414
- 57
1415
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1402
+ 55
1403
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1416
1404
  p
1417
1405
  3
1418
1406
  x
@@ -1524,8 +1512,8 @@ I
1524
1512
  I
1525
1513
  15
1526
1514
  x
1527
- 57
1528
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1515
+ 55
1516
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1529
1517
  p
1530
1518
  1
1531
1519
  x
@@ -1547,8 +1535,8 @@ I
1547
1535
  I
1548
1536
  9
1549
1537
  x
1550
- 57
1551
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1538
+ 55
1539
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1552
1540
  p
1553
1541
  1
1554
1542
  x
@@ -1769,8 +1757,8 @@ I
1769
1757
  I
1770
1758
  1c
1771
1759
  x
1772
- 57
1773
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1760
+ 55
1761
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1774
1762
  p
1775
1763
  1
1776
1764
  x
@@ -1871,20 +1859,16 @@ x
1871
1859
  2
1872
1860
  []
1873
1861
  p
1874
- 5
1862
+ 3
1875
1863
  I
1876
1864
  0
1877
1865
  I
1878
1866
  37
1879
1867
  I
1880
- 2e
1881
- I
1882
- 0
1883
- I
1884
1868
  2f
1885
1869
  x
1886
- 57
1887
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1870
+ 55
1871
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1888
1872
  p
1889
1873
  1
1890
1874
  x
@@ -1968,8 +1952,8 @@ I
1968
1952
  I
1969
1953
  18
1970
1954
  x
1971
- 57
1972
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1955
+ 55
1956
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
1973
1957
  p
1974
1958
  1
1975
1959
  x
@@ -1979,7 +1963,7 @@ x
1979
1963
  4
1980
1964
  each
1981
1965
  p
1982
- 15
1966
+ 11
1983
1967
  I
1984
1968
  -1
1985
1969
  I
@@ -1989,18 +1973,10 @@ I
1989
1973
  I
1990
1974
  35
1991
1975
  I
1992
- 10
1993
- I
1994
- 0
1995
- I
1996
1976
  11
1997
1977
  I
1998
1978
  36
1999
1979
  I
2000
- 3c
2001
- I
2002
- 0
2003
- I
2004
1980
  3d
2005
1981
  I
2006
1982
  37
@@ -2011,8 +1987,8 @@ I
2011
1987
  I
2012
1988
  57
2013
1989
  x
2014
- 57
2015
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
1990
+ 55
1991
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
2016
1992
  p
2017
1993
  2
2018
1994
  x
@@ -2228,8 +2204,8 @@ I
2228
2204
  I
2229
2205
  d
2230
2206
  x
2231
- 57
2232
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2207
+ 55
2208
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
2233
2209
  p
2234
2210
  1
2235
2211
  x
@@ -2285,20 +2261,16 @@ x
2285
2261
  7
2286
2262
  require
2287
2263
  p
2288
- 5
2264
+ 3
2289
2265
  I
2290
2266
  0
2291
2267
  I
2292
2268
  45
2293
2269
  I
2294
- 10
2295
- I
2296
- 0
2297
- I
2298
2270
  11
2299
2271
  x
2300
- 57
2301
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2272
+ 55
2273
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
2302
2274
  p
2303
2275
  0
2304
2276
  x
@@ -2309,7 +2281,7 @@ x
2309
2281
  8
2310
2282
  register
2311
2283
  p
2312
- 21
2284
+ 19
2313
2285
  I
2314
2286
  -1
2315
2287
  I
@@ -2347,14 +2319,10 @@ I
2347
2319
  I
2348
2320
  48
2349
2321
  I
2350
- 67
2351
- I
2352
- 0
2353
- I
2354
2322
  68
2355
2323
  x
2356
- 57
2357
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2324
+ 55
2325
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
2358
2326
  p
2359
2327
  4
2360
2328
  x
@@ -2511,7 +2479,7 @@ x
2511
2479
  10
2512
2480
  directory?
2513
2481
  p
2514
- 17
2482
+ 15
2515
2483
  I
2516
2484
  -1
2517
2485
  I
@@ -2537,18 +2505,14 @@ I
2537
2505
  I
2538
2506
  4f
2539
2507
  I
2540
- 52
2541
- I
2542
- 0
2543
- I
2544
2508
  53
2545
2509
  I
2546
2510
  52
2547
2511
  I
2548
2512
  55
2549
2513
  x
2550
- 57
2551
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2514
+ 55
2515
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
2552
2516
  p
2553
2517
  3
2554
2518
  x
@@ -2787,7 +2751,7 @@ x
2787
2751
  4
2788
2752
  gsub
2789
2753
  p
2790
- 23
2754
+ 21
2791
2755
  I
2792
2756
  -1
2793
2757
  I
@@ -2829,14 +2793,10 @@ I
2829
2793
  I
2830
2794
  5f
2831
2795
  I
2832
- 8e
2833
- I
2834
- 0
2835
- I
2836
2796
  8f
2837
2797
  x
2838
- 57
2839
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
2798
+ 55
2799
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
2840
2800
  p
2841
2801
  5
2842
2802
  x
@@ -3086,8 +3046,8 @@ I
3086
3046
  I
3087
3047
  26
3088
3048
  x
3089
- 57
3090
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3049
+ 55
3050
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
3091
3051
  p
3092
3052
  2
3093
3053
  x
@@ -3119,8 +3079,8 @@ I
3119
3079
  I
3120
3080
  22
3121
3081
  x
3122
- 57
3123
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3082
+ 55
3083
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
3124
3084
  p
3125
3085
  3
3126
3086
  x
@@ -3409,7 +3369,7 @@ s
3409
3369
 
3410
3370
 
3411
3371
  p
3412
- 15
3372
+ 13
3413
3373
  I
3414
3374
  0
3415
3375
  I
@@ -3431,18 +3391,14 @@ I
3431
3391
  I
3432
3392
  73
3433
3393
  I
3434
- 46
3435
- I
3436
- 0
3437
- I
3438
3394
  47
3439
3395
  I
3440
3396
  76
3441
3397
  I
3442
3398
  51
3443
3399
  x
3444
- 57
3445
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3400
+ 55
3401
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
3446
3402
  p
3447
3403
  2
3448
3404
  x
@@ -3455,7 +3411,7 @@ x
3455
3411
  4
3456
3412
  each
3457
3413
  p
3458
- 15
3414
+ 11
3459
3415
  I
3460
3416
  0
3461
3417
  I
@@ -3465,10 +3421,6 @@ I
3465
3421
  I
3466
3422
  6e
3467
3423
  I
3468
- 25
3469
- I
3470
- 0
3471
- I
3472
3424
  26
3473
3425
  I
3474
3426
  6f
@@ -3481,14 +3433,10 @@ I
3481
3433
  I
3482
3434
  71
3483
3435
  I
3484
- 4d
3485
- I
3486
- 0
3487
- I
3488
3436
  4e
3489
3437
  x
3490
- 57
3491
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3438
+ 55
3439
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
3492
3440
  p
3493
3441
  1
3494
3442
  x
@@ -3522,8 +3470,8 @@ I
3522
3470
  I
3523
3471
  2e
3524
3472
  x
3525
- 57
3526
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3473
+ 55
3474
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
3527
3475
  p
3528
3476
  3
3529
3477
  x
@@ -3588,8 +3536,8 @@ I
3588
3536
  I
3589
3537
  b3
3590
3538
  x
3591
- 57
3592
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3539
+ 55
3540
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
3593
3541
  p
3594
3542
  0
3595
3543
  x
@@ -3604,8 +3552,8 @@ I
3604
3552
  I
3605
3553
  1c
3606
3554
  x
3607
- 57
3608
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3555
+ 55
3556
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
3609
3557
  p
3610
3558
  0
3611
3559
  x
@@ -3634,7 +3582,7 @@ I
3634
3582
  I
3635
3583
  27
3636
3584
  x
3637
- 57
3638
- /Users/crispee/Projects/compass/lib/compass/frameworks.rb
3585
+ 55
3586
+ /Users/chris/Projects/compass/lib/compass/frameworks.rb
3639
3587
  p
3640
3588
  0