compass 0.12.rc.1 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/VERSION.yml +1 -2
  2. data/bin/compass.compiled.rbc +707 -0
  3. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  4. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  5. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  6. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  7. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  8. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf +0 -0
  9. data/features/command_line.feature +14 -15
  10. data/frameworks/compass/stylesheets/compass/_css3.scss +1 -2
  11. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +4 -4
  12. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +59 -38
  13. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +3 -5
  14. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +12 -4
  15. data/frameworks/compass/stylesheets/compass/utilities/_sprites.scss +1 -0
  16. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss +1 -1
  17. data/lib/compass.rb +2 -0
  18. data/lib/compass.rbc +796 -0
  19. data/lib/compass/actions.rbc +2736 -0
  20. data/lib/compass/app_integration.rbc +836 -0
  21. data/lib/compass/app_integration/merb.rbc +106 -0
  22. data/lib/compass/app_integration/rails.rbc +2096 -0
  23. data/lib/compass/app_integration/rails/configuration_defaults.rbc +2430 -0
  24. data/lib/compass/app_integration/rails/installer.rbc +3677 -0
  25. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  26. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  27. data/lib/compass/app_integration/stand_alone/installer.rbc +1487 -0
  28. data/lib/compass/browser_support.rbc +1144 -0
  29. data/lib/compass/commands.rbc +307 -0
  30. data/lib/compass/commands/base.rbc +1044 -0
  31. data/lib/compass/commands/clean_project.rbc +1856 -0
  32. data/lib/compass/commands/create_project.rbc +2691 -0
  33. data/lib/compass/commands/default.rbc +1677 -0
  34. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  35. data/lib/compass/commands/help.rbc +1921 -0
  36. data/lib/compass/commands/imports.rbc +969 -0
  37. data/lib/compass/commands/installer_command.rbc +807 -0
  38. data/lib/compass/commands/interactive.rbc +1341 -0
  39. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  40. data/lib/compass/commands/print_version.rbc +2478 -0
  41. data/lib/compass/commands/project_base.rbc +2085 -0
  42. data/lib/compass/commands/project_stats.rb +28 -13
  43. data/lib/compass/commands/project_stats.rbc +4202 -0
  44. data/lib/compass/commands/registry.rbc +1350 -0
  45. data/lib/compass/commands/sprite.rbc +2212 -0
  46. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  47. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  48. data/lib/compass/commands/update_project.rbc +3002 -0
  49. data/lib/compass/commands/validate_project.rbc +1686 -0
  50. data/lib/compass/commands/watch_project.rbc +4155 -0
  51. data/lib/compass/commands/write_configuration.rbc +2896 -0
  52. data/lib/compass/compiler.rb +3 -1
  53. data/lib/compass/compiler.rbc +4913 -0
  54. data/lib/compass/configuration.rbc +1398 -0
  55. data/lib/compass/configuration/adapters.rbc +2088 -0
  56. data/lib/compass/configuration/comments.rbc +843 -0
  57. data/lib/compass/configuration/data.rbc +2633 -0
  58. data/lib/compass/configuration/defaults.rbc +3617 -0
  59. data/lib/compass/configuration/file_data.rbc +643 -0
  60. data/lib/compass/configuration/helpers.rb +1 -4
  61. data/lib/compass/configuration/helpers.rbc +3500 -0
  62. data/lib/compass/configuration/inheritance.rbc +3592 -0
  63. data/lib/compass/configuration/paths.rbc +412 -0
  64. data/lib/compass/configuration/serialization.rbc +1996 -0
  65. data/lib/compass/dependencies.rbc +232 -0
  66. data/lib/compass/errors.rbc +176 -0
  67. data/lib/compass/exec.rbc +500 -0
  68. data/lib/compass/exec/command_option_parser.rbc +676 -0
  69. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  70. data/lib/compass/exec/helpers.rbc +758 -0
  71. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  72. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  73. data/lib/compass/frameworks.rbc +3640 -0
  74. data/lib/compass/grid_builder.rbc +0 -0
  75. data/lib/compass/installers.rbc +152 -0
  76. data/lib/compass/installers/bare_installer.rbc +939 -0
  77. data/lib/compass/installers/base.rbc +4427 -0
  78. data/lib/compass/installers/manifest.rb +1 -1
  79. data/lib/compass/installers/manifest.rbc +3335 -0
  80. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  81. data/lib/compass/installers/template_context.rbc +1030 -0
  82. data/lib/compass/logger.rbc +2317 -0
  83. data/lib/compass/quick_cache.rbc +324 -0
  84. data/lib/compass/sass_extensions.rbc +213 -0
  85. data/lib/compass/sass_extensions/functions.rb +2 -2
  86. data/lib/compass/sass_extensions/functions.rbc +808 -0
  87. data/lib/compass/sass_extensions/functions/colors.rbc +1279 -0
  88. data/lib/compass/sass_extensions/functions/constants.rbc +1921 -0
  89. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1966 -0
  90. data/lib/compass/sass_extensions/functions/display.rbc +1227 -0
  91. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  92. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  93. data/lib/compass/sass_extensions/functions/font_files.rbc +821 -0
  94. data/lib/compass/sass_extensions/functions/gradient_support.rb +18 -7
  95. data/lib/compass/sass_extensions/functions/gradient_support.rbc +14147 -0
  96. data/lib/compass/sass_extensions/functions/image_size.rbc +3152 -0
  97. data/lib/compass/sass_extensions/functions/inline_image.rb +3 -1
  98. data/lib/compass/sass_extensions/functions/inline_image.rbc +1678 -0
  99. data/lib/compass/sass_extensions/functions/lists.rbc +2601 -0
  100. data/lib/compass/sass_extensions/functions/math.rb +63 -0
  101. data/lib/compass/sass_extensions/functions/selectors.rbc +1592 -0
  102. data/lib/compass/sass_extensions/functions/sprites.rbc +3792 -0
  103. data/lib/compass/sass_extensions/functions/trig.rbc +811 -0
  104. data/lib/compass/sass_extensions/functions/urls.rbc +5248 -0
  105. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  106. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2169 -0
  107. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +660 -0
  108. data/lib/compass/sass_extensions/sprites.rbc +363 -0
  109. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  110. data/lib/compass/sass_extensions/sprites/engines.rbc +662 -0
  111. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +1074 -0
  112. data/lib/compass/sass_extensions/sprites/image.rbc +2961 -0
  113. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  114. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  115. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  116. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  117. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +1991 -0
  118. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  119. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  120. data/lib/compass/sprite_importer.rbc +3573 -0
  121. data/lib/compass/stats.rb +5 -0
  122. data/lib/compass/util.rbc +552 -0
  123. data/lib/compass/version.rbc +1245 -0
  124. data/test/fixtures/stylesheets/compass/css/background-clip.css +1 -1
  125. data/test/fixtures/stylesheets/compass/css/gradients.css +19 -369
  126. data/test/fixtures/stylesheets/compass/css/transition.css +44 -1
  127. data/test/fixtures/stylesheets/compass/css/utilities.css +1 -1
  128. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +1 -1
  129. data/test/fixtures/stylesheets/compass/sass/gradients.sass +8 -143
  130. data/test/fixtures/stylesheets/compass/sass/transition.scss +7 -1
  131. data/test/helpers/command_line.rbc +2820 -0
  132. data/test/helpers/diff.rbc +1104 -0
  133. data/test/helpers/io.rbc +962 -0
  134. data/test/helpers/rails.rbc +1116 -0
  135. data/test/helpers/test_case.rbc +1255 -0
  136. data/test/integrations/compass_test.rbc +6589 -0
  137. data/test/integrations/rails_integration_test.rbc +1342 -0
  138. data/test/integrations/sprites_test.rb +4 -4
  139. data/test/integrations/sprites_test.rbc +6192 -0
  140. data/test/test_helper.rbc +1694 -0
  141. data/test/units/actions_test.rbc +644 -0
  142. data/test/units/command_line_test.rbc +1532 -0
  143. data/test/units/compass_module_test.rb +36 -0
  144. data/test/units/compass_png_test.rbc +0 -0
  145. data/test/units/configuration_test.rbc +3833 -0
  146. data/test/units/rails_configuration_test.rbc +1032 -0
  147. data/test/units/sass_extensions_test.rb +13 -1
  148. data/test/units/sass_extensions_test.rbc +3586 -0
  149. data/test/units/sprites/engine_test.rbc +962 -0
  150. data/test/units/sprites/image_row_test.rbc +1578 -0
  151. data/test/units/sprites/image_test.rbc +2836 -0
  152. data/test/units/sprites/importer_test.rb +1 -1
  153. data/test/units/sprites/importer_test.rbc +2620 -0
  154. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  155. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  156. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  157. metadata +161 -15
  158. data/frameworks/compass/stylesheets/compass/css3/_gradient.scss +0 -99
  159. data/lib/compass/sass_extensions/functions/trig.rb +0 -28
