compass 0.12.alpha.0 → 0.12.alpha.1

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 (206) hide show
  1. data/Rakefile +1 -0
  2. data/VERSION.yml +1 -1
  3. data/bin/compass +1 -1
  4. data/bin/compass.compiled.rbc +707 -0
  5. data/examples/downloader.rb +3 -2
  6. data/examples/ninesixty/bootstrap.rb +1 -1
  7. data/features/command_line.feature +17 -17
  8. data/features/extensions.feature +6 -0
  9. data/features/step_definitions/command_line_steps.rb +2 -0
  10. data/frameworks/compass/stylesheets/compass/_support.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +7 -24
  12. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +0 -15
  13. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +12 -12
  14. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +6 -20
  15. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +38 -24
  16. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  17. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  18. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  19. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  20. data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +29 -6
  21. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  22. data/lib/compass.rbc +42 -36
  23. data/lib/compass/actions.rb +0 -1
  24. data/lib/compass/actions.rbc +244 -85
  25. data/lib/compass/app_integration.rbc +28 -20
  26. data/lib/compass/app_integration/merb.rbc +8 -4
  27. data/lib/compass/app_integration/rails.rbc +664 -148
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +23 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +8 -10
  30. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  31. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  32. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  33. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  34. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  35. data/lib/compass/browser_support.rbc +35 -23
  36. data/lib/compass/commands.rbc +307 -0
  37. data/lib/compass/commands/base.rbc +1044 -0
  38. data/lib/compass/commands/clean_project.rbc +1856 -0
  39. data/lib/compass/commands/create_project.rbc +2691 -0
  40. data/lib/compass/commands/default.rbc +1677 -0
  41. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  42. data/lib/compass/commands/help.rbc +1921 -0
  43. data/lib/compass/commands/imports.rbc +969 -0
  44. data/lib/compass/commands/installer_command.rbc +807 -0
  45. data/lib/compass/commands/interactive.rbc +1341 -0
  46. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  47. data/lib/compass/commands/print_version.rbc +2478 -0
  48. data/lib/compass/commands/project_base.rbc +2085 -0
  49. data/lib/compass/commands/project_stats.rb +7 -7
  50. data/lib/compass/commands/project_stats.rbc +4202 -0
  51. data/lib/compass/commands/registry.rbc +1350 -0
  52. data/lib/compass/commands/sprite.rbc +2212 -0
  53. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  54. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  55. data/lib/compass/commands/update_project.rbc +3002 -0
  56. data/lib/compass/commands/validate_project.rbc +1686 -0
  57. data/lib/compass/commands/watch_project.rbc +4155 -0
  58. data/lib/compass/commands/write_configuration.rbc +2896 -0
  59. data/lib/compass/compiler.rb +3 -0
  60. data/lib/compass/compiler.rbc +591 -398
  61. data/lib/compass/configuration.rbc +134 -78
  62. data/lib/compass/configuration/adapters.rbc +98 -40
  63. data/lib/compass/configuration/comments.rbc +132 -51
  64. data/lib/compass/configuration/data.rb +6 -0
  65. data/lib/compass/configuration/data.rbc +541 -551
  66. data/lib/compass/configuration/defaults.rbc +764 -189
  67. data/lib/compass/configuration/file_data.rbc +37 -125
  68. data/lib/compass/configuration/helpers.rb +1 -0
  69. data/lib/compass/configuration/helpers.rbc +433 -153
  70. data/lib/compass/configuration/inheritance.rb +2 -0
  71. data/lib/compass/configuration/inheritance.rbc +412 -165
  72. data/lib/compass/configuration/paths.rbc +9 -9
  73. data/lib/compass/configuration/serialization.rbc +151 -84
  74. data/lib/compass/dependencies.rbc +16 -4
  75. data/lib/compass/errors.rbc +5 -5
  76. data/lib/compass/exec.rbc +500 -0
  77. data/lib/compass/exec/command_option_parser.rbc +676 -0
  78. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  79. data/lib/compass/exec/helpers.rbc +758 -0
  80. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  81. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  82. data/lib/compass/frameworks.rb +10 -4
  83. data/lib/compass/frameworks.rbc +118 -66
  84. data/lib/compass/grid_builder.rbc +0 -0
  85. data/lib/compass/installers.rbc +152 -0
  86. data/lib/compass/installers/bare_installer.rbc +939 -0
  87. data/lib/compass/installers/base.rbc +4427 -0
  88. data/lib/compass/installers/manifest.rbc +3335 -0
  89. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  90. data/lib/compass/installers/template_context.rbc +1030 -0
  91. data/lib/compass/logger.rbc +2317 -0
  92. data/lib/compass/quick_cache.rbc +12 -8
  93. data/lib/compass/sass_extensions.rbc +8 -4
  94. data/lib/compass/sass_extensions/functions.rb +4 -2
  95. data/lib/compass/sass_extensions/functions.rbc +90 -57
  96. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  97. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  98. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  99. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  100. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  101. data/lib/compass/sass_extensions/functions/env.rb +5 -0
  102. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  103. data/lib/compass/sass_extensions/functions/font_files.rb +32 -3
  104. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  105. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  106. data/lib/compass/sass_extensions/functions/image_size.rb +19 -16
  107. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  108. data/lib/compass/sass_extensions/functions/inline_image.rb +1 -1
  109. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  110. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  111. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  112. data/lib/compass/sass_extensions/functions/sprites.rb +27 -4
  113. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  114. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  115. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  116. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  117. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  118. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  119. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  120. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  121. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  122. data/lib/compass/sass_extensions/sprites/image.rb +5 -5
  123. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  124. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  125. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  126. data/lib/compass/sass_extensions/sprites/layout_methods.rb +12 -8
  127. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  128. data/lib/compass/sass_extensions/sprites/row_fitter.rb +7 -1
  129. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  130. data/lib/compass/sass_extensions/sprites/sprite_map.rb +1 -1
  131. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  132. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +24 -4
  133. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  134. data/lib/compass/sprite_importer.rb +15 -80
  135. data/lib/compass/sprite_importer.rbc +1125 -1495
  136. data/lib/compass/sprite_importer/binding.rb +11 -0
  137. data/lib/compass/sprite_importer/content.erb +81 -0
  138. data/lib/compass/util.rbc +19 -11
  139. data/lib/compass/version.rbc +53 -25
  140. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  141. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  142. data/test/fixtures/fonts/bgrove.base64.txt +1 -0
  143. data/test/fixtures/fonts/bgrove.ttf +0 -0
  144. data/test/fixtures/sprites/public/images/bool/false.png +0 -0
  145. data/test/fixtures/sprites/public/images/bool/true.png +0 -0
  146. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -2
  147. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -2
  148. data/test/fixtures/stylesheets/compass/css/border_radius.css +6 -9
  149. data/test/fixtures/stylesheets/compass/css/box.css +0 -19
  150. data/test/fixtures/stylesheets/compass/css/box_shadow.css +3 -6
  151. data/test/fixtures/stylesheets/compass/css/columns.css +8 -16
  152. data/test/fixtures/stylesheets/compass/css/grid_background.css +4 -8
  153. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  154. data/test/fixtures/stylesheets/compass/css/pie.css +2 -3
  155. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  156. data/test/fixtures/stylesheets/compass/css/sprites.css +1 -1
  157. data/test/fixtures/stylesheets/compass/css/text_shadow.css +0 -3
  158. data/test/fixtures/stylesheets/compass/css/transform.css +28 -92
  159. data/test/fixtures/stylesheets/compass/css/transition.css +11 -0
  160. data/test/fixtures/stylesheets/compass/css/user-interface.css +4 -0
  161. data/test/fixtures/stylesheets/compass/images/{flag-s8c3c755a68.png → flag-s8f1e8fdb9b.png} +0 -0
  162. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +0 -1
  163. data/test/fixtures/stylesheets/compass/sass/transition.scss +4 -0
  164. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  165. data/test/fixtures/stylesheets/envtest/config.rb +9 -0
  166. data/test/fixtures/stylesheets/envtest/css/env.css +2 -0
  167. data/test/fixtures/stylesheets/envtest/sass/env.scss +3 -0
  168. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  169. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  170. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  171. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  172. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  173. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  174. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  175. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  176. data/test/helpers/command_line.rbc +2820 -0
  177. data/test/helpers/diff.rbc +1104 -0
  178. data/test/helpers/io.rbc +962 -0
  179. data/test/helpers/rails.rbc +1116 -0
  180. data/test/helpers/test_case.rbc +1255 -0
  181. data/test/integrations/compass_test.rb +24 -2
  182. data/test/integrations/compass_test.rbc +6589 -0
  183. data/test/integrations/rails_integration_test.rbc +1342 -0
  184. data/test/integrations/sprites_test.rb +123 -25
  185. data/test/integrations/sprites_test.rbc +6192 -0
  186. data/test/test_helper.rb +7 -5
  187. data/test/test_helper.rbc +1694 -0
  188. data/test/tmp/compass_rails/public/images/{selectors-sef52c5c63a.png → selectors-s4c703bbc05.png} +0 -0
  189. data/test/units/actions_test.rbc +644 -0
  190. data/test/units/command_line_test.rbc +1532 -0
  191. data/test/units/compass_png_test.rbc +0 -0
  192. data/test/units/configuration_test.rbc +3833 -0
  193. data/test/units/rails_configuration_test.rbc +1032 -0
  194. data/test/units/sass_extensions_test.rb +31 -0
  195. data/test/units/sass_extensions_test.rbc +3586 -0
  196. data/test/units/sprites/engine_test.rbc +962 -0
  197. data/test/units/sprites/image_row_test.rbc +1578 -0
  198. data/test/units/sprites/image_test.rb +3 -3
  199. data/test/units/sprites/image_test.rbc +2836 -0
  200. data/test/units/sprites/importer_test.rb +6 -0
  201. data/test/units/sprites/importer_test.rbc +2620 -0
  202. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  203. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  204. data/test/units/sprites/sprite_map_test.rb +19 -6
  205. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  206. metadata +180 -54
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -581,8 +581,8 @@ I
581
581
  I
