compass 0.11.1 → 0.11.2

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 (107) hide show
  1. data/Rakefile +1 -15
  2. data/VERSION.yml +1 -1
  3. data/features/command_line.feature +2 -0
  4. data/features/extensions.feature +2 -1
  5. data/features/step_definitions/command_line_steps.rb +7 -1
  6. data/frameworks/compass/stylesheets/compass/_support.scss +6 -8
  7. data/frameworks/compass/stylesheets/compass/css3/_images.scss +2 -0
  8. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +4 -3
  9. data/lib/compass.rb +7 -1
  10. data/lib/compass.rbc +714 -0
  11. data/lib/compass/actions.rbc +2334 -0
  12. data/lib/compass/app_integration.rbc +828 -0
  13. data/lib/compass/app_integration/merb.rbc +102 -0
  14. data/lib/compass/app_integration/rails.rbc +1580 -0
  15. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1673 -0
  16. data/lib/compass/app_integration/rails/installer.rbc +3593 -0
  17. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  18. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  19. data/lib/compass/app_integration/stand_alone/installer.rbc +1467 -0
  20. data/lib/compass/browser_support.rbc +1132 -0
  21. data/lib/compass/compiler.rbc +4628 -0
  22. data/lib/compass/configuration.rbc +1342 -0
  23. data/lib/compass/configuration/adapters.rbc +2030 -0
  24. data/lib/compass/configuration/comments.rbc +762 -0
  25. data/lib/compass/configuration/data.rbc +2643 -0
  26. data/lib/compass/configuration/defaults.rbc +3042 -0
  27. data/lib/compass/configuration/file_data.rbc +731 -0
  28. data/lib/compass/configuration/helpers.rbc +3220 -0
  29. data/lib/compass/configuration/inheritance.rbc +3345 -0
  30. data/lib/compass/configuration/paths.rbc +412 -0
  31. data/lib/compass/configuration/serialization.rbc +1929 -0
  32. data/lib/compass/dependencies.rbc +220 -0
  33. data/lib/compass/errors.rbc +176 -0
  34. data/lib/compass/frameworks.rbc +3588 -0
  35. data/lib/compass/quick_cache.rbc +320 -0
  36. data/lib/compass/sass_extensions.rb +4 -0
  37. data/lib/compass/sass_extensions.rbc +111 -0
  38. data/lib/compass/sass_extensions/functions.rbc +775 -0
  39. data/lib/compass/sass_extensions/functions/colors.rbc +1275 -0
  40. data/lib/compass/sass_extensions/functions/constants.rbc +1901 -0
  41. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1954 -0
  42. data/lib/compass/sass_extensions/functions/display.rbc +993 -0
  43. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  44. data/lib/compass/sass_extensions/functions/font_files.rbc +404 -0
  45. data/lib/compass/sass_extensions/functions/gradient_support.rb +3 -1
  46. data/lib/compass/sass_extensions/functions/gradient_support.rbc +13899 -0
  47. data/lib/compass/sass_extensions/functions/image_size.rbc +2837 -0
  48. data/lib/compass/sass_extensions/functions/inline_image.rbc +1624 -0
  49. data/lib/compass/sass_extensions/functions/lists.rbc +2565 -0
  50. data/lib/compass/sass_extensions/functions/selectors.rbc +1584 -0
  51. data/lib/compass/sass_extensions/functions/sprites.rb +13 -1
  52. data/lib/compass/sass_extensions/functions/sprites.rbc +3491 -0
  53. data/lib/compass/sass_extensions/functions/trig.rbc +809 -0
  54. data/lib/compass/sass_extensions/functions/urls.rbc +3141 -0
  55. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  56. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2153 -0
  57. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +640 -0
  58. data/lib/compass/sass_extensions/sprites.rbc +299 -0
  59. data/lib/compass/sass_extensions/sprites/base.rb +20 -7
  60. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  61. data/lib/compass/sass_extensions/sprites/engines.rbc +53 -0
  62. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +908 -0
  63. data/lib/compass/sass_extensions/sprites/image.rbc +2583 -0
  64. data/lib/compass/sass_extensions/sprites/sprite_map.rb +15 -3
  65. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +2615 -0
  66. data/lib/compass/sass_extensions/sprites/sprites.rb +3 -3
  67. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  68. data/lib/compass/util.rbc +544 -0
  69. data/lib/compass/version.rb +3 -3
  70. data/lib/compass/version.rbc +1259 -0
  71. data/test/fixtures/sprites/public/images/colors/blue.png +0 -0
  72. data/test/fixtures/sprites/public/images/colors/yellow.png +0 -0
  73. data/test/fixtures/sprites/public/images/ko/default_background.png +0 -0
  74. data/test/fixtures/sprites/public/images/ko/starbg26x27.png +0 -0
  75. data/test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png +0 -0
  76. data/test/fixtures/sprites/public/images/prefix/20-by-20.png +0 -0
  77. data/test/fixtures/sprites/public/images/prefix/ten-by-ten.png +0 -0
  78. data/test/fixtures/sprites/public/images/selectors/ten-by-ten.png +0 -0
  79. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_active.png +0 -0
  80. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_hover.png +0 -0
  81. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png +0 -0
  82. data/test/fixtures/sprites/public/images/squares/ten-by-ten.png +0 -0
  83. data/test/fixtures/sprites/public/images/squares/twenty-by-twenty.png +0 -0
  84. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -0
  85. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -0
  86. data/test/fixtures/stylesheets/compass/css/gradients.css +57 -0
  87. data/test/fixtures/stylesheets/compass/css/grid_background.css +7 -0
  88. data/test/fixtures/stylesheets/compass/css/pie.css +1 -0
  89. data/test/fixtures/stylesheets/relative/config.rb +1 -0
  90. data/test/{command_line_helper.rb → helpers/command_line.rb} +0 -0
  91. data/test/helpers/diff.rb +49 -0
  92. data/test/{io_helper.rb → helpers/io.rb} +0 -0
  93. data/test/{rails_helper.rb → helpers/rails.rb} +0 -0
  94. data/test/helpers/test_case.rb +55 -0
  95. data/test/{compass_test.rb → integrations/compass_test.rb} +8 -8
  96. data/test/{rails_integration_test.rb → integrations/rails_integration_test.rb} +2 -1
  97. data/test/integrations/sprites_test.rb +607 -0
  98. data/test/{test_rails_helper.rb → integrations/test_rails_helper.rb} +0 -0
  99. data/test/test_helper.rb +13 -4
  100. data/test/{command_line_test.rb → units/command_line_test.rb} +0 -0
  101. data/test/{compass_png_test.rb → units/compass_png_test.rb} +1 -1
  102. data/test/{configuration_test.rb → units/configuration_test.rb} +37 -12
  103. data/test/{sass_extensions_test.rb → units/sass_extensions_test.rb} +0 -0
  104. data/test/units/sprites/base_test.rb +90 -0
  105. data/test/units/sprites/image_test.rb +97 -0
  106. metadata +114 -26
  107. data/test/test_case_helper.rb +0 -13
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ require 'cucumber'
13
13
  require 'cucumber/rake/task'
