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
@@ -249,7 +249,7 @@ x
249
249
  3
250
250
  []=
251
251
  p
252
- 13
252
+ 11
253
253
  I
254
254
  -1
255
255
  I
@@ -271,14 +271,10 @@ I
271
271
  I
272
272
  b
273
273
  I
274
- 5f
275
- I
276
- 0
277
- I
278
274
  60
279
275
  x
280
- 58
281
- /Users/crispee/Projects/compass/lib/compass/quick_cache.rb
276
+ 56
277
+ /Users/chris/Projects/compass/lib/compass/quick_cache.rb
282
278
  p
283
279
  2
284
280
  x
@@ -302,8 +298,8 @@ I
302
298
  I
303
299
  10
304
300
  x
305
- 58
306
- /Users/crispee/Projects/compass/lib/compass/quick_cache.rb
301
+ 56
302
+ /Users/chris/Projects/compass/lib/compass/quick_cache.rb
307
303
  p
308
304
  0
309
305
  x
@@ -318,7 +314,7 @@ I
318
314
  I
319
315
  1c
320
316
  x
321
- 58
322
- /Users/crispee/Projects/compass/lib/compass/quick_cache.rb
317
+ 56
318
+ /Users/chris/Projects/compass/lib/compass/quick_cache.rb
323
319
  p
324
320
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -175,7 +175,7 @@ s
175
175
  31
176
176
  compass/sass_extensions/sprites
177
177
  p
178
- 15
178
+ 13
179
179
  I
180
180
  0
181
181
  I
@@ -185,10 +185,6 @@ I
185
185
  I
186
186
  2
187
187
  I
188
- 32
189
- I
190
- 0
191
- I
192
188
  33
193
189
  I
194
190
  5
@@ -207,7 +203,7 @@ a
207
203
  I
208
204
  5c
209
205
  x
210
- 62
211
- /Users/crispee/Projects/compass/lib/compass/sass_extensions.rb
206
+ 60
207
+ /Users/chris/Projects/compass/lib/compass/sass_extensions.rb
212
208
  p
213
209
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -9,7 +9,7 @@ x
9
9
  10
10
10
  __script__
11
11
  i
12
- 132
12
+ 129
13
13
  99
14
14
  7
15
15
  0
@@ -66,25 +66,22 @@ i
66
66
  7
67
67
  18
68
68
  64
69
- 7
70
- 19
71
- 64
72
69
  35
73
- 15
70
+ 14
74
71
  56
75
- 20
72
+ 19
76
73
  50
77
- 21
74
+ 20
78
75
  0
79
76
  15
80
77
  99
81
78
  7
82
79
  0
83
80
  45
81
+ 21
84
82
  22
85
- 23
86
83
  43
87
- 24
84
+ 23
88
85
  49
89
86
  4
90
87
  2
@@ -92,58 +89,58 @@ i
92
89
  99
93
90
  12
94
91
  7
95
- 25
92
+ 24
96
93
  12
97
94
  7
98
- 26
95
+ 25
99
96
  12
100
97
  65
101
98
  12
102
99
  49
103
- 27
100
+ 26
104
101
  4
105
102
  15
106
103
  49
107
- 25
104
+ 24
108
105
  0
109
106
  15
110
107
  99
111
108
  7
112
- 28
109
+ 27
113
110
  1
114
111
  45
115
- 22
116
- 29
112
+ 21
113
+ 28
117
114
  43
118
- 24
115
+ 23
119
116
  43
120
117
  0
121
118
  49
122
- 30
119
+ 29
123
120
  3
124
121
  13
125
122
  99
126
123
  12
127
124
  7
128
- 31
125
+ 30
129
126
  12
130
127
  7
131
- 32
128
+ 31
132
129
  12
133
130
  65
134
131
  12
135
132
  49
136
- 27
133
+ 26
137
134
  4
138
135
  15
139
136
  49
140
- 31
137
+ 30
141
138
  0
142
139
  15
143
140
  2
144
141
  11
145
142
  I
146
- f
143
+ e
147
144
  I
148
145
  0
149
146
  I
@@ -152,7 +149,7 @@ I
152
149
  0
153
150
  n
154
151
  p
155
- 33
152
+ 32
156
153
  x
157
154
  9
158
155
  Functions
@@ -206,9 +203,6 @@ s
206
203
  7
207
204
  sprites
208
205
  s
209
- 3
210
- env
211
- s
212
206
  21
213
207
  cross_browser_support
214
208
  M
@@ -273,16 +267,16 @@ I
273
267
  I
274
268
  1
275
269
  I
276
- 9
270
+ 8
277
271
  I
278
272
  4
279
273
  I
280
- a
274
+ 9
281
275
  I
282
276
  13
283
277
  x
284
- 72
285
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions.rb
278
+ 70
279
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions.rb
286
280
  p
287
281
  1
288
282
  x
@@ -309,7 +303,7 @@ x
309
303
  9
310
304
  Functions
311
305
  i
312
- 229
306
+ 214
313
307
  5
314
308
  66
315
309
  5
@@ -523,21 +517,6 @@ i
523
517
  49
524
518
  5
525
519
  1
526
- 15
527
- 5
528
- 45
529
- 0
530
- 32
531
- 43
532
- 2
533
- 43
534
- 3
535
- 43
536
- 33
537
- 47
538
- 49
539
- 5
540
- 1
541
520
  11