@@ -267,21 +267,20 @@ Feature: Command Line
267
267
  Given I am using the existing project in test/fixtures/stylesheets/compass
268
268
  When I run: compass stats
269
269
  Then I am told statistics for each file:
270
- | Filename | Rules | Properties | Mixins Defs | Mixins Used | CSS Selectors | CSS Properties |
271
- | sass/border_radius.scss | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
272
- | sass/box.sass | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
273
- | sass/fonts.sass | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
274
- | sass/gradients.sass | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
275
- | sass/image_size.sass | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
276
- | sass/images.scss | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
277
- | sass/layout.sass | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
278
- | sass/legacy_clearfix.scss | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
279
- | sass/lists.scss | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
280
- | sass/print.sass | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
281
- | sass/reset.sass | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
282
- | sass/utilities.scss | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
283
- | ------------------------- | ----- | ---------- | -------------- | ----------- | ------------- | -------------- |
284
- | Total.* | \d+ | \d+ | \d+ | \d+ | \d+ | \d+ |
270
+ | Filename | Rules | Properties | Mixins Defs | Mixins Used | Filesize | CSS Selectors | CSS Properties | CSS Filesize |
271
+ | sass/border_radius.scss | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
272
+ | sass/box.sass | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
273
+ | sass/fonts.sass | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
274
+ | sass/gradients.sass | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
275
+ | sass/image_size.sass | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
276
+ | sass/images.scss | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
277
+ | sass/layout.sass | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
278
+ | sass/legacy_clearfix.scss | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
279
+ | sass/lists.scss | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
280
+ | sass/print.sass | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
281
+ | sass/reset.sass | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
282
+ | sass/utilities.scss | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
283
+ | Total.* | \d+ | \d+ | \d+ | \d+ | \d+ K?B | \d+ | \d+ | \d+ K?B |
285
284
 
