compass 0.12.7 → 0.13.alpha.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,324 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 10
54
+ QuickCache
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 10
67
+ QuickCache
68
+ i
69
+ 16
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 7
76
+ 1
77
+ 65
78
+ 67
79
+ 49
80
+ 2
81
+ 0
82
+ 49
83
+ 3
84
+ 4
85
+ 11
86
+ I
87
+ 5
88
+ I
89
+ 0
90
+ I
91
+ 0
92
+ I
93
+ 0
94
+ n
95
+ p
96
+ 4
97
+ x
98
+ 11
99
+ quick_cache
100
+ M
101
+ 1
102
+ n
103
+ n
104
+ x
105
+ 11
106
+ quick_cache
107
+ i
108
+ 96
109
+ 23
110
+ 1
111
+ 10
112
+ 8
113
+ 79
114
+ 19
115
+ 1
116
+ 15
117
+ 39
118
+ 0
119
+ 13
120
+ 10
121
+ 23
122
+ 15
123
+ 44
124
+ 43
125
+ 1
126
+ 78
127
+ 49
128
+ 2
129
+ 1
130
+ 38
131
+ 0
132
+ 15
133
+ 39
134
+ 0
135
+ 20
136
+ 0
137
+ 49
138
+ 3
139
+ 1
140
+ 13
141
+ 9
142
+ 57
143
+ 15
144
+ 39
145
+ 0
146
+ 20
147
+ 0
148
+ 49
149
+ 3
150
+ 1
151
+ 49
152
+ 4
153
+ 0
154
+ 45
155
+ 5
156
+ 6
157
+ 49
158
+ 7
159
+ 0
160
+ 20
161
+ 1
162
+ 82
163
+ 8
164
+ 85
165
+ 9
166
+ 9
167
+ 71
168
+ 39
169
+ 0
170
+ 20
171
+ 0
172
+ 49
173
+ 3
174
+ 1
175
+ 49
176
+ 10
177
+ 0
178
+ 8
179
+ 95
180
+ 39
181
+ 0
182
+ 20
183
+ 0
184
+ 45
185
+ 5
186
+ 11
187
+ 49
188
+ 7
189
+ 0
190
+ 60
191
+ 0
192
+ 35
193
+ 2
194
+ 13
195
+ 18
196
+ 3
197
+ 49
198
+ 12
199
+ 2
200
+ 15
201
+ 49
202
+ 10
203
+ 0
204
+ 11
205
+ I
206
+ 6
207
+ I
208
+ 2
209
+ I
210
+ 1
211
+ I
212
+ 2
213
+ n
214
+ p
215
+ 13
216
+ x
217
+ 12
218
+ @quick_cache
219
+ x
220
+ 4
221
+ Hash
222
+ x
223
+ 16
224
+ new_from_literal
225
+ x
226
+ 2
227
+ []
228
+ x
229
+ 5
230
+ first
231
+ x
232
+ 4
233
+ Time
234
+ n
235
+ x
236
+ 3
237
+ now
238
+ x
239
+ 1
240
+ -
241
+ x
242
+ 1
243
+ >
244
+ x
245
+ 4
246
+ last
247
+ n
248
+ x
249
+ 3
250
+ []=
251
+ p
252
+ 13
253
+ I
254
+ -1
255
+ I
256
+ 6
257
+ I
258
+ 8
259
+ I
260
+ 7
261
+ I
262
+ 18
263
+ I
264
+ 8
265
+ I
266
+ 3b
267
+ I
268
+ 9
269
+ I
270
+ 47
271
+ I
272
+ b
273
+ I
274
+ 5f
275
+ I
276
+ 0
277
+ I
278
+ 60
279
+ x
280
+ 58
281
+ /Users/crispee/Projects/compass/lib/compass/quick_cache.rb
282
+ p
283
+ 2
284
+ x
285
+ 3
286
+ key
287
+ x
288
+ 3
289
+ ttl
290
+ x
291
+ 17
292
+ method_visibility
293
+ x
294
+ 15
295
+ add_defn_method
296
+ p
297
+ 3
298
+ I
299
+ 2
300
+ I
301
+ 6
302
+ I
303
+ 10
304
+ x
305
+ 58
306
+ /Users/crispee/Projects/compass/lib/compass/quick_cache.rb
307
+ p
308
+ 0
309
+ x
310
+ 13
311
+ attach_method
312
+ p
313
+ 3
314
+ I
315
+ 0
316
+ I
317
+ 1
318
+ I
319
+ 1c
320
+ x
321
+ 58
322
+ /Users/crispee/Projects/compass/lib/compass/quick_cache.rb
323
+ p
324
+ 0
@@ -0,0 +1,213 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 92
13
+ 45
14
+ 0
15
+ 1
16
+ 43
17
+ 2
18
+ 43
19
+ 3
20
+ 49
21
+ 4
22
+ 0
23
+ 7
24
+ 5
25
+ 13
26
+ 70
27
+ 9
28
+ 28
29
+ 15
30
+ 44
31
+ 43
32
+ 6
33
+ 7
34
+ 7
35
+ 78
36
+ 49
37
+ 8
38
+ 2
39
+ 6
40
+ 5
41
+ 49
42
+ 9
43
+ 1
44
+ 49
45
+ 10
46
+ 0
47
+ 9
48
+ 39
49
+ 1
50
+ 8
51
+ 50
52
+ 5
53
+ 45
54
+ 11
55
+ 12
56
+ 7
57
+ 13
58
+ 64
59
+ 47
60
+ 49
61
+ 14
62
+ 2
63
+ 15
64
+ 99
65
+ 7
66
+ 15
67
+ 45
68
+ 16
69
+ 17
70
+ 49
71
+ 18
72
+ 2
73
+ 15
74
+ 1
75
+ 15
76
+ 5
77
+ 7
78
+ 19
79
+ 64
80
+ 47
81
+ 49
82
+ 20
83
+ 1
84
+ 15
85
+ 5
86
+ 7
87
+ 21
88
+ 64
89
+ 47
90
+ 49
91
+ 20
92
+ 1
93
+ 15
94
+ 5
95
+ 7
96
+ 22
97
+ 64
98
+ 47
99
+ 49
100
+ 20
101
+ 1
102
+ 15
103
+ 2
104
+ 11
105
+ I
106
+ 4
107
+ I
108
+ 0
109
+ I
110
+ 0
111
+ I
112
+ 0
113
+ n
114
+ p
115
+ 23
116
+ x
117
+ 4
118
+ Sass
119
+ n
120
+ x
121
+ 6
122
+ Script
123
+ x
124
+ 9
125
+ Functions
126
+ x
127
+ 7
128
+ methods
129
+ n
130
+ x
131
+ 6
132
+ Regexp
133
+ s
134
+ 11
135
+ \Adeclare\Z
136
+ x
137
+ 3
138
+ new
139
+ x
140
+ 4
141
+ grep
142
+ x
143
+ 4
144
+ any?
145
+ x
146
+ 9
147
+ LoadError
148
+ n
149
+ s
150
+ 155
151
+ It looks like you've got an incompatible version of Sass. This often happens when you have an old haml gem installed. Please upgrade Haml to v3.1 or above.
152
+ x
153
+ 5
154
+ raise
155
+ x
156
+ 14
157
+ SassExtensions
158
+ x
159
+ 7
160
+ Compass
161
+ n
162
+ x
163
+ 17
164
+ open_module_under
165
+ s
166
+ 33
167
+ compass/sass_extensions/functions
168
+ x
169
+ 7
170
+ require
171
+ s
172
+ 38
173
+ compass/sass_extensions/monkey_patches
174
+ s
175
+ 31
176
+ compass/sass_extensions/sprites
177
+ p
178
+ 15
179
+ I
180
+ 0
181
+ I
182
+ 1
183
+ I
184
+ 27
185
+ I
186
+ 2
187
+ I
188
+ 32
189
+ I
190
+ 0
191
+ I
192
+ 33
193
+ I
194
+ 5
195
+ I
196
+ 3f
197
+ I
198
+ 8
199
+ I
200
+ 48
201
+ I
202
+ 9
203
+ I
204
+ 51
205
+ I
206
+ a
207
+ I
208
+ 5c
209
+ x
210
+ 62
211
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions.rb
212
+ p
213
+ 0