compass 0.12.7 → 0.13.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 (216) hide show
  1. data/README.markdown +4 -6
  2. data/VERSION.yml +6 -0
  3. data/bin/compass +1 -2
  4. data/bin/compass.compiled.rbc +707 -0
  5. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  6. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  7. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  8. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  9. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  10. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf +0 -0
  11. data/features/step_definitions/command_line_steps.rb +1 -1
  12. data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +38 -41
  13. data/frameworks/compass/stylesheets/compass/_css3.scss +1 -3
  14. data/frameworks/compass/stylesheets/compass/_support.scss +0 -4
  15. data/frameworks/compass/stylesheets/compass/css3/_animation.scss +127 -0
  16. data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +3 -4
  17. data/frameworks/compass/stylesheets/compass/css3/_box.scss +2 -2
  18. data/frameworks/compass/stylesheets/compass/css3/_columns.scss +11 -97
  19. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +4 -4
  20. data/frameworks/compass/stylesheets/compass/css3/_images.scss +2 -2
  21. data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +7 -13
  22. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +38 -0
  23. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +13 -52
  24. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +14 -14
  25. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +60 -127
  26. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +21 -0
  27. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +8 -6
  28. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +9 -35
  29. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +9 -5
  30. data/lib/compass.rbc +796 -0
  31. data/lib/compass/actions.rb +4 -6
  32. data/lib/compass/actions.rbc +2736 -0
  33. data/lib/compass/app_integration.rbc +836 -0
  34. data/lib/compass/app_integration/merb.rbc +106 -0
  35. data/lib/compass/app_integration/rails.rbc +2096 -0
  36. data/lib/compass/app_integration/rails/configuration_defaults.rbc +2430 -0
  37. data/lib/compass/app_integration/rails/installer.rbc +3677 -0
  38. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  39. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  40. data/lib/compass/app_integration/stand_alone/installer.rbc +1487 -0
  41. data/lib/compass/browser_support.rbc +1144 -0
  42. data/lib/compass/commands.rbc +307 -0
  43. data/lib/compass/commands/base.rbc +1044 -0
  44. data/lib/compass/commands/clean_project.rbc +1856 -0
  45. data/lib/compass/commands/create_project.rbc +2691 -0
  46. data/lib/compass/commands/default.rbc +1677 -0
  47. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  48. data/lib/compass/commands/help.rbc +1921 -0
  49. data/lib/compass/commands/imports.rbc +969 -0
  50. data/lib/compass/commands/installer_command.rbc +807 -0
  51. data/lib/compass/commands/interactive.rbc +1341 -0
  52. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  53. data/lib/compass/commands/print_version.rbc +2478 -0
  54. data/lib/compass/commands/project_base.rb +1 -7
  55. data/lib/compass/commands/project_base.rbc +2085 -0
  56. data/lib/compass/commands/project_stats.rbc +4202 -0
  57. data/lib/compass/commands/registry.rbc +1350 -0
  58. data/lib/compass/commands/sprite.rbc +2212 -0
  59. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  60. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  61. data/lib/compass/commands/update_project.rb +2 -2
  62. data/lib/compass/commands/update_project.rbc +3002 -0
  63. data/lib/compass/commands/validate_project.rbc +1686 -0
  64. data/lib/compass/commands/watch_project.rbc +4155 -0
  65. data/lib/compass/commands/write_configuration.rbc +2896 -0
  66. data/lib/compass/compiler.rb +2 -1
  67. data/lib/compass/compiler.rbc +4913 -0
  68. data/lib/compass/configuration.rbc +1398 -0
  69. data/lib/compass/configuration/adapters.rbc +2088 -0
  70. data/lib/compass/configuration/comments.rbc +843 -0
  71. data/lib/compass/configuration/data.rbc +2633 -0
  72. data/lib/compass/configuration/defaults.rbc +3617 -0
  73. data/lib/compass/configuration/file_data.rbc +643 -0
  74. data/lib/compass/configuration/helpers.rbc +3500 -0
  75. data/lib/compass/configuration/inheritance.rbc +3592 -0
  76. data/lib/compass/configuration/paths.rbc +412 -0
  77. data/lib/compass/configuration/serialization.rbc +1996 -0
  78. data/lib/compass/dependencies.rbc +232 -0
  79. data/lib/compass/errors.rbc +176 -0
  80. data/lib/compass/exec.rbc +500 -0
  81. data/lib/compass/exec/command_option_parser.rbc +676 -0
  82. data/lib/compass/exec/global_options_parser.rb +1 -1
  83. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  84. data/lib/compass/exec/helpers.rbc +758 -0
  85. data/lib/compass/exec/project_options_parser.rb +0 -8
  86. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  87. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  88. data/lib/compass/frameworks.rbc +3640 -0
  89. data/lib/compass/grid_builder.rbc +0 -0
  90. data/lib/compass/installers.rbc +152 -0
  91. data/lib/compass/installers/bare_installer.rbc +939 -0
  92. data/lib/compass/installers/base.rbc +4427 -0
  93. data/lib/compass/installers/manifest.rbc +3335 -0
  94. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  95. data/lib/compass/installers/template_context.rbc +1030 -0
  96. data/lib/compass/logger.rbc +2317 -0
  97. data/lib/compass/quick_cache.rbc +324 -0
  98. data/lib/compass/sass_extensions.rbc +213 -0
  99. data/lib/compass/sass_extensions/functions.rbc +808 -0
  100. data/lib/compass/sass_extensions/functions/colors.rb +0 -14
  101. data/lib/compass/sass_extensions/functions/colors.rbc +1279 -0
  102. data/lib/compass/sass_extensions/functions/constants.rb +0 -9
  103. data/lib/compass/sass_extensions/functions/constants.rbc +1921 -0
  104. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1966 -0
  105. data/lib/compass/sass_extensions/functions/display.rbc +1227 -0
  106. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  107. data/lib/compass/sass_extensions/functions/env.rb +18 -0
  108. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  109. data/lib/compass/sass_extensions/functions/font_files.rbc +821 -0
  110. data/lib/compass/sass_extensions/functions/gradient_support.rb +4 -11
  111. data/lib/compass/sass_extensions/functions/gradient_support.rbc +14147 -0
  112. data/lib/compass/sass_extensions/functions/image_size.rbc +3152 -0
  113. data/lib/compass/sass_extensions/functions/inline_image.rbc +1678 -0
  114. data/lib/compass/sass_extensions/functions/lists.rbc +2601 -0
  115. data/lib/compass/sass_extensions/functions/math.rb +1 -1
  116. data/lib/compass/sass_extensions/functions/selectors.rbc +1592 -0
  117. data/lib/compass/sass_extensions/functions/sprites.rb +11 -14
  118. data/lib/compass/sass_extensions/functions/sprites.rbc +3792 -0
  119. data/lib/compass/sass_extensions/functions/trig.rbc +811 -0
  120. data/lib/compass/sass_extensions/functions/urls.rbc +5248 -0
  121. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  122. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2169 -0
  123. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +660 -0
  124. data/lib/compass/sass_extensions/sprites.rbc +363 -0
  125. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  126. data/lib/compass/sass_extensions/sprites/engines.rb +3 -3
  127. data/lib/compass/sass_extensions/sprites/engines.rbc +662 -0
  128. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +6 -8
  129. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +1074 -0
  130. data/lib/compass/sass_extensions/sprites/image.rbc +2961 -0
  131. data/lib/compass/sass_extensions/sprites/image_methods.rb +1 -0
  132. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  133. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  134. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  135. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  136. data/lib/compass/sass_extensions/sprites/sprite_map.rb +0 -1
  137. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +1991 -0
  138. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +3 -13
  139. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  140. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  141. data/lib/compass/sprite_importer.rb +6 -10
  142. data/lib/compass/sprite_importer.rbc +3573 -0
  143. data/lib/compass/sprite_importer/content.erb +14 -12
  144. data/lib/compass/util.rbc +552 -0
  145. data/lib/compass/version.rb +11 -15
  146. data/lib/compass/version.rbc +1245 -0
  147. data/test/fixtures/sprites/public/images/numeric/200.png +0 -0
  148. data/test/fixtures/stylesheets/blueprint/css/screen.css +3 -2
  149. data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +8 -6
  150. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +2 -1
  151. data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +1 -1
  152. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +2 -41
  153. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +3 -5
  154. data/test/fixtures/stylesheets/busted_image_urls/tmp/screen.css +9 -0
  155. data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +41 -0
  156. data/test/fixtures/stylesheets/compass/css/animation.css +41 -0
  157. data/test/fixtures/stylesheets/compass/css/columns.css +12 -120
  158. data/test/fixtures/stylesheets/compass/css/fonts.css +1 -1
  159. data/test/fixtures/stylesheets/compass/css/gradients.css +25 -1
  160. data/test/fixtures/stylesheets/compass/css/grid_background.css +14 -7
  161. data/test/fixtures/stylesheets/compass/css/lists.css +8 -6
  162. data/test/fixtures/stylesheets/compass/css/pie.css +1 -0
  163. data/test/fixtures/stylesheets/compass/css/reset.css +1 -1
  164. data/test/fixtures/stylesheets/compass/css/text_shadow.css +4 -22
  165. data/test/fixtures/stylesheets/compass/css/transition.css +16 -66
  166. data/test/fixtures/stylesheets/compass/css/user-interface.css +10 -0
  167. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +21 -21
  168. data/test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss +19 -0
  169. data/test/fixtures/stylesheets/compass/sass/animation.scss +13 -0
  170. data/test/fixtures/stylesheets/compass/sass/columns.scss +0 -18
  171. data/test/fixtures/stylesheets/compass/sass/gradients.sass +4 -2
  172. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +1 -6
  173. data/test/fixtures/stylesheets/compass/sass/transition.scss +1 -12
  174. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +7 -0
  175. data/test/fixtures/stylesheets/envtest/css/env.css +8 -0
  176. data/test/fixtures/stylesheets/envtest/sass/env.scss +16 -0
  177. data/test/fixtures/stylesheets/envtest/tmp/env.css +14 -0
  178. data/test/helpers/command_line.rbc +2820 -0
  179. data/test/helpers/diff.rbc +1104 -0
  180. data/test/helpers/io.rbc +962 -0
  181. data/test/helpers/rails.rbc +1116 -0
  182. data/test/helpers/test_case.rb +1 -8
  183. data/test/helpers/test_case.rbc +1255 -0
  184. data/test/integrations/compass_test.rb +10 -1
  185. data/test/integrations/compass_test.rbc +6589 -0
  186. data/test/integrations/rails_integration_test.rbc +1342 -0
  187. data/test/integrations/sprites_test.rb +70 -27
  188. data/test/integrations/sprites_test.rbc +6192 -0
  189. data/test/test_helper.rb +1 -2
  190. data/test/test_helper.rbc +1694 -0
  191. data/test/units/actions_test.rbc +644 -0
  192. data/test/units/command_line_test.rbc +1532 -0
  193. data/test/units/compass_module_test.rb +1 -1
  194. data/test/units/compass_png_test.rbc +0 -0
  195. data/test/units/configuration_test.rbc +3833 -0
  196. data/test/units/rails_configuration_test.rbc +1032 -0
  197. data/test/units/sass_extensions_test.rb +11 -21
  198. data/test/units/sass_extensions_test.rbc +3586 -0
  199. data/test/units/sprites/engine_test.rbc +962 -0
  200. data/test/units/sprites/image_row_test.rbc +1578 -0
  201. data/test/units/sprites/image_test.rbc +2836 -0
  202. data/test/units/sprites/importer_test.rbc +2620 -0
  203. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  204. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  205. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  206. metadata +241 -94
  207. checksums.yaml +0 -7
  208. data/frameworks/compass/stylesheets/compass/css3/_filter.scss +0 -23
  209. data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +0 -77
  210. data/test/fixtures/stylesheets/compass/css/filters.css +0 -29
  211. data/test/fixtures/stylesheets/compass/css/hyphenation.css +0 -16
  212. data/test/fixtures/stylesheets/compass/css/replacement.css +0 -59
  213. data/test/fixtures/stylesheets/compass/sass/filters.scss +0 -24
  214. data/test/fixtures/stylesheets/compass/sass/hyphenation.scss +0 -11
  215. data/test/fixtures/stylesheets/compass/sass/replacement.scss +0 -22
  216. data/test/units/regressions_test.rb +0 -35