286
285
  @listframeworks
287
286
  Scenario: List frameworks registered with compass
@@ -6,7 +6,6 @@
6
6
  @import "css3/columns";
7
7
  @import "css3/box-sizing";
8
8
  @import "css3/box";
9
- @import "css3/gradient";
10
9
  @import "css3/images";
11
10
  @import "css3/background-clip";
12
11
  @import "css3/background-origin";
@@ -14,4 +13,4 @@
14
13
  @import "css3/font-face";
15
14
  @import "css3/transform";
16
15
  @import "css3/transition";
17
- @import "css3/appearance";
16
+ @import "css3/appearance";
@@ -2,14 +2,14 @@
2
2
 
3
3
  // @doc off
4
4
  // Note ----------------------------------------------------------------------
5
- // Safari is the only browser that currently supports 3D transforms.
6
- // Because of that it can be important to control whether a given 2D transform
7
- // uses the full range of experimental browser prefixes, or only the 3D list.
5
+ // Safari, Chrome, and Firefox all support 3D transforms. However,
6
+ // only in the most recent builds. You should also provide fallback 2d support for
7
+ // Opera and IE. IE10 is slated to have 3d enabled, but is currently unreleased.
8
8
  // To make that easy, all 2D transforms include an browser-targeting toggle ($only3d)
9
9
  // to switch between the two support lists. The toggle defaults to 'false' (2D),
