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