582
582
  c
583
583
  x
584
- 87
585
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
584
+ 89
585
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
586
586
  p
587
587
  0
588
588
  x
@@ -792,7 +792,7 @@ x
792
792
  5
793
793
  stop=
794
794
  p
795
- 17
795
+ 21
796
796
  I
797
797
  -1
798
798
  I
@@ -806,6 +806,10 @@ I
806
806
  I
807
807
  c
808
808
  I
809
+ 3a
810
+ I
811
+ 0
812
+ I
809
813
  3b
810
814
  I
811
815
  e
@@ -818,6 +822,10 @@ I
818
822
  I
819
823
  e
820
824
  I
825
+ 6b
826
+ I
827
+ 0
828
+ I
821
829
  6c
822
830
  I
823
831
  11
@@ -828,8 +836,8 @@ I
828
836
  I
829
837
  82
830
838
  x
831
- 87
832
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
839
+ 89
840
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
833
841
  p
834
842
  2
835
843
  x
@@ -881,8 +889,8 @@ I
881
889
  I
882
890
  4
883
891
  x
884
- 87
885
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
892
+ 89
893
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
886
894
  p
887
895
  0
888
896
  x
@@ -1079,7 +1087,7 @@ x
1079
1087
  5
1080
1088
  times
1081
1089
  p