10
10
  // and also accepts 'true' (3D). Currently the lists are as follows:
11
11
  // 2D: Mozilla, Webkit, Opera, Official
12
- // 3D: Webkit, Official **(Only Safari Supports 3D perspective)**
12
+ // 3D: Webkit, Firefox.
13
13
 
14
14
  // Available Transforms ------------------------------------------------------
15
15
  // - Scale (2d and 3d)
@@ -23,15 +23,16 @@ $default-transition-function: false !default;
23
23
 
24
24
  $default-transition-delay: false !default;
25
25
 
26
+ $transitionable-prefixed-values: transform, transform-origin !default;
27
+
26
28
  // One or more properties to transition
27
29
  //
28
30
  // * for multiple, use a comma-delimited list
29
31
  // * also accepts "all" or "none"
30
32
 
31
33
  @mixin transition-property($properties: $default-transition-property) {
32
- @include experimental(transition-property, unquote($properties),
33
- -moz, -webkit, -o, -ms, not -khtml, official
34
- );
34
+ @if type-of($properties) == string { $properties: unquote($properties); }
35
+ @include build-prefix-values(transition-property, $properties);
35
36
  }
36
37
 
37
38
  // One or more durations in seconds
@@ -78,37 +79,7 @@ $default-transition-delay: false !default;
78
79
  $function: $default-transition-function,
79
80
  $delay: $default-transition-delay
80
81
  ) {
81
- @if $property and $duration and $function {
82
- // Shorthand (see https://github.com/chriseppstein/compass/issues/585)
83
- @if $delay {
84
- -webkit-transition: $property $duration $function;
85
- -webkit-transition-delay: $delay;
86
- @include experimental(transition, $property $duration $function $delay,
87
- -moz,
88
- not -webkit,
89
- -o,
90
- -ms,
91
- not -khtml,
92
- official
93
- );
94
- }
95
- @else {
96
- @include experimental(transition, $property $duration $function,
97
- -moz,
98
- -webkit,
99
- -o,
100
- -ms,
101
- not -khtml,
102
- official
103
- );
104
- }
105
- }
106
- @else {
107
- @include transition-property($property);
108
- @include transition-duration($duration);
109
- @if $function { @include transition-timing-function($function); }
110
- @if $delay { @include transition-delay($delay); }
111
- }
82
+ @include build-prefix-values(transition, compact($property $duration $function, false), $delay);
112
83
  }
113
84
 