14
14
 
15
15
  Cucumber::Rake::Task.new(:features) do |t|
16
- t.cucumber_opts = "features --format pretty"
16
+ t.cucumber_opts = "features --format progress"
17
17
  end
18
18
 
19
19
  Rake::TestTask.new :test do |t|
@@ -29,20 +29,6 @@ To run with an alternate version of Rails, make test/rails a symlink to that ver
29
29
  To run with an alternate version of Haml & Sass, make test/haml a symlink to that version.
30
30
  END
31
31
 
32
- begin
33
- require 'rspec/core/rake_task'
34
-
35
- RSpec::Core::RakeTask.new(:spec)
36
-
37
- RSpec::Core::RakeTask.new(:rcov) do |spec|
38
- spec.rcov = true
39
- end
40
-
41
- task :default => :spec
42
- rescue LoadError
43
- puts "Rspec (or a dependency) is not available. Try running bundler install"
44
- end
45
-
46
32
  desc "Compile Examples into HTML and CSS"
47
33
  task :examples do
48
34
  linked_haml = "tests/haml"
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 11
4
- :build: 1
4
+ :build: 2
5
5
  :name: Antares
@@ -69,6 +69,7 @@ Feature: Command Line
69
69
  And the command exits with a non-zero error code
70
70
 