1082
- 19
1090
+ 23
1083
1091
  I
1084
1092
  -1
1085
1093
  I
@@ -1109,18 +1117,26 @@ I
1109
1117
  I
1110
1118
  1d
1111
1119
  I
1120
+ 72
1121
+ I
1122
+ 0
1123
+ I
1112
1124
  74
1113
1125
  I
1114
1126
  18
1115
1127
  I
1128
+ 75
1129
+ I
1130
+ 0
1131
+ I
1116
1132
  76
1117
1133
  I
1118
1134
  20
1119
1135
  I
1120
1136
  79
1121
1137
  x
1122
- 87
1123
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1138
+ 89
1139
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1124
1140
  p
1125
1141
  2
1126
1142
  x
@@ -1154,8 +1170,8 @@ I
1154
1170
  I
1155
1171
  44
1156
1172
  x
1157
- 87
1158
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1173
+ 89
1174
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1159
1175
  p
1160
1176
  0
1161
1177
  x
@@ -1337,8 +1353,8 @@ I
1337
1353
  I
1338
1354
  9
1339
1355
  x
1340
- 87
1341
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1356
+ 89
1357
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1342
1358
  p
1343
1359
  1
1344
1360
  x
@@ -1487,8 +1503,8 @@ I
1487
1503
  I
1488
1504
  18
1489
1505
  x
1490
- 87
1491
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1506
+ 89
1507
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1492
1508
  p
1493
1509
  1
1494
1510
  x
@@ -1509,8 +1525,8 @@ I
1509
1525
  I
1510
1526
  10
1511
1527
  x
1512
- 87
1513
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1528
+ 89
1529
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1514
1530
  p
1515
1531
  0
1516
1532
  x
@@ -1556,8 +1572,8 @@ I
1556
1572
  I
1557
1573
  4
1558
1574
  x
1559
- 87
1560
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1575
+ 89
1576
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1561
1577
  p
1562
1578
  0
1563
1579
  x
@@ -1618,8 +1634,8 @@ I
1618
1634
  I
1619
1635
  9
1620
1636
  x
1621
- 87
1622
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1637
+ 89
1638
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1623
1639
  p
1624
1640
  1
1625
1641
  x
@@ -1663,8 +1679,8 @@ I
1663
1679
  I
1664
1680
  2
1665
1681
  x
1666
- 87
1667
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1682
+ 89
1683
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1668
1684
  p
1669
1685
  0
1670
1686
  x
@@ -1806,8 +1822,8 @@ I
1806
1822
  I
1807
1823
  39
1808
1824
  x
1809
- 87
1810
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1825
+ 89
1826
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1811
1827
  p
1812
1828
  1
1813
1829
  x
@@ -1842,8 +1858,8 @@ I
1842
1858
  I
1843
1859
  5f
1844
1860
  x
1845
- 87
1846
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1861
+ 89
1862
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
1847
1863
  p
1848
1864
  0
1849
1865
  x
@@ -2105,8 +2121,8 @@ I
2105
2121
  I
2106
2122
  f
2107
2123
  x
2108
- 87
2109
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2124
+ 89
2125
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2110
2126
  p
2111
2127
  0
2112
2128
  x
@@ -2270,7 +2286,7 @@ x
2270
2286
  12
2271
2287
  color_stops=
2272
2288
  p
2273
- 25
2289
+ 29
2274
2290
  I
2275
2291
  -1
2276
2292
  I
@@ -2284,6 +2300,10 @@ I
2284
2300
  I
2285
2301
  54
2286
2302
  I
2303
+ 1e
2304
+ I
2305
+ 0
2306
+ I
2287
2307
  1f
2288
2308
  I
2289
2309
  56
@@ -2296,6 +2316,10 @@ I
2296
2316
  I
2297
2317
  56
2298
2318
  I
2319
+ 38
2320
+ I
2321
+ 0
2322
+ I
2299
2323
  39
2300
2324
  I
2301
2325
  20a
@@ -2322,8 +2346,8 @@ I
2322
2346
  I
2323
2347
  5d
2324
2348
  x
2325
- 87
2326
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2349
+ 89
2350
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2327
2351
  p
2328
2352
  3
2329
2353
  x
@@ -2482,7 +2506,7 @@ s
2482
2506
  1
2483
2507
  )
2484
2508
  p
2485
- 13
2509
+ 17
2486
2510
  I
2487
2511
  -1
2488
2512
  I
@@ -2496,10 +2520,18 @@ I
2496
2520
  I
2497
2521
  60
2498
2522
  I
2523
+ 2c
2524
+ I
2525
+ 0
2526
+ I
2499
2527
  2d
2500
2528
  I
2501
2529
  61
2502
2530
  I
2531
+ 48
2532
+ I
2533
+ 0
2534
+ I
2503
2535
  49
2504
2536
  I
2505
2537
  62
@@ -2510,8 +2542,8 @@ I
2510
2542
  I
2511
2543
  60
2512
2544
  x