114
85
  @mixin transition(
@@ -124,10 +95,60 @@ $default-transition-delay: false !default;
124
95
  $transition-10: false
125
96
  ) {
126
97
  @if $transition-1 == default {
127
- $transition-1 : -compass-space-list(compact($default-transition-property, $default-transition-duration, $default-transition-function, $default-transition-delay));
98
+ $transition-1 : (compact($default-transition-property, $default-transition-duration, $default-transition-function, $default-transition-delay));
128
99
  }
100
+
129
101
  $transition : compact($transition-1, $transition-2, $transition-3, $transition-4, $transition-5, $transition-6, $transition-7, $transition-8, $transition-9, $transition-10);
130
- @include experimental(transition, $transition,
131
- -moz, -webkit, -o, -ms, not -khtml, official
132
- );
102
+ @include build-prefix-values(transition, $transition);
103
+ }
104
+
105
+ @mixin build-prefix-values($property, $values, $delay: false) {
106
+ $raw-values: ($values);
107
+ $index: compact(false);
108
+
109
+ $webkit-value: compact(false);
110
+ $moz-value: compact(false);
111
+ $ms-value: compact(false);
112
+ $o-value: compact(false);
113
+
114
+ @each $value in $raw-values {
115
+ $value: compact(join($value, false));
116
+ $match: false;
117
+
118
+ @each $prefixed-value in $transitionable-prefixed-values {
119
+ @if index($value, $prefixed-value) {
120
+ $index: index($value, $prefixed-value);
121
+ $match: true;
122
+ }
123
+ }
124
+
125
+ @if $match {
126
+ $value-prefix: nth($value, $index);
127
+ $value-suffix: compact(false);
128
+
129
+ @for $i from 2 through length($value) {
130
+ $value-suffix: append($value-suffix, nth($value, $i), space);
131
+ }
132
+
133
+ $non-webkit-suffix: compact(append($value-suffix, $delay, space));
134
+
135
+ $webkit-value: append($webkit-value, compact(join(-webkit-#{$value-prefix}, $value-suffix)), comma);
136
+ $moz-value: append($moz-value, compact(join(-moz-#{$value-prefix}, $non-webkit-suffix)), comma);
137
+ $ms-value: append($ms-value, compact(join(-ms-#{$value-prefix}, $non-webkit-suffix)), comma);
138
+ $o-value: append($o-value, compact(join(-o-#{$value-prefix}, $non-webkit-suffix)), comma);
139
+ } @else {
140
+ $non-webkit-value: compact(append($value, $delay, space));
141
+
142
+ $webkit-value: append($webkit-value, $value, comma);
143
+ $moz-value: append($moz-value, $non-webkit-value, comma);
144
+ $ms-value: append($ms-value, $non-webkit-value, comma);
145
+ $o-value: append($o-value, $non-webkit-value, comma);
146
+ }
147
+ }
148
+
149
+ @if $experimental-support-for-webkit { -webkit-#{$property} : $webkit-value; @if $delay { -webkit-#{$property}-delay : $delay; } }
150
+ @if $experimental-support-for-mozilla { -moz-#{$property} : $moz-value; }
151
+ @if $experimental-support-for-microsoft { -ms-#{$property} : $ms-value; }
152
+ @if $experimental-support-for-opera { -o-#{$property} : $o-value; }
153
+ #{$property} : compact($values $delay);
133
154
  }
@@ -1,19 +1,17 @@
1
- @import "shared";
2
-
3
1
  // User Interface ------------------------------------------------------------
4
2
  // This file can be expanded to handle all the user interface properties as
5
3
  // they become available in browsers:
6
4
  // http://www.w3.org/TR/2000/WD-css3-userint-20000216
5
+ @import "shared";
6
+
7
7
 
8
- // User Select ---------------------------------------------------------------
9
8
  // This property controls the selection model and granularity of an element.
10
9
  //
11
10
  // @param $select
12
11
  // [ none | text | toggle | element | elements | all | inherit ]
13
-
14
12
  @mixin user-select($select) {
15
13
  $select: unquote($select);
16
14
  @include experimental(user-select, $select,
17
15
  -moz, -webkit, not -o, not -ms, -khtml, official
18
16
  );
19
- }
17
+ }
@@ -26,9 +26,17 @@
26
26
 
27
27
  // Hides text in an element so you can see the background.
28
28
  @mixin hide-text {
29
- $approximate_em_value: 12px / 1em;
30
- $wider_than_any_screen: -9999em;
31
- text-indent: $wider_than_any_screen * $approximate_em_value;
29
+ // slightly wider than the box prevents issues with inline-block elements
30
+ text-indent: 110%;
31
+ white-space: nowrap;
32
32
  overflow: hidden;
33
- text-align: left;
33
+ }
34
+
35
+ // Hides text in an element by squishing the text into oblivion.
36
+ // Use this if you need to hide text contained in an inline element
37
+ // but still have it read by a screen reader.
38
+ @mixin squish-text {
39
+ font: 0/0 serif;
40
+ text-shadow: none;
41
+ color: transparent;
34
42
  }
@@ -1 +1,2 @@
1
+ @import "sprites/base";
1
2
  @import "sprites/sprite-img";
@@ -1,3 +1,3 @@
1
1
  @warn "This import is deprecated. Use 'compass/typography/lists/inline-block-list' instead.";
2
2
 
3
- @import "../../typography/lists/inline-block-link";
3
+ @import "../../typography/lists/inline-block-list";
@@ -21,6 +21,8 @@ module Compass
21
21
  else
22
22
  []
23
23
  end
24
+ rescue ArgumentError # If HOME is relative
25
+ []
24
26
  end
25
27
  end
26
28
  module_function :base_directory, :lib_directory, :shared_extension_paths
@@ -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