71
71
  Scenario: Initializing a rails project
72
+ Given ruby supports fork
72
73
  Given I'm in a newly created rails project: my_rails_project
73
74
  When I initialize a project using: compass init rails --sass-dir app/stylesheets --css-dir public/stylesheets/compiled
74
75
  Then a config file config/compass.rb is reported created
@@ -179,6 +180,7 @@ Feature: Command Line
179
180
  And a css file tmp/layout.css is reported overwritten
180
181
 
181
182
  Scenario: Watching a project for changes
183
+ Given ruby supports fork
182
184
  Given I am using the existing project in test/fixtures/stylesheets/compass
183
185
  When I run: compass compile
184
186
  And I run in a separate process: compass watch
@@ -14,7 +14,8 @@ Feature: Extensions
14
14
 
15
15
  @listframeworks
16
16
  Scenario: Extensions directory for rails projects
17
- Given I'm in a newly created rails project: my_rails_project
17
+ Given ruby supports fork
18
+ And I'm in a newly created rails project: my_rails_project
18
19
  And the "my_rails_project/vendor/plugins/compass/extensions" directory exists
19
20
  And and I have a fake extension at my_rails_project/vendor/plugins/compass/extensions/testing
20
21
  When I run: compass frameworks
@@ -3,7 +3,7 @@ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), '../../test')))
3
3
  require 'test_helper'
4
4
 
5
5
  require 'compass/exec'
6
-
6
+ include Compass::TestCaseHelper
7
7
  include Compass::CommandLineHelper
8
8
  include Compass::IoHelper
9
9
  include Compass::RailsHelper
@@ -21,6 +21,12 @@ After do
21
21
  end
22
22
  end
23
23
 
24
+ Given "ruby supports fork" do
25
+ if RUBY_PLATFORM == "java"
26
+ pending
27
+ end
28
+ end
29
+
24
30
  # Given Preconditions
25
31
  Given %r{^I am using the existing project in ([^\s]+)$} do |project|
26
32
  tmp_project = "tmp_#{File.basename(project)}"
@@ -16,23 +16,21 @@ $legacy-support-for-ie8: $legacy-support-for-ie !default;
16
16
  // this combined variable.
17
17
  $legacy-support-for-ie: $legacy-support-for-ie6 or $legacy-support-for-ie7 or $legacy-support-for-ie8;
18
18
 
19
- // Support for mozilla in experimental css3 properties.
19
+ // Support for mozilla in experimental css3 properties (-moz).
20
20
  $experimental-support-for-mozilla : true !default;
21
- // Support for webkit in experimental css3 properties.
22
- $experimental-support-for-webkit : true !default;
23
- // Support for webkit in experimental css3 properties.
21
+ // Support for webkit in experimental css3 properties (-webkit).
24
22
  $experimental-support-for-webkit : true !default;
25
23
  // Support for webkit's original (non-standard) gradient syntax.
26
24
  $support-for-original-webkit-gradients : true !default;
27
- // Support for opera in experimental css3 properties.
25
+ // Support for opera in experimental css3 properties (-o).
28
26
  $experimental-support-for-opera : true !default;