2513
- 87
2514
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2545
+ 89
2546
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2515
2547
  p
2516
2548
  2
2517
2549
  x
@@ -2856,8 +2888,8 @@ I
2856
2888
  I
2857
2889
  11
2858
2890
  x
2859
- 87
2860
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2891
+ 89
2892
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2861
2893
  p
2862
2894
  1
2863
2895
  x
@@ -2923,8 +2955,8 @@ I
2923
2955
  I
2924
2956
  c5
2925
2957
  x
2926
- 87
2927
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2958
+ 89
2959
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
2928
2960
  p
2929
2961
  2
2930
2962
  x
@@ -3014,8 +3046,8 @@ I
3014
3046
  I
3015
3047
  1e
3016
3048
  x
3017
- 87
3018
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3049
+ 89
3050
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3019
3051
  p
3020
3052
  1
3021
3053
  x
@@ -3183,8 +3215,8 @@ I
3183
3215
  I
3184
3216
  51
3185
3217
  x
3186
- 87
3187
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3218
+ 89
3219
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3188
3220
  p
3189
3221
  1
3190
3222
  x
@@ -3297,8 +3329,8 @@ I
3297
3329
  I
3298
3330
  2e
3299
3331
  x
3300
- 87
3301
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3332
+ 89
3333
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3302
3334
  p
3303
3335
  1
3304
3336
  x
@@ -3361,8 +3393,8 @@ I
3361
3393
  I
3362
3394
  99
3363
3395
  x
3364
- 87
3365
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3396
+ 89
3397
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3366
3398
  p
3367
3399
  0
3368
3400
  x
@@ -3613,8 +3645,8 @@ I
3613
3645
  I
3614
3646
  c
3615
3647
  x
3616
- 87
3617
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3648
+ 89
3649
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3618
3650
  p
3619
3651
  0
3620
3652
  x
@@ -3730,7 +3762,7 @@ x
3730
3762
  12
3731
3763
  color_stops=
3732
3764
  p
3733
- 15
3765
+ 17
3734
3766
  I
3735
3767
  -1
3736
3768
  I
@@ -3744,6 +3776,10 @@ I
3744
3776
  I
3745
3777
  91
3746
3778
  I
3779
+ 1e
3780
+ I
3781
+ 0
3782
+ I
3747
3783
  1f
3748
3784
  I
3749
3785
  20a
@@ -3762,8 +3798,8 @@ I
3762
3798
  I
3763
3799
  37
3764
3800
  x
3765
- 87
3766
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3801
+ 89
3802
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3767
3803
  p
3768
3804
  2
3769
3805
  x
@@ -3888,7 +3924,7 @@ s
3888
3924
  1
3889
3925
  )
3890
3926
  p
3891
- 11
3927
+ 13
3892
3928
  I
3893
3929
  -1
3894
3930
  I
@@ -3902,6 +3938,10 @@ I
3902
3938
  I
3903
3939
  99
3904
3940
  I
3941
+ 2c
3942
+ I
3943
+ 0
3944
+ I
3905
3945
  2d
3906
3946
  I
3907
3947
  9a
@@ -3912,8 +3952,8 @@ I
3912
3952
  I
3913
3953
  44
3914
3954
  x
3915
- 87
3916
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3955
+ 89
3956
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
3917
3957
  p
3918
3958
  2
3919
3959
  x
@@ -4227,8 +4267,8 @@ a9
4227
4267
  I
4228
4268
  11
4229
4269
  x
4230
- 87
4231
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4270
+ 89
4271
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4232
4272
  p
4233
4273
  1
4234
4274
  x
@@ -4286,8 +4326,8 @@ aa
4286
4326
  I
4287
4327
  aa
4288
4328
  x
4289
- 87
4290
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4329
+ 89
4330
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4291
4331
  p
4292
4332
  2
4293
4333
  x
@@ -4427,8 +4467,8 @@ ae
4427
4467
  I
4428
4468
  3d
4429
4469
  x
4430
- 87
4431
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4470
+ 89
4471
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4432
4472
  p
4433
4473
  1
4434
4474
  x
@@ -4549,8 +4589,8 @@ b4
4549
4589
  I
4550
4590
  36
4551
4591
  x
4552
- 87
4553
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4592
+ 89
4593
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4554
4594
  p
4555
4595
  1
4556
4596
  x
@@ -4663,8 +4703,8 @@ b8
4663
4703
  I
4664
4704
  2e
4665
4705
  x
4666
- 87
4667
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4706
+ 89
4707
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4668
4708
  p
4669
4709
  1
4670
4710
  x
@@ -4727,8 +4767,8 @@ b7
4727
4767
  I
4728
4768
  97
4729
4769
  x
4730
- 87
4731
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4770
+ 89
4771
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
4732
4772
  p
4733
4773
  0
4734
4774
  x
@@ -5561,8 +5601,8 @@ c7
5561
5601
  I
5562
5602
  f
5563
5603
  x
5564
- 87
5565
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
5604
+ 89
5605
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
5566
5606
  p
5567
5607
  1
5568
5608
  x
@@ -5908,7 +5948,7 @@ s
5908
5948
  center
5909
5949
  n
5910
5950
  p
5911
- 19
5951
+ 21
5912
5952
  I
5913
5953
  0
5914
5954
  I
@@ -5946,10 +5986,14 @@ da
5946
5986
  I
5947
5987
  de
5948
5988
  I
5989
+ dc
5990
+ I
5991
+ 0
5992
+ I
5949
5993
  dd