@@ -15,3 +15,24 @@
15
15
  -moz, -webkit, not -o, not -ms, -khtml, official
16
16
  );
17
17
  }
18
+
19
+ // Style the html5 input placeholder in browsers that support it.
20
+ //
21
+ // The styles for the input placeholder are passed as mixin content.
22
+ // For example:
23
+ //
24
+ // @include input-placeholder {
25
+ // color: #bfbfbf;
26
+ // font-style: italic;
27
+ // }
28
+ @mixin input-placeholder {
29
+ @if $experimental-support-for-webkit {
30
+ &::-webkit-input-placeholder { @content; }
31
+ }
32
+ @if $experimental-support-for-mozilla {
33
+ &:-moz-placeholder { @content; }
34
+ }
35
+ @if $experimental-support-for-microsoft {
36
+ &:-ms-input-placeholder { @content; }
37
+ }
38
+ }
@@ -55,14 +55,16 @@ $base-half-leader: $base-leader / 2;
55
55
 
56
56
  // Establishes a font baseline for the given font-size.
57
57
  @mixin establish-baseline($font-size: $base-font-size) {
58
- // IE 6 refuses to resize fonts set in pixels and it weirdly resizes fonts
59
- // whose root is set in ems. So we set the root font size in percentages of
60
- // the default font size.
61
- * html {
62
- font-size: 100% * ($font-size / $browser-default-font-size);
58
+ $relative-size : 100% * ($font-size / $browser-default-font-size);
59
+
60
+ @if $legacy-support-for-ie6 and (not $relative-font-sizing) {
61
+ // IE 6 refuses to resize fonts set in pixels and it weirdly resizes fonts
62
+ // whose root is set in ems. So we set the root font size in percentages of
63
+ // the default font size, even if we are using absolute sizes elsewhere.
64
+ * html { font-size: $relative-size; }
63
65
  }
64
66
  html {
65
- font-size: $font-size;
67
+ font-size: if($relative-font-sizing,$relative-size,$font-size);
66
68
  @include adjust-leading-to(1, if($relative-font-sizing, $font-size, $base-font-size));
67
69
  }
68
70
  }
@@ -1,27 +1,16 @@
1
- // Indicates the direction you prefer to move your text
2
- // when hiding it.
3
- //
4
- // `left` is more robust, especially in older browsers.
5
- // `right` seems have better runtime performance.
6
- $hide-text-direction: left !default;
7
-
8
1
  // Hides html text and replaces it with an image.
9
2
  // If you use this on an inline element, you will need to change the display to block or inline-block.
10
3
  // Also, if the size of the image differs significantly from the font size, you'll need to set the width and/or height.
11
4
  //
12
5
  // Parameters:
13
6
  //
14
- // * `img` -- the relative path from the project image directory to the image, or a url literal.
7
+ // * `img` -- the relative path from the project image directory to the image.
15
8
  // * `x` -- the x position of the background image.
16
9
  // * `y` -- the y position of the background image.
17
10
  @mixin replace-text($img, $x: 50%, $y: 50%) {
18
11
  @include hide-text;
19
12
  background: {
20
- @if is-url($img) {
21
- image: $img;
22
- } @else {
23
- image: image-url($img);
24
- }
13
+ image: image-url($img);
25
14
  repeat: no-repeat;
26
15
  position: $x $y;
27
16
  };
@@ -29,33 +18,18 @@ $hide-text-direction: left !default;
29
18
 
30
19
  // Like the `replace-text` mixin, but also sets the width
31
20
  // and height of the element according the dimensions of the image.
32
- //
33
- // If you set `$inline` to true, then an inline image (data uri) will be used.
34
- @mixin replace-text-with-dimensions($img, $x: 50%, $y: 50%, $inline: false) {
35
- @include replace-text(if($inline, inline-image($img), $img), $x, $y);
21
+ @mixin replace-text-with-dimensions($img, $x: 50%, $y: 50%) {
22
+ @include replace-text($img, $x, $y);
36
23
  width: image-width($img);
37
24
  height: image-height($img);
38
25
  }
39
26
 
40
27
  // Hides text in an element so you can see the background.
41
- //
42
- // The direction indicates how the text should be moved out of view.
43
- //
44
- // See `$hide-text-direction` for more information and to set this globally
45
- // for your application.
46
- @mixin hide-text($direction: $hide-text-direction) {
47
- @if $direction == left {
48
- $approximate-em-value: 12px / 1em;
49
- $wider-than-any-screen: -9999em;
50
- text-indent: $wider-than-any-screen * $approximate-em-value;
51
- overflow: hidden;
52
- text-align: left;
53
- } @else {
54
- // slightly wider than the box prevents issues with inline-block elements
55
- text-indent: 110%;
56
- white-space: nowrap;
57
- overflow: hidden;
58
- }
28
+ @mixin hide-text {
29
+ // slightly wider than the box prevents issues with inline-block elements
30
+ text-indent: 110%;
31
+ white-space: nowrap;
32
+ overflow: hidden;
59
33
  }
60
34
 
61
35
  // Hides text in an element by squishing the text into oblivion.
@@ -40,8 +40,10 @@ $disable-magic-sprite-selectors:false !default;
40
40
  @mixin sprite-selectors($map, $sprite-name, $full-sprite-name, $offset-x: 0, $offset-y: 0) {
41
41
  @each $selector in $sprite-selectors {
42
42
  @if sprite_has_selector($map, $sprite-name, $selector) {
43
- &:#{$selector}, &.#{$full-sprite-name}_#{$selector}, &.#{$full-sprite-name}-#{$selector} {
44
- @include sprite-background-position($map, "#{$sprite-name}_#{$selector}", $offset-x, $offset-y);
43
+ @if sprite_has_valid_selector("#{$full-sprite-name}-#{$selector}") {
44
+ &:#{$selector}, &.#{$full-sprite-name}-#{$selector} {
45
+ @include sprite-background-position($map, "#{$sprite-name}_#{$selector}", $offset-x, $offset-y);
46
+ }
45
47
  }
46
48
  }
47
49
  }
@@ -57,9 +59,11 @@ $disable-magic-sprite-selectors:false !default;
57
59
  @each $sprite-name in $sprite-names {
58
60
  @if sprite_does_not_have_parent($map, $sprite-name) {
59
61
  $full-sprite-name: "#{$prefix}-#{$sprite-name}";
60
- .#{$full-sprite-name} {
61
- @if $base-class { @extend #{$base-class}; }
62
- @include sprite($map, $sprite-name, $dimensions, $offset-x, $offset-y);
62
+ @if sprite_has_valid_selector($full-sprite-name) {
63
+ .#{$full-sprite-name} {
64
+ @if $base-class { @extend #{$base-class}; }
65
+ @include sprite($map, $sprite-name, $dimensions, $offset-x, $offset-y);
66
+ }
63
67
  }
64
68
  }
65
69
  }
data/lib/compass.rbc ADDED
@@ -0,0 +1,796 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 102
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 15
21
+ 1
22
+ 15
23
+ 7
24
+ 2
25
+ 64
26
+ 7
27
+ 3
28
+ 64
29
+ 7
30
+ 4
31
+ 64
32
+ 7
33
+ 5
34
+ 64
35
+ 7
36
+ 6
37
+ 64
38
+ 7
39
+ 7
40
+ 64
41
+ 7
42
+ 8
43
+ 64
44
+ 7
45
+ 9
46
+ 64
47
+ 35
48
+ 8
49
+ 56
50
+ 10
51
+ 50
52
+ 11
53
+ 0
54
+ 15
55
+ 5
56
+ 7
57
+ 12
58
+ 64
59
+ 47
60
+ 49
61
+ 13
62
+ 1
63
+ 15
64
+ 99
65
+ 7
66
+ 0
67
+ 65
68
+ 49
69
+ 1
70
+ 2
71
+ 13
72
+ 99
73
+ 12
74
+ 7
75
+ 14
76
+ 12
77
+ 7
78
+ 15
79
+ 12
80
+ 65
81
+ 12
82
+ 49
83
+ 16
84
+ 4
85
+ 15
86
+ 49
87
+ 14
88
+ 0
89
+ 15
90
+ 7
91
+ 17
92
+ 64
93
+ 7
94
+ 18
95
+ 64
96
+ 7
97
+ 19
98
+ 64
99
+ 7
100
+ 20
101
+ 64
102
+ 7
103
+ 21
104
+ 64
105
+ 35
106
+ 5
107
+ 56
108
+ 22
109
+ 50
110
+ 11
111
+ 0
112
+ 15
113
+ 2
114
+ 11
115
+ I
116
+ 8
117
+ I
118
+ 0
119
+ I
120
+ 0
121
+ I
122
+ 0
123
+ n
124
+ p
125
+ 23
126
+ x
127
+ 7
128
+ Compass
129
+ x
130
+ 11
131
+ open_module
132
+ s
133
+ 12
134
+ dependencies
135
+ s
136
+ 4
137
+ util
138
+ s
139
+ 15
140
+ browser_support
141
+ s
142
+ 15
143
+ sass_extensions
144
+ s
145
+ 7
146
+ version
147
+ s
148
+ 6
149
+ errors
150
+ s
151
+ 11
152
+ quick_cache
153
+ s
154
+ 6
155
+ logger
156
+ M
157
+ 1
158
+ p
159
+ 2
160
+ x
161
+ 9
162
+ for_block
163
+ t
164
+ n
165
+ x
166
+ 9
167
+ __block__
168
+ i
169
+ 19
170
+ 57
171
+ 19
172
+ 0
173
+ 15
174
+ 5
175
+ 7
176
+ 0
177
+ 20
178
+ 0
179
+ 47
180
+ 101
181
+ 1
182
+ 63
183
+ 2
184
+ 47
185
+ 49
186
+ 2
187
+ 1
188
+ 11
189
+ I
190
+ 5
191
+ I
192
+ 1
193
+ I
194
+ 1
195
+ I
196
+ 1
197
+ n
198
+ p
199
+ 3
200
+ s
201
+ 8
202
+ compass/
203
+ x
204
+ 4
205
+ to_s
206
+ x
207
+ 7
208
+ require
209
+ p
210
+ 5
211
+ I
212
+ 0
213
+ I
214
+ 4
215
+ I
216
+ 4
217
+ I
218
+ 5
219
+ I
220
+ 13
221
+ x
222
+ 46
223
+ /Users/crispee/Projects/compass/lib/compass.rb
224
+ p
225
+ 1
226
+ x
227
+ 3
228
+ lib
229
+ x
230
+ 4
231
+ each
232
+ s
233
+ 14
234
+ sass/callbacks
235
+ x
236
+ 7
237
+ require
238
+ x
239
+ 15
240
+ __module_init__
241
+ M
242
+ 1
243
+ n
244
+ n
245
+ x
246
+ 7
247
+ Compass
248
+ i
249
+ 65
250
+ 5
251
+ 66
252
+ 99
253
+ 7
254
+ 0
255
+ 7
256
+ 1
257
+ 65
258
+ 67
259
+ 49
260
+ 2
261
+ 0
262
+ 49
263
+ 3
264
+ 4
265
+ 15
266
+ 99
267
+ 7
268
+ 4
269
+ 7
270
+ 5
271
+ 65
272
+ 67
273
+ 49
274
+ 2
275
+ 0
276
+ 49
277
+ 3
278
+ 4
279
+ 15
280
+ 99
281
+ 7
282
+ 6
283
+ 7
284
+ 7
285
+ 65
286
+ 67
287
+ 49
288
+ 2
289
+ 0
290
+ 49
291
+ 3
292
+ 4
293
+ 15
294
+ 5
295
+ 7
296
+ 0
297
+ 7
298
+ 4
299
+ 7
300
+ 6
301
+ 47
302
+ 49
303
+ 8
304
+ 3
305
+ 15
306
+ 5
307
+ 45
308
+ 9
309
+ 10
310
+ 47
311
+ 49
312
+ 11
313
+ 1
314
+ 11
315
+ I
316
+ 5
317
+ I
318
+ 0
319
+ I
320
+ 0
321
+ I
322
+ 0
323
+ n
324
+ p
325
+ 12
326
+ x
327
+ 14
328
+ base_directory
329
+ M
330
+ 1
331
+ n
332
+ n
333
+ x
334
+ 14
335
+ base_directory
336
+ i
337
+ 26
338
+ 45
339
+ 0
340
+ 1
341
+ 45
342
+ 0
343
+ 2
344
+ 45
345
+ 0
346
+ 3
347
+ 65
348
+ 49
349
+ 4
350
+ 0
351
+ 49
352
+ 5
353
+ 1
354
+ 7
355
+ 6
356
+ 64
357
+ 49
358
+ 7
359
+ 2
360
+ 49
361
+ 8
362
+ 1
363
+ 11
364
+ I
365
+ 4
366
+ I
367
+ 0
368
+ I
369
+ 0
370
+ I
371
+ 0
372
+ n
373
+ p
374
+ 9
375
+ x
376
+ 4
377
+ File
378
+ n
379
+ n
380
+ n
381
+ x
382
+ 11
383
+ active_path
384
+ x
385
+ 7
386
+ dirname
387
+ s
388
+ 2
389
+ ..
390
+ x
391
+ 4
392
+ join
393
+ x
394
+ 11
395
+ expand_path
396
+ p
397
+ 5
398
+ I
399
+ -1
400
+ I
401
+ b
402
+ I
403
+ 0
404
+ I
405
+ c
406
+ I
407
+ 1a
408
+ x
409
+ 46
410
+ /Users/crispee/Projects/compass/lib/compass.rb
411
+ p
412
+ 0
413
+ x
414
+ 17
415
+ method_visibility
416
+ x
417
+ 15
418
+ add_defn_method
419
+ x
420
+ 13
421
+ lib_directory
422
+ M
423
+ 1
424
+ n
425
+ n
426
+ x
427
+ 13
428
+ lib_directory
429
+ i
430
+ 23
431
+ 45
432
+ 0
433
+ 1
434
+ 45
435
+ 0
436
+ 2
437
+ 45
438
+ 0
439
+ 3
440
+ 65
441
+ 49
442
+ 4
443
+ 0
444
+ 49
445
+ 5
446
+ 1
447
+ 49
448
+ 6
449
+ 1
450
+ 49
451
+ 7
452
+ 1
453
+ 11
454
+ I
455
+ 4
456
+ I
457
+ 0
458
+ I
459
+ 0
460
+ I
461
+ 0
462
+ n
463
+ p
464
+ 8
465
+ x
466
+ 4
467
+ File
468
+ n
469
+ n
470
+ n
471
+ x
472
+ 11
473
+ active_path
474
+ x
475
+ 7
476
+ dirname
477
+ x
478
+ 4
479
+ join
480
+ x
481
+ 11
482
+ expand_path
483
+ p
484
+ 5
485
+ I
486
+ -1
487
+ I
488
+ e
489
+ I
490
+ 0
491
+ I
492
+ f
493
+ I
494
+ 17
495
+ x
496
+ 46
497
+ /Users/crispee/Projects/compass/lib/compass.rb
498
+ p
499
+ 0
500
+ x
501
+ 22
502
+ shared_extension_paths
503
+ M
504
+ 1
505
+ n
506
+ n
507
+ x
508
+ 22
509
+ shared_extension_paths
510
+ i
511
+ 54
512
+ 39
513
+ 0
514
+ 13
515
+ 10
516
+ 53
517
+ 15
518
+ 45
519
+ 1
520
+ 2
521
+ 7
522
+ 3
523
+ 64
524
+ 49
525
+ 4
526
+ 1
527
+ 13
528
+ 9
529
+ 34
530
+ 15
531
+ 45
532
+ 5
533
+ 6
534
+ 45
535
+ 1
536
+ 7
537
+ 7
538
+ 3
539
+ 64
540
+ 49
541
+ 4
542
+ 1
543
+ 49
544
+ 8
545
+ 1
546
+ 9
547
+ 49
548
+ 45
549
+ 5
550
+ 9
551
+ 7
552
+ 10
553
+ 64
554
+ 49
555
+ 11
556
+ 1
557
+ 35
558
+ 1
559
+ 8
560
+ 51
561
+ 35
562
+ 0
563
+ 38
564
+ 0
565
+ 11
566
+ I
567
+ 3
568
+ I
569
+ 0
570
+ I
571
+ 0
572
+ I
573
+ 0
574
+ n
575
+ p
576
+ 12
577
+ x
578
+ 23
579
+ @shared_extension_paths
580
+ x
581
+ 3
582
+ ENV
583
+ n
584
+ s
585
+ 4
586
+ HOME
587
+ x
588
+ 2
589
+ []
590
+ x
591
+ 4
592
+ File
593
+ n
594
+ n
595
+ x
596
+ 10
597
+ directory?
598
+ n
599
+ s
600
+ 21
601
+ ~/.compass/extensions
602
+ x
603
+ 11
604
+ expand_path
605
+ p
606
+ 13
607
+ I
608
+ -1
609
+ I
610
+ 11
611
+ I
612
+ 0
613
+ I
614
+ 18
615
+ I
616
+ 6
617
+ I
618
+ 13
619
+ I
620
+ 24
621
+ I
622
+ 14
623
+ I
624
+ 31
625
+ I
626
+ 16
627
+ I
628
+ 33
629
+ I
630
+ 12
631
+ I
632
+ 36
633
+ x
634
+ 46
635
+ /Users/crispee/Projects/compass/lib/compass.rb
636
+ p
637
+ 0
638
+ x
639
+ 15
640
+ module_function
641
+ x
642
+ 10
643
+ QuickCache
644
+ n
645
+ x
646
+ 6
647
+ extend
648
+ p
649
+ 11
650
+ I
651
+ 2
652
+ I
653
+ b
654
+ I
655
+ 10
656
+ I
657
+ e
658
+ I
659
+ 1e
660
+ I
661
+ 11
662
+ I
663
+ 2c
664
+ I
665
+ 1a
666
+ I
667
+ 38
668
+ I
669
+ 1b
670
+ I
671
+ 41
672
+ x
673
+ 46
674
+ /Users/crispee/Projects/compass/lib/compass.rb
675
+ p
676
+ 0
677
+ x
678
+ 13
679
+ attach_method
680
+ s
681
+ 13
682
+ configuration
683
+ s
684
+ 10
685
+ frameworks
686
+ s
687
+ 15
688
+ app_integration
689
+ s
690
+ 7
691
+ actions
692
+ s
693
+ 8
694
+ compiler
695
+ M
696
+ 1
697
+ p
698
+ 2
699
+ x
700
+ 9
701
+ for_block
702
+ t
703
+ n
704
+ x
705
+ 9
706
+ __block__
707
+ i
708
+ 19
709
+ 57
710
+ 19
711
+ 0
712
+ 15
713
+ 5
714
+ 7
715
+ 0
716
+ 20
717
+ 0
718
+ 47
719
+ 101
720
+ 1
721
+ 63
722
+ 2
723
+ 47
724
+ 49
725
+ 2
726
+ 1
727
+ 11
728
+ I
729
+ 5
730
+ I
731
+ 1
732
+ I
733
+ 1
734
+ I
735
+ 1
736
+ n
737
+ p
738
+ 3
739
+ s
740
+ 8
741
+ compass/
742
+ x
743
+ 4
744
+ to_s
745
+ x
746
+ 7
747
+ require
748
+ p
749
+ 5
750
+ I
751
+ 0
752
+ I
753
+ 1e
754
+ I
755
+ 4
756
+ I
757
+ 1f
758
+ I
759
+ 13
760
+ x
761
+ 46
762
+ /Users/crispee/Projects/compass/lib/compass.rb
763
+ p
764
+ 1
765
+ x
766
+ 3
767
+ lib
768
+ p
769
+ 11
770
+ I
771
+ 0
772
+ I
773
+ 1
774
+ I
775
+ a
776
+ I
777
+ 4
778
+ I
779
+ 2a
780
+ I
781
+ 8
782
+ I
783
+ 33
784
+ I
785
+ a
786
+ I
787
+ 4d
788
+ I
789
+ 1e
790
+ I
791
+ 66
792
+ x
793
+ 46
794
+ /Users/crispee/Projects/compass/lib/compass.rb
795
+ p
796
+ 0