542
521
  I
543
522
  2
@@ -549,7 +528,7 @@ I
549
528
  0
550
529
  n
551
530
  p
552
- 34
531
+ 32
553
532
  x
554
533
  7
555
534
  Compass
@@ -618,77 +597,69 @@ n
618
597
  x
619
598
  19
620
599
  CrossBrowserSupport
621
- n
622
- x
623
- 3
624
- Env
625
600
  p
626
- 31
601
+ 29
627
602
  I
628
603
  2
629
604
  I
630
- e
605
+ d
631
606
  I
632
607
  11
633
608
  I
634
- f
609
+ e
635
610
  I
636
611
  20
637
612
  I
638
- 10
613
+ f
639
614
  I
640
615
  2f
641
616
  I
642
- 11
617
+ 10
643
618
  I
644
619
  3e
645
620
  I
646
- 12
621
+ 11
647
622
  I
648
623
  4d
649
624
  I
650
- 13
625
+ 12
651
626
  I
652
627
  5c
653
628
  I
654
- 14
629
+ 13
655
630
  I
656
631
  6d
657
632
  I
658
- 15
633
+ 14
659
634
  I
660
635
  7c
661
636
  I
662
- 16
637
+ 15
663
638
  I
664
639
  8b
665
640
  I
666
- 17
641
+ 16
667
642
  I
668
643
  9a
669
644
  I
670
- 18
645
+ 17
671
646
  I
672
647
  a9
673
648
  I
674
- 19
649
+ 18
675
650
  I
676
651
  b8
677
652
  I
678
- 1a
653
+ 19
679
654
  I
680
655
  c7
681
656
  I
682
- 1b
657
+ 1a
683
658
  I
684
659
  d6
685
- I
686
- 1c
687
- I
688
- e5
689
660
  x
690
- 72
691
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions.rb
661
+ 70
662
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions.rb
692
663
  p
693
664
  0
694
665
  x
@@ -757,16 +728,16 @@ p
757
728
  I
758
729
  2
759
730
  I
760
- 21
731
+ 1f
761
732
  I
762
733
  f
763
734
  x
764
- 72
765
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions.rb
735
+ 70
736
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions.rb
766
737
  p
767
738
  0
768
739
  p
769
- 17
740
+ 15
770
741
  I
771
742
  0
772
743
  I
@@ -784,25 +755,21 @@ I
784
755
  I
785
756
  7
786
757
  I
787
- 32
788
- I
789
- 8
790
- I
791
- 3d
758
+ 3a
792
759
  I
793
760
  5
794
761
  I
795
- 43
762
+ 40
796
763
  I
797
- d
764
+ c
798
765
  I
799
- 61
766
+ 5e
800
767
  I
801
- 20
768
+ 1e
802
769
  I
803
- 84
770
+ 81
804
771
  x
805
- 72
806
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions.rb
772
+ 70
773
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions.rb
807
774
  p
808
775
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -343,8 +343,8 @@ I
343
343
  I
344
344
  45
345
345
  x
346
- 79
347
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
346
+ 77
347
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
348
348
  p
349
349
  2
350
350
  x
@@ -488,8 +488,8 @@ I
488
488
  I
489
489
  37
490
490
  x
491
- 79
492
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
491
+ 77
492
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
493
493
  p
494
494
  2
495
495
  x
@@ -657,8 +657,8 @@ I
657
657
  I
658
658
  45
659
659
  x
660
- 79
661
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
660
+ 77
661
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
662
662
  p
663
663
  2
664
664
  x
@@ -796,8 +796,8 @@ I
796
796
  I
797
797
  37
798
798
  x
799
- 79
800
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
799
+ 77
800
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
801
801
  p
802
802
  2
803
803
  x
@@ -1053,8 +1053,8 @@ I
1053
1053
  I
1054
1054
  8a
1055
1055
  x
1056
- 79
1057
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
1056
+ 77
1057
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
1058
1058
  p
1059
1059
  3
1060
1060
  x
@@ -1178,7 +1178,7 @@ x
1178
1178
  d
1179
1179
  +0.781250000000000000000000000000000000000000000000000000 7
1180
1180
  p
1181
- 17
1181
+ 15
1182
1182
  I
1183
1183
  -1
1184
1184
  I
@@ -1204,18 +1204,14 @@ I
1204
1204
  I
1205
1205
  30
1206
1206
  I
1207
- 3b
1208
- I
1209
- 0
1210
- I
1211
1207
  3c
1212
1208
  I
1213
1209
  33
1214
1210
  I
1215
1211
  3f
1216
1212
  x
1217
- 79
1218
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
1213
+ 77
1214
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
1219
1215
  p
1220
1216
  2
1221
1217
  x
@@ -1257,8 +1253,8 @@ I
1257
1253
  I
1258
1254
  5a
1259
1255
  x
1260
- 79
1261
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
1256
+ 77
1257
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
1262
1258
  p
1263
1259
  0
1264
1260
  x
@@ -1273,7 +1269,7 @@ I
1273
1269
  I
1274
1270
  22
1275
1271
  x
1276
- 79
1277
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
1272
+ 77
1273
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/colors.rb
1278
1274
  p
1279
1275
  0