5950
5994
  x
5951
- 87
5952
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
5995
+ 89
5996
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
5953
5997
  p
5954
5998
  1
5955
5999
  x
@@ -5959,7 +6003,7 @@ x
5959
6003
  4
5960
6004
  map!
5961
6005
  p
5962
- 41
6006
+ 49
5963
6007
  I
5964
6008
  -1
5965
6009
  I
@@ -5993,6 +6037,10 @@ I
5993
6037
  I
5994
6038
  c8
5995
6039
  I
6040
+ 88
6041
+ I
6042
+ 0
6043
+ I
5996
6044
  89
5997
6045
  I
5998
6046
  ca
@@ -6005,6 +6053,10 @@ d9
6005
6053
  I
6006
6054
  ca
6007
6055
  I
6056
+ da
6057
+ I
6058
+ 0
6059
+ I
6008
6060
  db
6009
6061
  I
6010
6062
  ce
@@ -6029,10 +6081,18 @@ I
6029
6081
  I
6030
6082
  d1
6031
6083
  I
6084
+ 185
6085
+ I
6086
+ 0
6087
+ I
6032
6088
  187
6033
6089
  I
6034
6090
  ce
6035
6091
  I
6092
+ 188
6093
+ I
6094
+ 0
6095
+ I
6036
6096
  189
6037
6097
  I
6038
6098
  d5
@@ -6043,8 +6103,8 @@ e1
6043
6103
  I
6044
6104
  197
6045
6105
  x
6046
- 87
6047
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
6106
+ 89
6107
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
6048
6108
  p
6049
6109
  2
6050
6110
  x
@@ -6359,7 +6419,7 @@ x
6359
6419
  5
6360
6420
  raise
6361
6421
  p
6362
- 19
6422
+ 21
6363
6423
  I
6364
6424
  0
6365
6425
  I
@@ -6397,10 +6457,14 @@ I
6397
6457
  I
6398
6458
  ee
6399
6459
  I
6460
+ 81
6461
+ I
6462
+ 0
6463
+ I
6400
6464
  82
6401
6465
  x
6402
- 87
6403
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
6466
+ 89
6467
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
6404
6468
  p
6405
6469
  1
6406
6470
  x
@@ -6628,7 +6692,7 @@ x
6628
6692
  5
6629
6693
  raise
6630
6694
  p
6631
- 19
6695
+ 21
6632
6696
  I
6633
6697
  0
6634
6698
  I
@@ -6666,10 +6730,14 @@ I
6666
6730
  I
6667
6731
  ee
6668
6732
  I
6733
+ 81
6734
+ I
6735
+ 0
6736
+ I
6669
6737
  82
6670
6738
  x
6671
- 87
6672
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
6739
+ 89
6740
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
6673
6741
  p
6674
6742
  1
6675
6743
  x
@@ -6700,8 +6768,8 @@ f0
6700
6768
  I
6701
6769
  2f
6702
6770
  x
6703
- 87
6704
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
6771
+ 89
6772
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
6705
6773
  p
6706
6774
  1
6707
6775
  x
@@ -7023,7 +7091,7 @@ x
7023
7091
  10
7024
7092
  initialize
7025
7093
  p
7026
- 43
7094
+ 53
7027
7095
  I
7028
7096
  -1
7029
7097
  I
@@ -7057,10 +7125,18 @@ I
7057
7125
  I
7058
7126
  f8
7059
7127
  I
7128
+ 31
7129
+ I
7130
+ 0
7131
+ I
7060
7132
  32
7061
7133
  I
7062
7134
  fd
7063
7135
  I
7136
+ 4b
7137
+ I
7138
+ 0
7139
+ I
7064
7140
  4c
7065
7141
  I
7066
7142
  ff
@@ -7089,10 +7165,18 @@ I
7089
7165
  I
7090
7166
  102
7091
7167
  I
7168
+ 7d
7169
+ I
7170
+ 0
7171
+ I
7092
7172
  7e
7093
7173
  I
7094
7174
  106
7095
7175
  I
7176
+ 97
7177
+ I
7178
+ 0
7179
+ I
7096
7180
  98
7097
7181
  I
7098
7182
  109
@@ -7105,14 +7189,18 @@ bc
7105
7189
  I
7106
7190
  109
7107
7191
  I
7192
+ bd
7193
+ I
7194
+ 0
7195
+ I
7108
7196
  be
7109
7197
  I
7110
7198
  10c
7111
7199
  I
7112
7200
  f5
7113
7201
  x
7114
- 87
7115
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
7202
+ 89
7203
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
7116
7204
  p
7117
7205
  3
7118
7206
  x
@@ -7356,7 +7444,7 @@ x
7356
7444
  10
7357
7445
  initialize
7358
7446
  p
7359
- 27
7447
+ 33
7360
7448
  I
7361
7449
  -1
7362
7450
  I
@@ -7390,10 +7478,18 @@ I
7390
7478
  I
7391
7479
  113
7392
7480
  I
7481
+ 31
7482
+ I
7483
+ 0
7484
+ I
7393
7485
  32
7394
7486
  I
7395
7487
  117
7396
7488
  I
7489
+ 4b
7490
+ I
7491
+ 0
7492
+ I
7397
7493
  4c
7398
7494
  I
7399
7495
  11a
@@ -7406,14 +7502,18 @@ I
7406
7502
  I
7407
7503
  11a
7408
7504
  I
7505
+ 6d
7506
+ I
7507
+ 0
7508
+ I
7409
7509
  6e