29
- // Support for microsoft in experimental css3 properties.
27
+ // Support for microsoft in experimental css3 properties (-ms).
30
28
  $experimental-support-for-microsoft : true !default;
31
- // Support for khtml in experimental css3 properties.
29
+ // Support for khtml in experimental css3 properties (-khtml).
32
30
  $experimental-support-for-khtml : true !default;
33
31
  // Support for svg in experimental css3 properties.
34
32
  // Setting this to true might add significant size to your
35
33
  // generated stylesheets.
36
34
  $experimental-support-for-svg : false !default;
37
- // Support for CSS PIE in experimental css3 properties.
35
+ // Support for CSS PIE in experimental css3 properties (-pie).
38
36
  $experimental-support-for-pie : false !default;
@@ -23,6 +23,7 @@
23
23
  @if $experimental-support-for-webkit and prefixed(-webkit, $backgrounds) { background: -webkit($backgrounds); }
24
24
  @if $experimental-support-for-mozilla and prefixed(-moz, $backgrounds) { background: -moz($backgrounds); }
25
25
  @if $experimental-support-for-opera and prefixed(-o, $backgrounds) { background: -o($backgrounds); }
26
+ @if $experimental-support-for-microsoft and prefixed(-ms, $backgrounds) { background: -ms($backgrounds); }
26
27
  @if $experimental-support-for-pie and $add-pie-bg { -pie-background: -pie($backgrounds); }
27
28
  background: $backgrounds ;
28
29
  }
@@ -70,6 +71,7 @@
70
71
  @if $experimental-support-for-webkit and prefixed(-webkit, $images) { background-image: -webkit($images); }
71
72
  @if $experimental-support-for-mozilla and prefixed(-moz, $images) { background-image: -moz($images); }
72
73
  @if $experimental-support-for-opera and prefixed(-o, $images) { background-image: -o($images); }
74
+ @if $experimental-support-for-microsoft and prefixed(-ms, $images) { background-image: -ms($images); }
73
75
  @if $experimental-support-for-pie and $add-pie-bg { @warn "PIE does not support background-image. Use @include background(#{$images}) instead." }
74
76
  background-image: $images ;
75
77
  }
@@ -15,14 +15,15 @@ $sprite-selectors: hover, target, active !default;
15
15
  background-position: sprite-position($map, $sprite, $offset-x, $offset-y);
16
16
  }
17
17
 
18
+
19
+ // Determines if you want to include magic selectors in your sprites
20
+ $disable-magic-sprite-selectors:false !default;
21
+
18
22
  // Include the position and (optionally) dimensions of this `$sprite`
19
23
  // in the given sprite `$map`. The sprite url should come from either a base
20
24
  // class or you can specify the `sprite-url` explicitly like this:
21
25
  //
22
26
  // background: $map no-repeat;