7410
7510
  I
7411
7511
  11d
7412
7512
  I
7413
7513
  a1
7414
7514
  x
7415
- 87
7416
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
7515
+ 89
7516
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
7417
7517
  p
7418
7518
  3
7419
7519
  x
@@ -7599,8 +7699,8 @@ I
7599
7699
  I
7600
7700
  23
7601
7701
  x
7602
- 87
7603
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
7702
+ 89
7703
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
7604
7704
  p
7605
7705
  2
7606
7706
  x
@@ -7654,8 +7754,8 @@ I
7654
7754
  I
7655
7755
  3c
7656
7756
  x
7657
- 87
7658
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
7757
+ 89
7758
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
7659
7759
  p
7660
7760
  2
7661
7761
  x
@@ -8140,7 +8240,7 @@ x
8140
8240
  5
8141
8241
  color
8142
8242
  p
8143
- 17
8243
+ 21
8144
8244
  I
8145
8245
  0
8146
8246
  I
@@ -8154,6 +8254,10 @@ c
8154
8254
  I
8155
8255
  130
8156
8256
  I
8257
+ 6c
8258
+ I
8259
+ 0
8260
+ I
8157
8261
  6d
8158
8262
  I
8159
8263
  132
@@ -8166,6 +8270,10 @@ I
8166
8270
  I
8167
8271
  132
8168
8272
  I
8273
+ 109
8274
+ I
8275
+ 0
8276
+ I
8169
8277
  10a
8170
8278
  I
8171
8279
  135
@@ -8176,8 +8284,8 @@ I
8176
8284
  I
8177
8285
  11a
8178
8286
  x
8179
- 87
8180
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
8287
+ 89
8288
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
8181
8289
  p
8182
8290
  2
8183
8291
  x
@@ -8218,8 +8326,8 @@ I
8218
8326
  I
8219
8327
  33
8220
8328
  x
8221
- 87
8222
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
8329
+ 89
8330
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
8223
8331
  p
8224
8332
  4
8225
8333
  x
@@ -8676,7 +8784,7 @@ x
8676
8784
  []=
8677
8785
  n
8678
8786
  p
8679
- 27
8787
+ 31
8680
8788
  I
8681
8789
  -1
8682
8790
  I
@@ -8722,18 +8830,26 @@ I
8722
8830
  I
8723
8831
  145
8724
8832
  I
8833
+ 161
8834
+ I
8835
+ 0
8836
+ I
8725
8837
  163
8726
8838
  I
8727
8839
  140
8728
8840
  I
8841
+ 164
8842
+ I
8843
+ 0
8844
+ I
8729
8845
  165
8730
8846
  I
8731
8847
  14a
8732
8848
  I
8733
8849
  168
8734
8850
  x
8735
- 87
8736
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
8851
+ 89
8852
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
8737
8853
  p
8738
8854
  6
8739
8855
  x
@@ -8975,8 +9091,8 @@ I
8975
9091
  I
8976
9092
  8a
8977
9093
  x
8978
- 87
8979
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
9094
+ 89
9095
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
8980
9096
  p
8981
9097
  3
8982
9098
  x
@@ -9562,7 +9678,7 @@ x
9562
9678
  17
9563
9679
  denominator_units
9564
9680
  p
9565
- 37
9681
+ 47
9566
9682
  I
9567
9683
  -1
9568
9684
  I
@@ -9600,10 +9716,18 @@ I
9600
9716
  I
9601
9717
  15f
9602
9718
  I
9719
+ cb
9720
+ I
9721
+ 0
9722
+ I
9603
9723
  cd
9604
9724
  I
9605
9725
  159
9606
9726
  I
9727
+ ce
9728
+ I
9729
+ 0
9730
+ I
9607
9731
  cf
9608
9732
  I
9609
9733
  162
@@ -9616,10 +9740,18 @@ I
9616
9740
  I
9617
9741
  162
9618
9742
  I
9743
+ 147
9744
+ I
9745
+ 0
9746
+ I
9619
9747
  148
9620
9748
  I
9621
9749
  165
9622
9750
  I
9751
+ 181
9752
+ I
9753
+ 0
9754
+ I
9623
9755
  182
9624
9756
  I
9625
9757
  166
@@ -9636,10 +9768,14 @@ I
9636
9768
  I
9637
9769
  16a
9638
9770
  I
9771
+ 1c5
9772
+ I
9773
+ 0
9774
+ I
9639
9775
  1c6
9640
9776
  x
9641
- 87
9642
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
9777
+ 89
9778
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
9643
9779
  p
9644
9780
  6
9645
9781
  x
@@ -9861,8 +9997,8 @@ I
9861
9997
  I
9862
9998
  70
9863
9999
  x
9864
- 87
9865
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
10000
+ 89
10001
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
9866
10002
  p
9867
10003
  8
9868
10004
  x
@@ -10117,8 +10253,8 @@ I
10117
10253
  I
10118
10254
  7b
10119
10255
  x
10120
- 87
10121
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
10256
+ 89
10257
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
10122
10258
  p
10123
10259
  7
10124
10260
  x
@@ -10321,7 +10457,7 @@ x
10321
10457
  3
10322
10458
  ===
10323
10459
  p
10324
- 13
10460
+ 17
10325
10461
  I
10326
10462
  -1
10327
10463
  I
@@ -10343,14 +10479,22 @@ I
10343
10479
  I
10344
10480
  185
10345
10481
  I
10482
+ 53
10483
+ I
10484
+ 0
10485
+ I
10346
10486
  58
10347
10487
  I
10348
10488
  187
10349
10489
  I
10490
+ 6e
10491
+ I
10492
+ 0
10493
+ I
10350
10494
  72
10351
10495
  x
10352
- 87
10353
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
10496
+ 89
10497
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
10354
10498
  p
10355
10499
  1
10356
10500
  x
@@ -10840,8 +10984,8 @@ I
10840
10984
  I
10841
10985
  a
10842
10986
  x
10843
- 87
10844
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
10987
+ 89
10988
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
10845
10989
  p
10846
10990
  1
10847
10991
  x
@@ -11199,7 +11343,7 @@ x
11199
11343
  1
11200
11344
  +
11201
11345
  p
11202
- 11
11346
+ 13
11203
11347
  I
11204
11348
  0
11205
11349
  I
@@ -11221,17 +11365,21 @@ I
11221
11365
  I
11222
11366
  198
11223
11367
  I
11368
+ 86
11369
+ I
11370
+ 0
11371
+ I
11224
11372
  87
11225
11373
  x
11226
- 87
11227
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
11374
+ 89
11375
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
11228
11376
  p
11229
11377
  0
11230
11378
  x
11231
11379
  4
11232
11380
  each
11233
11381
  p
11234
- 11
11382
+ 13
11235
11383
  I
11236
11384
  0
11237
11385
  I
@@ -11253,10 +11401,14 @@ I
11253
11401
  I
11254
11402
  191
11255
11403
  I
11404
+ 37
11405
+ I
11406
+ 0
11407
+ I
11256
11408
  38
11257
11409
  x
11258
- 87
11259
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
11410
+ 89
11411
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
11260
11412
  p
11261
11413
  0
11262
11414
  x
@@ -11494,7 +11646,7 @@ s
11494
11646
  2
11495
11647
  px
11496
11648
  p
11497
- 13
11649
+ 15
11498
11650
  I
11499
11651
  0
11500
11652
  I
@@ -11520,10 +11672,14 @@ a0
11520
11672
  I
11521
11673
  1a1
11522
11674
  I
11675
+ a1
11676
+ I
11677
+ 0
11678
+ I
11523
11679
  a2
11524
11680
  x
11525
- 87
11526
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
11681
+ 89
11682
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
11527
11683
  p
11528
11684
  1
11529
11685
  x
@@ -11568,7 +11724,7 @@ x
11568
11724
  5
11569
11725
  class
11570
11726
  p
11571
- 27
11727
+ 35
11572
11728
  I
11573
11729
  -1
11574
11730
  I
@@ -11582,10 +11738,18 @@ d
11582
11738
  I
11583
11739
  18d
11584
11740
  I
11741
+ 44
11742
+ I
11743
+ 0
11744
+ I
11585
11745
  45
11586
11746
  I
11587
11747
  18e
11588
11748
  I
11749
+ 88
11750
+ I
11751
+ 0
11752
+ I
11589
11753
  89
11590
11754
  I
11591
11755
  190
@@ -11610,6 +11774,10 @@ I
11610
11774
  I
11611
11775
  1a6
11612
11776
  I
11777
+ 13e
11778
+ I
11779
+ 0
11780
+ I
11613
11781
  13f
11614
11782
  I
11615
11783
  1a9
@@ -11622,10 +11790,14 @@ I
11622
11790
  I
11623
11791
  1ac
11624
11792
  I
11793
+ 19a
11794
+ I
11795
+ 0
11796
+ I
11625
11797
  19b
11626
11798
  x
11627
- 87
11628
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
11799
+ 89
11800
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
11629
11801
  p
11630
11802
  5
11631
11803
  x
@@ -12032,7 +12204,7 @@ s
12032
12204
  n
12033
12205
  n
12034
12206
  p
12035
- 35
12207
+ 43
12036
12208
  I
12037
12209
  -1
12038
12210
  I
@@ -12042,10 +12214,18 @@ I
12042
12214
  I
12043
12215
  1b1
12044
12216
  I
12217
+ 2e
12218
+ I
12219
+ 0
12220
+ I
12045
12221
  2f
12046
12222
  I
12047
12223
  1b2
12048
12224
  I
12225
+ 42
12226
+ I
12227
+ 0
12228
+ I
12049
12229
  43
12050
12230
  I
12051
12231
  1b3
@@ -12086,6 +12266,10 @@ ae
12086
12266
  I
12087
12267
  1bd
12088
12268
  I
12269
+ c4
12270
+ I
12271
+ 0
12272
+ I
12089
12273
  c5
12090
12274
  I
12091
12275
  1bf
@@ -12098,14 +12282,18 @@ dd
12098
12282
  I
12099
12283
  1c2
12100
12284
  I
12285
+ f3
12286
+ I
12287
+ 0
12288
+ I
12101
12289
  f4
12102
12290
  I
12103
12291
  1c4
12104
12292
  I
12105
12293
  115
12106
12294
  x
12107
- 87
12108
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12295
+ 89
12296
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12109
12297
  p
12110
12298
  4
12111
12299
  x
@@ -12279,8 +12467,8 @@ I
12279
12467
  I
12280
12468
  c
12281
12469
  x
12282
- 87
12283
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12470
+ 89
12471
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12284
12472
  p
12285
12473
  1
12286
12474
  x
@@ -12339,15 +12527,15 @@ I
12339
12527
  I
12340
12528
  c
12341
12529
  x