23
-
24
- $disable-magic-sprite-selectors:false !default;
25
-
26
27
  @mixin sprite($map, $sprite, $dimensions: false, $offset-x: 0, $offset-y: 0) {
27
28
  @include sprite-background-position($map, $sprite, $offset-x, $offset-y);
28
29
  @if $dimensions {
@@ -15,7 +15,13 @@ module Compass
15
15
  File.expand_path(File.join(File.dirname(__FILE__)))
16
16
  end
17
17
  def shared_extension_paths
18
- [File.expand_path("~/.compass/extensions")]
18
+ @shared_extension_paths ||= begin
19
+ if ENV["HOME"] && File.directory?(ENV["HOME"])
20
+ [File.expand_path("~/.compass/extensions")]
21
+ else
22
+ []
23
+ end
24
+ end
19
25
  end
20
26
  module_function :base_directory, :lib_directory, :shared_extension_paths
21
27
  extend QuickCache
@@ -0,0 +1,714 @@
1
+ !RBIX
2
+ 333337424968067900
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 99
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
+ 35
45
+ 7
46
+ 56
47
+ 9
48
+ 50
49
+ 10
50
+ 0
51
+ 15
52
+ 5
53
+ 7
54
+ 11
55
+ 64
56
+ 47
57
+ 49
58
+ 12
59
+ 1
60
+ 15
61
+ 99
62
+ 7
63
+ 0
64
+ 65
65
+ 49
66
+ 1
67
+ 2
68
+ 13
69
+ 99
70
+ 12
71
+ 7
72
+ 13
73
+ 12
74
+ 7
75
+ 14
76
+ 12
77
+ 65
78
+ 12
79
+ 49
80
+ 15
81
+ 4
82
+ 15
83
+ 49
84
+ 13
85
+ 0
86
+ 15
87
+ 7
88
+ 16
89
+ 64
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
+ 35
103
+ 5
104
+ 56
105
+ 21
106
+ 50
107
+ 10
108
+ 0
109
+ 15
110
+ 2
111
+ 11
112
+ I
113
+ 7
114
+ I
115
+ 0
116
+ I
117
+ 0
118
+ I
119
+ 0
120
+ n
121
+ p
122
+ 22
123
+ x
124
+ 7
125
+ Compass
126
+ x
127
+ 11
128
+ open_module
129
+ s
130
+ 12
131
+ dependencies
132
+ s
133
+ 4
134
+ util
135
+ s
136
+ 15
137
+ browser_support
138
+ s
139
+ 15
140
+ sass_extensions
141
+ s
142
+ 7
143
+ version
144
+ s
145
+ 6
146
+ errors
147
+ s
148
+ 11
149
+ quick_cache
150
+ M
151
+ 1
152
+ p
153
+ 2
154
+ x
155
+ 9
156
+ for_block
157
+ t
158
+ n
159
+ x
160
+ 9
161
+ __block__
162
+ i
163
+ 19
164
+ 57
165
+ 19
166
+ 0
167
+ 15
168
+ 5
169
+ 7
170
+ 0
171
+ 20
172
+ 0
173
+ 47
174
+ 101
175
+ 1
176
+ 63
177
+ 2
178
+ 47
179
+ 49
180
+ 2
181
+ 1
182
+ 11
183
+ I
184
+ 5
185
+ I
186
+ 1
187
+ I
188
+ 1
189
+ I
190
+ 1
191
+ n
192
+ p
193
+ 3
194
+ s
195
+ 8
196
+ compass/
197
+ x
198
+ 4
199
+ to_s
200
+ x
201
+ 7
202
+ require
203
+ p
204
+ 5
205
+ I
206
+ 0
207
+ I
208
+ 4
209
+ I
210
+ 4
211
+ I
212
+ 5
213
+ I
214
+ 13
215
+ x
216
+ 44
217
+ /Users/chris/Projects/compass/lib/compass.rb
218
+ p
219
+ 1
220
+ x
221
+ 3
222
+ lib
223
+ x
224
+ 4
225
+ each
226
+ s
227
+ 14
228
+ sass/callbacks
229
+ x
230
+ 7
231
+ require
232
+ x
233
+ 15
234
+ __module_init__
235
+ M
236
+ 1
237
+ n
238
+ n
239
+ x
240
+ 7
241
+ Compass
242
+ i
243
+ 65
244
+ 5
245
+ 66
246
+ 99
247
+ 7
248
+ 0
249
+ 7
250
+ 1
251
+ 65
252
+ 67
253
+ 49
254
+ 2
255
+ 0
256
+ 49
257
+ 3
258
+ 4
259
+ 15
260
+ 99
261
+ 7
262
+ 4
263
+ 7
264
+ 5
265
+ 65
266
+ 67
267
+ 49
268
+ 2
269
+ 0
270
+ 49
271
+ 3
272
+ 4
273
+ 15
274
+ 99
275
+ 7
276
+ 6
277
+ 7
278
+ 7
279
+ 65
280
+ 67
281
+ 49
282
+ 2
283
+ 0
284
+ 49
285
+ 3
286
+ 4
287
+ 15
288
+ 5
289
+ 7
290
+ 0
291
+ 7
292
+ 4
293
+ 7
294
+ 6
295
+ 47
296
+ 49
297
+ 8
298
+ 3
299
+ 15
300
+ 5
301
+ 45
302
+ 9
303
+ 10
304
+ 47
305
+ 49
306
+ 11
307
+ 1
308
+ 11
309
+ I
310
+ 5
311
+ I
312
+ 0
313
+ I
314
+ 0
315
+ I
316
+ 0
317
+ n
318
+ p
319
+ 12
320
+ x
321
+ 14
322
+ base_directory
323
+ M
324
+ 1
325
+ n
326
+ n
327
+ x
328
+ 14
329
+ base_directory
330
+ i
331
+ 26
332
+ 45
333
+ 0
334
+ 1
335
+ 45
336
+ 0
337
+ 2
338
+ 45
339
+ 0
340
+ 3
341
+ 65
342
+ 49
343
+ 4
344
+ 0
345
+ 49
346
+ 5
347
+ 1
348
+ 7
349
+ 6
350
+ 64
351
+ 49
352
+ 7
353
+ 2
354
+ 49
355
+ 8
356
+ 1
357
+ 11
358
+ I
359
+ 4
360
+ I
361
+ 0
362
+ I
363
+ 0
364
+ I
365
+ 0
366
+ n
367
+ p
368
+ 9
369
+ x
370
+ 4
371
+ File
372
+ n
373
+ n
374
+ n
375
+ x
376
+ 11
377
+ active_path
378
+ x
379
+ 7
380
+ dirname
381
+ s
382
+ 2
383
+ ..
384
+ x
385
+ 4
386
+ join
387
+ x
388
+ 11
389
+ expand_path
390
+ p
391
+ 5
392
+ I
393
+ -1
394
+ I
395
+ b
396
+ I
397
+ 0
398
+ I
399
+ c
400
+ I
401
+ 1a
402
+ x
403
+ 44
404
+ /Users/chris/Projects/compass/lib/compass.rb
405
+ p
406
+ 0
407
+ x
408
+ 17
409
+ method_visibility
410
+ x
411
+ 15
412
+ add_defn_method
413
+ x
414
+ 13
415
+ lib_directory
416
+ M
417
+ 1
418
+ n
419
+ n
420
+ x
421
+ 13
422
+ lib_directory
423
+ i
424
+ 23
425
+ 45
426
+ 0
427
+ 1
428
+ 45
429
+ 0
430
+ 2
431
+ 45
432
+ 0
433
+ 3
434
+ 65
435
+ 49
436
+ 4
437
+ 0
438
+ 49
439
+ 5
440
+ 1
441
+ 49
442
+ 6
443
+ 1
444
+ 49
445
+ 7
446
+ 1
447
+ 11
448
+ I
449
+ 4
450
+ I
451
+ 0
452
+ I
453
+ 0
454
+ I
455
+ 0
456
+ n
457
+ p
458
+ 8
459
+ x
460
+ 4
461
+ File
462
+ n
463
+ n
464
+ n
465
+ x
466
+ 11
467
+ active_path
468
+ x
469
+ 7
470
+ dirname
471
+ x
472
+ 4
473
+ join
474
+ x
475
+ 11
476
+ expand_path
477
+ p
478
+ 5
479
+ I
480
+ -1
481
+ I
482
+ e
483
+ I
484
+ 0
485
+ I
486
+ f
487
+ I
488
+ 17
489
+ x
490
+ 44
491
+ /Users/chris/Projects/compass/lib/compass.rb
492
+ p
493
+ 0
494
+ x
495
+ 22
496
+ shared_extension_paths
497
+ M
498
+ 1
499
+ n
500
+ n
501
+ x
502
+ 22
503
+ shared_extension_paths
504
+ i
505
+ 12
506
+ 45
507
+ 0
508
+ 1
509
+ 7
510
+ 2
511
+ 64
512
+ 49
513
+ 3
514
+ 1
515
+ 35
516
+ 1
517
+ 11
518
+ I
519
+ 2
520
+ I
521
+ 0
522
+ I
523
+ 0
524
+ I
525
+ 0
526
+ n
527
+ p
528
+ 4
529
+ x
530
+ 4
531
+ File
532
+ n
533
+ s
534
+ 21
535
+ ~/.compass/extensions
536
+ x
537
+ 11
538
+ expand_path
539
+ p
540
+ 5
541
+ I
542
+ -1
543
+ I
544
+ 11
545
+ I
546
+ 0
547
+ I
548
+ 12
549
+ I
550
+ c
551
+ x
552
+ 44
553
+ /Users/chris/Projects/compass/lib/compass.rb
554
+ p
555
+ 0
556
+ x
557
+ 15
558
+ module_function
559
+ x
560
+ 10
561
+ QuickCache
562
+ n
563
+ x
564
+ 6
565
+ extend
566
+ p
567
+ 11
568
+ I
569
+ 2
570
+ I
571
+ b
572
+ I
573
+ 10
574
+ I
575
+ e
576
+ I
577
+ 1e
578
+ I
579
+ 11
580
+ I
581
+ 2c
582
+ I
583
+ 14
584
+ I
585
+ 38
586
+ I
587
+ 15
588
+ I
589
+ 41
590
+ x
591
+ 44
592
+ /Users/chris/Projects/compass/lib/compass.rb
593
+ p
594
+ 0
595
+ x
596
+ 13
597
+ attach_method
598
+ s
599
+ 13
600
+ configuration
601
+ s
602
+ 10
603
+ frameworks
604
+ s
605
+ 15
606
+ app_integration
607
+ s
608
+ 7
609
+ actions
610
+ s
611
+ 8
612
+ compiler
613
+ M
614
+ 1
615
+ p
616
+ 2
617
+ x
618
+ 9
619
+ for_block
620
+ t
621
+ n
622
+ x
623
+ 9
624
+ __block__
625
+ i
626
+ 19
627
+ 57
628
+ 19
629
+ 0
630
+ 15
631
+ 5
632
+ 7
633
+ 0
634
+ 20
635
+ 0
636
+ 47
637
+ 101
638
+ 1
639
+ 63
640
+ 2
641
+ 47
642
+ 49
643
+ 2
644
+ 1
645
+ 11
646
+ I
647
+ 5
648
+ I
649
+ 1
650
+ I
651
+ 1
652
+ I
653
+ 1
654
+ n
655
+ p
656
+ 3
657
+ s
658
+ 8
659
+ compass/
660
+ x
661
+ 4
662
+ to_s
663
+ x
664
+ 7
665
+ require
666
+ p
667
+ 5
668
+ I
669
+ 0
670
+ I
671
+ 18
672
+ I
673
+ 4
674
+ I
675
+ 19
676
+ I
677
+ 13
678
+ x
679
+ 44
680
+ /Users/chris/Projects/compass/lib/compass.rb
681
+ p
682
+ 1
683
+ x
684
+ 3
685
+ lib
686
+ p
687
+ 11
688
+ I
689
+ 0
690
+ I
691
+ 1
692
+ I
693
+ a
694
+ I
695
+ 4
696
+ I
697
+ 27
698
+ I
699
+ 8
700
+ I
701
+ 30
702
+ I
703
+ a
704
+ I
705
+ 4a
706
+ I
707
+ 18
708
+ I
709
+ 63
710
+ x
711
+ 44
712
+ /Users/chris/Projects/compass/lib/compass.rb
713
+ p
714
+ 0