12342
- 87
12343
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12530
+ 89
12531
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12344
12532
  p
12345
12533
  1
12346
12534
  x
12347
12535
  1
12348
12536
  a
12349
12537
  p
12350
- 13
12538
+ 19
12351
12539
  I
12352
12540
  -1
12353
12541
  I
@@ -12361,6 +12549,10 @@ I
12361
12549
  I
12362
12550
  1c9
12363
12551
  I
12552
+ 2c
12553
+ I
12554
+ 0
12555
+ I
12364
12556
  2e
12365
12557
  I
12366
12558
  1ca
@@ -12369,14 +12561,22 @@ I
12369
12561
  I
12370
12562
  1cb
12371
12563
  I
12564
+ 46
12565
+ I
12566
+ 0
12567
+ I
12372
12568
  48
12373
12569
  I
12374
12570
  1ca
12375
12571
  I
12572
+ 49
12573
+ I
12574
+ 0
12575
+ I
12376
12576
  4a
12377
12577
  x
12378
- 87
12379
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12578
+ 89
12579
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12380
12580
  p
12381
12581
  1
12382
12582
  x
@@ -12553,7 +12753,7 @@ x
12553
12753
  3
12554
12754
  svg
12555
12755
  p
12556
- 15
12756
+ 17
12557
12757
  I
12558
12758
  -1
12559
12759
  I
@@ -12575,6 +12775,10 @@ I
12575
12775
  I
12576
12776
  1d1
12577
12777
  I
12778
+ 24
12779
+ I
12780
+ 0
12781
+ I
12578
12782
  25
12579
12783
  I
12580
12784
  1d4
@@ -12585,8 +12789,8 @@ I
12585
12789
  I
12586
12790
  63
12587
12791
  x
12588
- 87
12589
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12792
+ 89
12793
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12590
12794
  p
12591
12795
  7
12592
12796
  x
@@ -12722,8 +12926,8 @@ I
12722
12926
  I
12723
12927
  30
12724
12928
  x
12725
- 87
12726
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12929
+ 89
12930
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12727
12931
  p
12728
12932
  5
12729
12933
  x
@@ -12869,8 +13073,8 @@ I
12869
13073
  I
12870
13074
  23
12871
13075
  x
12872
- 87
12873
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13076
+ 89
13077
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12874
13078
  p
12875
13079
  2
12876
13080
  x
@@ -12898,8 +13102,8 @@ I
12898
13102
  I
12899
13103
  e
12900
13104
  x
12901
- 87
12902
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13105
+ 89
13106
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12903
13107
  p
12904
13108
  1
12905
13109
  x
@@ -12970,8 +13174,8 @@ I
12970
13174
  I
12971
13175
  e
12972
13176
  x
12973
- 87
12974
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13177
+ 89
13178
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
12975
13179
  p
12976
13180
  2
12977
13181
  x
@@ -13245,8 +13449,8 @@ I
13245
13449
  I
13246
13450
  ad
13247
13451
  x
13248
- 87
13249
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13452
+ 89
13453
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13250
13454
  p
13251
13455
  0
13252
13456
  p
@@ -13338,8 +13542,8 @@ I
13338
13542
  I
13339
13543
  11e
13340
13544
  x
13341
- 87
13342
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13545
+ 89
13546
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13343
13547
  p
13344
13548
  0
13345
13549
  x
@@ -13571,7 +13775,7 @@ x
13571
13775
  5
13572
13776
  raise
13573
13777
  p
13574
- 11
13778
+ 15
13575
13779
  I
13576
13780
  -1
13577
13781
  I
@@ -13581,6 +13785,10 @@ I
13581
13785
  I
13582
13786
  1f6
13583
13787
  I
13788
+ 1e
13789
+ I
13790
+ 0
13791
+ I
13584
13792
  1f
13585
13793
  I
13586
13794
  1f7
@@ -13589,14 +13797,18 @@ I
13589
13797
  I
13590
13798
  1f8
13591
13799
  I
13800
+ 51
13801
+ I
13802
+ 0
13803
+ I
13592
13804
  52
13593
13805
  I
13594
13806
  1f9
13595
13807
  I
13596
13808
  74
13597
13809
  x
13598
- 87
13599
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13810
+ 89
13811
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13600
13812
  p
13601
13813
  4
13602
13814
  x
@@ -13626,8 +13838,8 @@ I
13626
13838
  I
13627
13839
  10
13628
13840
  x
13629
- 87
13630
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13841
+ 89
13842
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13631
13843
  p
13632
13844
  0
13633
13845
  n
@@ -13747,8 +13959,8 @@ I
13747
13959
  I
13748
13960
  32
13749
13961
  x
13750
- 87
13751
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13962
+ 89
13963
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13752
13964
  p
13753
13965
  0
13754
13966
  n
@@ -13868,8 +14080,8 @@ I
13868
14080
  I
13869
14081
  32
13870
14082
  x
13871
- 87
13872
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
14083
+ 89
14084
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13873
14085
  p
13874
14086
  0
13875
14087
  p
@@ -13913,8 +14125,8 @@ I
13913
14125
  I
13914
14126
  119
13915
14127
  x
13916
- 87
13917
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
14128
+ 89
14129
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13918
14130
  p
13919
14131
  0
13920
14132
  x
@@ -13929,7 +14141,7 @@ I
13929
14141
  I
13930
14142
  22
13931
14143
  x
13932
- 87
13933
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
14144
+ 89
14145
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/gradient_support.rb
13934
14146
  p
13935
14147
  0