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
@@ -22,7 +22,7 @@ module Compass::SassExtensions::Functions::Sprites
22
22
  def sprite_map(glob, kwargs = {})
23
23
  kwargs.extend VariableReader
24
24
  Compass::SassExtensions::Sprites::Base.from_uri(glob, self, kwargs)
25
- end
25
+ end
26
26
  Sass::Script::Functions.declare :sprite_map, [:glob], :var_kwargs => true
27
27
 
28
28
  # Returns the image and background position for use in a single shorthand property:
@@ -34,6 +34,7 @@ module Compass::SassExtensions::Functions::Sprites
34
34
  #
35
35
  # background: url('/images/icons.png?12345678') 0 -24px no-repeat;
36
36
  def sprite(map, sprite, offset_x = ZERO, offset_y = ZERO)
37
+ sprite = convert_sprite_name(sprite)
37
38
  verify_map(map)
38
39
  unless sprite.is_a?(Sass::Script::String)
39
40
  raise Sass::SyntaxError, %Q(The second argument to sprite() must be a sprite name. See http://beta.compass-style.org/help/tutorials/spriting/ for more information.)
@@ -56,6 +57,7 @@ module Compass::SassExtensions::Functions::Sprites
56
57
 
57
58
  # Returns the path to the original image file for the sprite with the given name
58
59
  def sprite_file(map, sprite)
60
+ sprite = convert_sprite_name(sprite)
59
61
  verify_map(map, "sprite")
60
62
  verify_sprite(sprite)
61
63
  if image = map.image_for(sprite.value)
@@ -68,6 +70,7 @@ module Compass::SassExtensions::Functions::Sprites
68
70
 
69
71
  # Returns voolean if sprite has a parent
70
72
  def sprite_does_not_have_parent(map, sprite)
73
+ sprite = convert_sprite_name(sprite)
71
74
  verify_map map
72
75
  verify_sprite sprite
73
76
  Sass::Script::Bool.new map.image_for(sprite.value).parent.nil?
@@ -77,6 +80,7 @@ module Compass::SassExtensions::Functions::Sprites
77
80
 
78
81
  # Returns boolean if sprite has the selector
79
82
  def sprite_has_selector(map, sprite, selector)
83
+ sprite = convert_sprite_name(sprite)
80
84
  verify_map map
81
85
  verify_sprite sprite
82
86
  unless VALID_SELECTORS.include?(selector.value)
@@ -118,6 +122,7 @@ module Compass::SassExtensions::Functions::Sprites
118
122
  #
119
123
  # background-position: 3px -36px;
120
124
  def sprite_position(map, sprite = nil, offset_x = ZERO, offset_y = ZERO)
125
+ sprite = convert_sprite_name(sprite)
121
126
  verify_map(map, "sprite-position")
122
127
  unless sprite && sprite.is_a?(Sass::Script::String)
123
128
  raise Sass::SyntaxError, %Q(The second argument to sprite-position must be a sprite name. See http://beta.compass-style.org/help/tutorials/spriting/ for more information.)
@@ -147,6 +152,13 @@ module Compass::SassExtensions::Functions::Sprites
147
152
 
148
153
  protected
149
154
 
155
+ def convert_sprite_name(sprite)
156
+ if sprite.is_a?(Sass::Script::Color)
157
+ return Sass::Script::String.new(Sass::Script::Color::HTML4_COLORS_REVERSE[sprite.rgb])
158
+ end
159
+ sprite
160
+ end
161
+
150
162
  def verify_map(map, error = "sprite")
151
163
  unless map.is_a?(Compass::SassExtensions::Sprites::Base)
152
164
  missing_sprite!(error)
@@ -0,0 +1,3491 @@
1
+ !RBIX
2
+ 333337424968067900
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 34
13
+ 99
14
+ 7
15
+ 0
16
+ 45
17
+ 1
18
+ 2
19
+ 43
20
+ 3
21
+ 43
22
+ 4
23
+ 49
24
+ 5
25
+ 2
26
+ 13
27
+ 99
28
+ 12
29
+ 7
30
+ 6
31
+ 12
32
+ 7
33
+ 7
34
+ 12
35
+ 65
36
+ 12
37
+ 49
38
+ 8
39
+ 4
40
+ 15
41
+ 49
42
+ 6
43
+ 0
44
+ 15
45
+ 2
46
+ 11
47
+ I
48
+ 6
49
+ I
50
+ 0
51
+ I
52
+ 0
53
+ I
54
+ 0
55
+ n
56
+ p
57
+ 9
58
+ x
59
+ 7
60
+ Sprites
61
+ x
62
+ 7
63
+ Compass
64
+ n
65
+ x
66
+ 14
67
+ SassExtensions
68
+ x
69
+ 9
70
+ Functions
71
+ x
72
+ 17
73
+ open_module_under
74
+ x
75
+ 15
76
+ __module_init__
77
+ M
78
+ 1
79
+ n
80
+ n
81
+ x
82
+ 7
83
+ Sprites
84
+ i
85
+ 537
86
+ 5
87
+ 66
88
+ 65
89
+ 7
90
+ 0
91
+ 45
92
+ 1
93
+ 2
94
+ 43
95
+ 3
96
+ 43
97
+ 4
98
+ 13
99
+ 71
100
+ 5
101
+ 47
102
+ 9
103
+ 31
104
+ 47
105
+ 49
106
+ 6
107
+ 0
108
+ 13
109
+ 78
110
+ 47
111
+ 49
112
+ 7
113
+ 1
114
+ 15
115
+ 8
116
+ 35
117
+ 78
118
+ 49
119
+ 5
120
+ 1
121
+ 49
122
+ 8
123
+ 2
124
+ 15
125
+ 65
126
+ 7
127
+ 9
128
+ 7
129
+ 10
130
+ 64
131
+ 7
132
+ 11
133
+ 64
134
+ 7
135
+ 12
136
+ 64
137
+ 35
138
+ 3
139
+ 49
140
+ 8
141
+ 2
142
+ 15
143
+ 99
144
+ 7
145
+ 13
146
+ 65
147
+ 49
148
+ 14
149
+ 2
150
+ 13
151
+ 99
152
+ 12
153
+ 7
154
+ 15
155
+ 12
156
+ 7
157
+ 16
158
+ 12
159
+ 65
160
+ 12
161
+ 49
162
+ 17
163
+ 4
164
+ 15
165
+ 49
166
+ 15
167
+ 0
168
+ 15
169
+ 99
170
+ 7
171
+ 18
172
+ 7
173
+ 19
174
+ 65
175
+ 67
176
+ 49
177
+ 20
178
+ 0
179
+ 49
180
+ 21
181
+ 4
182
+ 15
183
+ 45
184
+ 1
185
+ 22
186
+ 43
187
+ 3
188
+ 43
189
+ 23
190
+ 7
191
+ 18
192
+ 7
193
+ 24
194
+ 35
195
+ 1
196
+ 44
197
+ 43
198
+ 25
199
+ 79
200
+ 49
201
+ 26
202
+ 1
203
+ 13
204
+ 7
205
+ 27
206
+ 2
207
+ 49
208
+ 28
209
+ 2
210
+ 15
211
+ 49
212
+ 29
213
+ 3
214
+ 15
215
+ 99
216
+ 7
217
+ 30
218
+ 7
219
+ 31
220
+ 65
221
+ 67
222
+ 49
223
+ 20
224
+ 0
225
+ 49
226
+ 21
227
+ 4
228
+ 15
229
+ 45
230
+ 1
231
+ 32
232
+ 43
233
+ 3
234
+ 43
235
+ 23
236
+ 7
237
+ 30
238
+ 7
239
+ 33
240
+ 7
241
+ 30
242
+ 35
243
+ 2
244
+ 49
245
+ 29
246
+ 2
247
+ 15
248
+ 45
249
+ 1
250
+ 34
251
+ 43
252
+ 3
253
+ 43
254
+ 23
255
+ 7
256
+ 30
257
+ 7
258
+ 33
259
+ 7
260
+ 30
261
+ 7
262
+ 35
263
+ 35
264
+ 3
265
+ 49
266
+ 29
267
+ 2
268
+ 15
269
+ 45
270
+ 1
271
+ 36
272
+ 43
273
+ 3
274
+ 43
275
+ 23
276
+ 7
277
+ 30
278
+ 7
279
+ 33
280
+ 7
281
+ 30
282
+ 7
283
+ 35
284
+ 7
285
+ 37
286
+ 35
287
+ 4
288
+ 49
289
+ 29
290
+ 2
291
+ 15
292
+ 99
293
+ 7
294
+ 38
295
+ 7
296
+ 39
297
+ 65
298
+ 67
299
+ 49
300
+ 20
301
+ 0
302
+ 49
303
+ 21
304
+ 4
305
+ 15
306
+ 45
307
+ 1
308
+ 40
309
+ 43
310
+ 3
311
+ 43
312
+ 23
313
+ 7
314
+ 41
315
+ 7
316
+ 30
317
+ 35
318
+ 1
319
+ 49
320
+ 29
321
+ 2
322
+ 15
323
+ 99
324
+ 7
325
+ 42
326
+ 7
327
+ 43
328
+ 65
329
+ 67
330
+ 49
331
+ 20
332
+ 0
333
+ 49
334
+ 21
335
+ 4
336
+ 15
337
+ 45
338
+ 1
339
+ 44
340
+ 43
341
+ 3
342
+ 43
343
+ 23
344
+ 7
345
+ 42
346
+ 7
347
+ 33
348
+ 7
349
+ 30
350
+ 35
351
+ 2
352
+ 49
353
+ 29
354
+ 2
355
+ 15
356
+ 99
357
+ 7
358
+ 45
359
+ 7
360
+ 46
361
+ 65
362
+ 67
363
+ 49
364
+ 20
365
+ 0
366
+ 49
367
+ 21
368
+ 4
369
+ 15
370
+ 45
371
+ 1
372
+ 47
373
+ 43
374
+ 3
375
+ 43
376
+ 23
377
+ 7
378
+ 45
379
+ 7
380
+ 33
381
+ 7
382
+ 30
383
+ 35
384
+ 2
385
+ 49
386
+ 29
387
+ 2
388
+ 15
389
+ 99
390
+ 7
391
+ 48
392
+ 7
393
+ 49
394
+ 65
395
+ 67
396
+ 49
397
+ 20
398
+ 0
399
+ 49
400
+ 21
401
+ 4
402
+ 15
403
+ 45
404
+ 1
405
+ 50
406
+ 43
407
+ 3
408
+ 43
409
+ 23
410
+ 7
411
+ 48
412
+ 7
413
+ 33
414
+ 7
415
+ 30
416
+ 7
417
+ 51
418
+ 35
419
+ 3
420
+ 49
421
+ 29
422
+ 2
423
+ 15
424
+ 99
425
+ 7
426
+ 52
427
+ 7
428
+ 53
429
+ 65
430
+ 67
431
+ 49
432
+ 20
433
+ 0
434
+ 49
435
+ 21
436
+ 4
437
+ 15
438
+ 45
439
+ 1
440
+ 54
441
+ 43
442
+ 3
443
+ 43
444
+ 23
445
+ 7
446
+ 52
447
+ 7
448
+ 33
449
+ 35
450
+ 1
451
+ 49
452
+ 29
453
+ 2
454
+ 15
455
+ 99
456
+ 7
457
+ 55
458
+ 7
459
+ 56
460
+ 65
461
+ 67
462
+ 49
463
+ 20
464
+ 0
465
+ 49
466
+ 21
467
+ 4
468
+ 15
469
+ 45
470
+ 1
471
+ 57
472
+ 43
473
+ 3
474
+ 43
475
+ 23
476
+ 7
477
+ 55
478
+ 7
479
+ 33
480
+ 35
481
+ 1
482
+ 49
483
+ 29
484
+ 2
485
+ 15
486
+ 45
487
+ 1
488
+ 58
489
+ 43
490
+ 3
491
+ 43
492
+ 23
493
+ 7
494
+ 55
495
+ 7
496
+ 33
497
+ 7
498
+ 30
499
+ 35
500
+ 2
501
+ 49
502
+ 29
503
+ 2
504
+ 15
505
+ 45
506
+ 1
507
+ 59
508
+ 43
509
+ 3
510
+ 43
511
+ 23
512
+ 7
513
+ 55
514
+ 7
515
+ 33
516
+ 7
517
+ 30
518
+ 7
519
+ 35
520
+ 35
521
+ 3
522
+ 49
523
+ 29
524
+ 2
525
+ 15
526
+ 45
527
+ 1
528
+ 60
529
+ 43
530
+ 3
531
+ 43
532
+ 23
533
+ 7
534
+ 55
535
+ 7
536
+ 33
537
+ 7
538
+ 30
539
+ 7
540
+ 35
541
+ 7
542
+ 37
543
+ 35
544
+ 4
545
+ 49
546
+ 29
547
+ 2
548
+ 15
549
+ 99
550
+ 7
551
+ 61
552
+ 7
553
+ 62
554
+ 65
555
+ 67
556
+ 49
557
+ 20
558
+ 0
559
+ 49
560
+ 21
561
+ 4
562
+ 15
563
+ 5
564
+ 48
565
+ 63
566
+ 15
567
+ 99
568
+ 7
569
+ 64
570
+ 7
571
+ 65
572
+ 65
573
+ 67
574
+ 49
575
+ 20
576
+ 0
577
+ 49
578
+ 21
579
+ 4
580
+ 15
581
+ 99
582
+ 7
583
+ 66
584
+ 7
585
+ 67
586
+ 65
587
+ 67
588
+ 49
589
+ 20
590
+ 0
591
+ 49
592
+ 21
593
+ 4
594
+ 15
595
+ 99
596
+ 7
597
+ 68
598
+ 7
599
+ 69
600
+ 65
601
+ 67
602
+ 49
603
+ 20
604
+ 0
605
+ 49
606
+ 21
607
+ 4
608
+ 15
609
+ 99
610
+ 7
611
+ 70
612
+ 7
613
+ 71
614
+ 65
615
+ 67
616
+ 49
617
+ 20
618
+ 0
619
+ 49
620
+ 21
621
+ 4
622
+ 11
623
+ I
624
+ 7
625
+ I
626
+ 0
627
+ I
628
+ 0
629
+ I
630
+ 0
631
+ n
632
+ p
633
+ 72
634
+ x
635
+ 4
636
+ ZERO
637
+ x
638
+ 4
639
+ Sass
640
+ n
641
+ x
642
+ 6
643
+ Script
644
+ x
645
+ 6
646
+ Number
647
+ x
648
+ 3
649
+ new
650
+ x
651
+ 8
652
+ allocate
653
+ x
654
+ 10
655
+ initialize
656
+ x
657
+ 9
658
+ const_set
659
+ x
660
+ 15
661
+ VALID_SELECTORS
662
+ s
663
+ 5
664
+ hover
665
+ s
666
+ 6
667
+ active
668
+ s
669
+ 6
670
+ target
671
+ x
672
+ 14
673
+ VariableReader
674
+ x
675
+ 11
676
+ open_module
677
+ x
678
+ 15
679
+ __module_init__
680
+ M
681
+ 1
682
+ n
683
+ n
684
+ x
685
+ 14
686
+ VariableReader
687
+ i
688
+ 16
689
+ 5
690
+ 66
691
+ 99
692
+ 7
693
+ 0
694
+ 7
695
+ 1
696
+ 65
697
+ 67
698
+ 49
699
+ 2
700
+ 0
701
+ 49
702
+ 3
703
+ 4
704
+ 11
705
+ I
706
+ 5
707
+ I
708
+ 0
709
+ I
710
+ 0
711
+ I
712
+ 0
713
+ n
714
+ p
715
+ 4
716
+ x
717
+ 7
718
+ get_var
719
+ M
720
+ 1
721
+ n
722
+ n
723
+ x
724
+ 7
725
+ get_var
726
+ i
727
+ 35
728
+ 5
729
+ 20
730
+ 0
731
+ 49
732
+ 0
733
+ 0
734
+ 7
735
+ 1
736
+ 13
737
+ 70
738
+ 9
739
+ 24
740
+ 15
741
+ 44
742
+ 43
743
+ 2
744
+ 7
745
+ 3
746
+ 78
747
+ 49
748
+ 4
749
+ 2
750
+ 6
751
+ 1
752
+ 7
753
+ 5
754
+ 64
755
+ 49
756
+ 6
757
+ 2
758
+ 47
759
+ 49
760
+ 7
761
+ 1
762
+ 11
763
+ I
764
+ 6
765
+ I
766
+ 1
767
+ I
768
+ 1
769
+ I
770
+ 1
771
+ n
772
+ p
773
+ 8
774
+ x
775
+ 4
776
+ to_s
777
+ n
778
+ x
779
+ 6
780
+ Regexp
781
+ s
782
+ 1
783
+ -
784
+ x
785
+ 3
786
+ new
787
+ s
788
+ 1
789
+ _
790
+ x
791
+ 4
792
+ gsub
793
+ x
794
+ 2
795
+ []
796
+ p
797
+ 5
798
+ I
799
+ -1
800
+ I
801
+ 8
802
+ I
803
+ 0
804
+ I
805
+ 9
806
+ I
807
+ 23
808
+ x
809
+ 78
810
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
811
+ p
812
+ 1
813
+ x
814
+ 13
815
+ variable_name
816
+ x
817
+ 17
818
+ method_visibility
819
+ x
820
+ 15
821
+ add_defn_method
822
+ p
823
+ 3
824
+ I
825
+ 2
826
+ I
827
+ 8
828
+ I
829
+ 10
830
+ x
831
+ 78
832
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
833
+ p
834
+ 0
835
+ x
836
+ 13
837
+ attach_method
838
+ x
839
+ 10
840
+ sprite_map
841
+ M
842
+ 1
843
+ n
844
+ n
845
+ x
846
+ 10
847
+ sprite_map
848
+ i
849
+ 41
850
+ 23
851
+ 1
852
+ 10
853
+ 14
854
+ 44
855
+ 43
856
+ 0
857
+ 78
858
+ 49
859
+ 1
860
+ 1
861
+ 19
862
+ 1
863
+ 15
864
+ 20
865
+ 1
866
+ 45
867
+ 2
868
+ 3
869
+ 49
870
+ 4
871
+ 1
872
+ 15
873
+ 45
874
+ 5
875
+ 6
876
+ 43
877
+ 7
878
+ 43
879
+ 8
880
+ 43
881
+ 9
882
+ 20
883
+ 0
884
+ 5
885
+ 20
886
+ 1
887
+ 49
888
+ 10
889
+ 3
890
+ 11
891
+ I
892
+ 6
893
+ I
894
+ 2
895
+ I
896
+ 1
897
+ I
898
+ 2
899
+ n
900
+ p
901
+ 11
902
+ x
903
+ 4
904
+ Hash
905
+ x
906
+ 16
907
+ new_from_literal
908
+ x
909
+ 14
910
+ VariableReader
911
+ n
912
+ x
913
+ 6
914
+ extend
915
+ x
916
+ 7
917
+ Compass
918
+ n
919
+ x
920
+ 14
921
+ SassExtensions
922
+ x
923
+ 7
924
+ Sprites
925
+ x
926
+ 4
927
+ Base
928
+ x
929
+ 8
930
+ from_uri
931
+ p
932
+ 7
933
+ I
934
+ -1
935
+ I
936
+ 16
937
+ I
938
+ e
939
+ I
940
+ 17
941
+ I
942
+ 17
943
+ I
944
+ 18
945
+ I
946
+ 29
947
+ x
948
+ 78
949
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
950
+ p
951
+ 2
952
+ x
953
+ 4
954
+ glob
955
+ x
956
+ 6
957
+ kwargs
958
+ x
959
+ 17
960
+ method_visibility
961
+ x
962
+ 15
963
+ add_defn_method
964
+ n
965
+ x
966
+ 9
967
+ Functions
968
+ x
969
+ 4
970
+ glob
971
+ x
972
+ 4
973
+ Hash
974
+ x
975
+ 16
976
+ new_from_literal
977
+ x
978
+ 10
979
+ var_kwargs
980
+ x
981
+ 3
982
+ []=
983
+ x
984
+ 7
985
+ declare
986
+ x
987
+ 6
988
+ sprite
989
+ M
990
+ 1
991
+ n
992
+ n
993
+ x
994
+ 6
995
+ sprite
996
+ i
997
+ 140
998
+ 23
999
+ 2
1000
+ 10
1001
+ 10
1002
+ 45
1003
+ 0
1004
+ 1
1005
+ 19
1006
+ 2
1007
+ 15
1008
+ 23
1009
+ 3
1010
+ 10
1011
+ 20
1012
+ 45
1013
+ 0
1014
+ 2
1015
+ 19
1016
+ 3
1017
+ 15
1018
+ 5
1019
+ 20
1020
+ 0
1021
+ 47
1022
+ 49
1023
+ 3
1024
+ 1
1025
+ 15
1026
+ 20
1027
+ 1
1028
+ 45
1029
+ 4
1030
+ 5
1031
+ 43
1032
+ 6
1033
+ 43
1034
+ 7
1035
+ 49
1036
+ 8
1037
+ 1
1038
+ 9
1039
+ 45
1040
+ 1
1041
+ 8
1042
+ 58
1043
+ 5
1044
+ 45
1045
+ 4
1046
+ 9
1047
+ 43
1048
+ 10
1049
+ 7
1050
+ 11
1051
+ 64
1052
+ 47
1053
+ 49
1054
+ 12
1055
+ 2
1056
+ 15
1057
+ 5
1058
+ 20
1059
+ 0
1060
+ 47
1061
+ 49
1062
+ 13
1063
+ 1
1064
+ 19
1065
+ 4
1066
+ 15
1067
+ 5
1068
+ 20
1069
+ 0
1070
+ 20
1071
+ 1
1072
+ 20
1073
+ 2
1074
+ 20
1075
+ 3
1076
+ 47
1077
+ 49
1078
+ 14
1079
+ 4
1080
+ 19
1081
+ 5
1082
+ 15
1083
+ 45
1084
+ 4
1085
+ 15
1086
+ 43
1087
+ 6
1088
+ 43
1089
+ 16
1090
+ 13
1091
+ 71
1092
+ 17
1093
+ 47
1094
+ 9
1095
+ 123
1096
+ 47
1097
+ 49
1098
+ 18
1099
+ 0
1100
+ 13
1101
+ 20
1102
+ 4
1103
+ 35
1104
+ 1
1105
+ 20
1106
+ 5
1107
+ 49
1108
+ 19
1109
+ 0
1110
+ 81
1111
+ 20
1112
+ 7
1113
+ 21
1114
+ 47
1115
+ 49
1116
+ 22
1117
+ 2
1118
+ 15
1119
+ 8
1120
+ 139
1121
+ 20
1122
+ 4
1123
+ 35
1124
+ 1
1125
+ 20
1126
+ 5
1127
+ 49
1128
+ 19
1129
+ 0
1130
+ 81
1131
+ 20
1132
+ 7
1133
+ 21
1134
+ 49
1135
+ 17
1136
+ 2
1137
+ 11
1138
+ I
1139
+ b
1140
+ I
1141
+ 6
1142
+ I
1143
+ 2
1144
+ I
1145
+ 4
1146
+ n
1147
+ p
1148
+ 23
1149
+ x
1150
+ 4
1151
+ ZERO
1152
+ n
1153
+ n
1154
+ x
1155
+ 10
1156
+ verify_map
1157
+ x
1158
+ 4
1159
+ Sass
1160
+ n
1161
+ x
1162
+ 6
1163
+ Script
1164
+ x
1165
+ 6
1166
+ String
1167
+ x
1168
+ 5
1169
+ is_a?
1170
+ n
1171
+ x
1172
+ 11
1173
+ SyntaxError
1174
+ s
1175
+ 135
1176
+ The second argument to sprite() must be a sprite name. See http://beta.compass-style.org/help/tutorials/spriting/ for more information.
1177
+ x
1178
+ 5
1179
+ raise
1180
+ x
1181
+ 10
1182
+ sprite_url
1183
+ x
1184
+ 15
1185
+ sprite_position
1186
+ n
1187
+ x
1188
+ 4
1189
+ List
1190
+ x
1191
+ 3
1192
+ new
1193
+ x
1194
+ 8
1195
+ allocate
1196
+ x
1197
+ 5
1198
+ value
1199
+ x
1200
+ 1
1201
+ +
1202
+ x
1203
+ 5
1204
+ space
1205
+ x
1206
+ 10
1207
+ initialize
1208
+ p
1209
+ 15
1210
+ I
1211
+ -1
1212
+ I
1213
+ 24
1214
+ I
1215
+ 14
1216
+ I
1217
+ 25
1218
+ I
1219
+ 1c
1220
+ I
1221
+ 26
1222
+ I
1223
+ 2d
1224
+ I
1225
+ 27
1226
+ I
1227
+ 3b
1228
+ I
1229
+ 29
1230
+ I
1231
+ 45
1232
+ I
1233
+ 2a
1234
+ I
1235
+ 55
1236
+ I
1237
+ 2b
1238
+ I
1239
+ 8c
1240
+ x
1241
+ 78
1242
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1243
+ p
1244
+ 6
1245
+ x
1246
+ 3
1247
+ map
1248
+ x
1249
+ 6
1250
+ sprite
1251
+ x
1252
+ 8
1253
+ offset_x
1254
+ x
1255
+ 8
1256
+ offset_y
1257
+ x
1258
+ 3
1259
+ url
1260
+ x
1261
+ 8
1262
+ position
1263
+ n
1264
+ x
1265
+ 3
1266
+ map
1267
+ n
1268
+ x
1269
+ 8
1270
+ offset_x
1271
+ n
1272
+ x
1273
+ 8
1274
+ offset_y
1275
+ x
1276
+ 15
1277
+ sprite_map_name
1278
+ M
1279
+ 1
1280
+ n
1281
+ n
1282
+ x
1283
+ 15
1284
+ sprite_map_name
1285
+ i
1286
+ 50
1287
+ 5
1288
+ 20
1289
+ 0
1290
+ 7
1291
+ 0
1292
+ 64
1293
+ 47
1294
+ 49
1295
+ 1
1296
+ 2
1297
+ 15
1298
+ 45
1299
+ 2
1300
+ 3
1301
+ 43
1302
+ 4
1303
+ 43
1304
+ 5
1305
+ 13
1306
+ 71
1307
+ 6
1308
+ 47
1309
+ 9
1310
+ 41
1311
+ 47
1312
+ 49
1313
+ 7
1314
+ 0
1315
+ 13
1316
+ 20
1317
+ 0
1318
+ 49
1319
+ 8
1320
+ 0
1321
+ 47
1322
+ 49
1323
+ 9
1324
+ 1
1325
+ 15
1326
+ 8
1327
+ 49
1328
+ 20
1329
+ 0
1330
+ 49
1331
+ 8
1332
+ 0
1333
+ 49
1334
+ 6
1335
+ 1
1336
+ 11
1337
+ I
1338
+ 4
1339
+ I
1340
+ 1
1341
+ I
1342
+ 1
1343
+ I
1344
+ 1
1345
+ n
1346
+ p
1347
+ 10
1348
+ s
1349
+ 15
1350
+ sprite-map-name
1351
+ x
1352
+ 10
1353
+ verify_map
1354
+ x
1355
+ 4
1356
+ Sass
1357
+ n
1358
+ x
1359
+ 6
1360
+ Script
1361
+ x
1362
+ 6
1363
+ String
1364
+ x
1365
+ 3
1366
+ new
1367
+ x
1368
+ 8
1369
+ allocate
1370
+ x
1371
+ 4
1372
+ name
1373
+ x
1374
+ 10
1375
+ initialize
1376
+ p
1377
+ 7
1378
+ I
1379
+ -1
1380
+ I
1381
+ 33
1382
+ I
1383
+ 0
1384
+ I
1385
+ 34
1386
+ I
1387
+ b
1388
+ I
1389
+ 35
1390
+ I
1391
+ 32
1392
+ x
1393
+ 78
1394
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1395
+ p
1396
+ 1
1397
+ x
1398
+ 3
1399
+ map
1400
+ n
1401
+ x
1402
+ 11
1403
+ sprite_name
1404
+ x
1405
+ 11
1406
+ sprite_file
1407
+ M
1408
+ 1
1409
+ n
1410
+ n
1411
+ x
1412
+ 11
1413
+ sprite_file
1414
+ i
1415
+ 83
1416
+ 5
1417
+ 20
1418
+ 0
1419
+ 7
1420
+ 0
1421
+ 64
1422
+ 47
1423
+ 49
1424
+ 1
1425
+ 2
1426
+ 15
1427
+ 5
1428
+ 20
1429
+ 1
1430
+ 47
1431
+ 49
1432
+ 2
1433
+ 1
1434
+ 15
1435
+ 20
1436
+ 0
1437
+ 20
1438
+ 1
1439
+ 49
1440
+ 3
1441
+ 0
1442
+ 49
1443
+ 4
1444
+ 1
1445
+ 19
1446
+ 2
1447
+ 9
1448
+ 73
1449
+ 45
1450
+ 5
1451
+ 6
1452
+ 43
1453
+ 7
1454
+ 43
1455
+ 8
1456
+ 13
1457
+ 71
1458
+ 9
1459
+ 47
1460
+ 9
1461
+ 63
1462
+ 47
1463
+ 49
1464
+ 10
1465
+ 0
1466
+ 13
1467
+ 20
1468
+ 2
1469
+ 49
1470
+ 11
1471
+ 0
1472
+ 47
1473
+ 49
1474
+ 12
1475
+ 1
1476
+ 15
1477
+ 8
1478
+ 71
1479
+ 20
1480
+ 2
1481
+ 49
1482
+ 11
1483
+ 0
1484
+ 49
1485
+ 9
1486
+ 1
1487
+ 8
1488
+ 82
1489
+ 5
1490
+ 20
1491
+ 0
1492
+ 20
1493
+ 1
1494
+ 47
1495
+ 49
1496
+ 13
1497
+ 2
1498
+ 11
1499
+ I
1500
+ 6
1501
+ I
1502
+ 3
1503
+ I
1504
+ 2
1505
+ I
1506
+ 2
1507
+ n
1508
+ p
1509
+ 14
1510
+ s
1511
+ 6
1512
+ sprite
1513
+ x
1514
+ 10
1515
+ verify_map
1516
+ x
1517
+ 13
1518
+ verify_sprite
1519
+ x
1520
+ 5
1521
+ value
1522
+ x
1523
+ 9
1524
+ image_for
1525
+ x
1526
+ 4
1527
+ Sass
1528
+ n
1529
+ x
1530
+ 6
1531
+ Script
1532
+ x
1533
+ 6
1534
+ String
1535
+ x
1536
+ 3
1537
+ new
1538
+ x
1539
+ 8
1540
+ allocate
1541
+ x
1542
+ 13
1543
+ relative_file
1544
+ x
1545
+ 10
1546
+ initialize
1547
+ x
1548
+ 14
1549
+ missing_image!
1550
+ p
1551
+ 13
1552
+ I
1553
+ -1
1554
+ I
1555
+ 3a
1556
+ I
1557
+ 0
1558
+ I
1559
+ 3b
1560
+ I
1561
+ b
1562
+ I
1563
+ 3c
1564
+ I
1565
+ 13
1566
+ I
1567
+ 3d
1568
+ I
1569
+ 21
1570
+ I
1571
+ 3e
1572
+ I
1573
+ 49
1574
+ I
1575
+ 40
1576
+ I
1577
+ 53
1578
+ x
1579
+ 78
1580
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1581
+ p
1582
+ 3
1583
+ x
1584
+ 3
1585
+ map
1586
+ x
1587
+ 6
1588
+ sprite
1589
+ x
1590
+ 5
1591
+ image
1592
+ n
1593
+ x
1594
+ 27
1595
+ sprite_does_not_have_parent
1596
+ M
1597
+ 1
1598
+ n
1599
+ n
1600
+ x
1601
+ 27
1602
+ sprite_does_not_have_parent
1603
+ i
1604
+ 77
1605
+ 5
1606
+ 20
1607
+ 0
1608
+ 47
1609
+ 49
1610
+ 0
1611
+ 1
1612
+ 15
1613
+ 5
1614
+ 20
1615
+ 1
1616
+ 47
1617
+ 49
1618
+ 1
1619
+ 1
1620
+ 15
1621
+ 45
1622
+ 2
1623
+ 3
1624
+ 43
1625
+ 4
1626
+ 43
1627
+ 5
1628
+ 13
1629
+ 71
1630
+ 6
1631
+ 47
1632
+ 9
1633
+ 57
1634
+ 47
1635
+ 49
1636
+ 7
1637
+ 0
1638
+ 13
1639
+ 20
1640
+ 0
1641
+ 20
1642
+ 1
1643
+ 49
1644
+ 8
1645
+ 0
1646
+ 49
1647
+ 9
1648
+ 1
1649
+ 49
1650
+ 10
1651
+ 0
1652
+ 49
1653
+ 11
1654
+ 0
1655
+ 47
1656
+ 49
1657
+ 12
1658
+ 1
1659
+ 15
1660
+ 8
1661
+ 76
1662
+ 20
1663
+ 0
1664
+ 20
1665
+ 1
1666
+ 49
1667
+ 8
1668
+ 0
1669
+ 49
1670
+ 9
1671
+ 1
1672
+ 49
1673
+ 10
1674
+ 0
1675
+ 49
1676
+ 11
1677
+ 0
1678
+ 49
1679
+ 6
1680
+ 1
1681
+ 11
1682
+ I
1683
+ 6
1684
+ I
1685
+ 2
1686
+ I
1687
+ 2
1688
+ I
1689
+ 2
1690
+ n
1691
+ p
1692
+ 13
1693
+ x
1694
+ 10
1695
+ verify_map
1696
+ x
1697
+ 13
1698
+ verify_sprite
1699
+ x
1700
+ 4
1701
+ Sass
1702
+ n
1703
+ x
1704
+ 6
1705
+ Script
1706
+ x
1707
+ 4
1708
+ Bool
1709
+ x
1710
+ 3
1711
+ new
1712
+ x
1713
+ 8
1714
+ allocate
1715
+ x
1716
+ 5
1717
+ value
1718
+ x
1719
+ 9
1720
+ image_for
1721
+ x
1722
+ 6
1723
+ parent
1724
+ x
1725
+ 4
1726
+ nil?
1727
+ x
1728
+ 10
1729
+ initialize
1730
+ p
1731
+ 9
1732
+ I
1733
+ -1
1734
+ I
1735
+ 46
1736
+ I
1737
+ 0
1738
+ I
1739
+ 47
1740
+ I
1741
+ 8
1742
+ I
1743
+ 48
1744
+ I
1745
+ 10
1746
+ I
1747
+ 49
1748
+ I
1749
+ 4d
1750
+ x
1751
+ 78
1752
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1753
+ p
1754
+ 2
1755
+ x
1756
+ 3
1757
+ map
1758
+ x
1759
+ 6
1760
+ sprite
1761
+ n
1762
+ x
1763
+ 19
1764
+ sprite_has_selector
1765
+ M
1766
+ 1
1767
+ n
1768
+ n
1769
+ x
1770
+ 19
1771
+ sprite_has_selector
1772
+ i
1773
+ 138
1774
+ 5
1775
+ 20
1776
+ 0
1777
+ 47
1778
+ 49
1779
+ 0
1780
+ 1
1781
+ 15
1782
+ 5
1783
+ 20
1784
+ 1
1785
+ 47
1786
+ 49
1787
+ 1
1788
+ 1
1789
+ 15
1790
+ 45
1791
+ 2
1792
+ 3
1793
+ 20
1794
+ 2
1795
+ 49
1796
+ 4
1797
+ 0
1798
+ 49
1799
+ 5
1800
+ 1
1801
+ 9
1802
+ 32
1803
+ 1
1804
+ 8
1805
+ 58
1806
+ 5
1807
+ 45
1808
+ 6
1809
+ 7
1810
+ 43
1811
+ 8
1812
+ 7
1813
+ 9
1814
+ 45
1815
+ 2
1816
+ 10
1817
+ 7
1818
+ 11
1819
+ 64
1820
+ 49
1821
+ 12
1822
+ 1
1823
+ 47
1824
+ 101
1825
+ 13
1826
+ 63
1827
+ 2
1828
+ 47
1829
+ 49
1830
+ 14
1831
+ 2
1832
+ 15
1833
+ 45
1834
+ 6
1835
+ 15
1836
+ 43
1837
+ 16
1838
+ 43
1839
+ 17
1840
+ 13
1841
+ 71
1842
+ 18
1843
+ 47
1844
+ 9
1845
+ 109
1846
+ 47
1847
+ 49
1848
+ 19
1849
+ 0
1850
+ 13
1851
+ 20
1852
+ 0
1853
+ 7
1854
+ 20
1855
+ 20
1856
+ 2
1857
+ 49
1858
+ 4
1859
+ 0
1860
+ 47
1861
+ 101
1862
+ 13
1863
+ 7
1864
+ 21
1865
+ 63
1866
+ 3
1867
+ 47
1868
+ 49
1869
+ 22
1870
+ 0
1871
+ 20
1872
+ 1
1873
+ 49
1874
+ 23
1875
+ 2
1876
+ 47
1877
+ 49
1878
+ 24
1879
+ 1
1880
+ 15
1881
+ 8
1882
+ 137
1883
+ 20
1884
+ 0
1885
+ 7
1886
+ 20
1887
+ 20
1888
+ 2
1889
+ 49
1890
+ 4
1891
+ 0
1892
+ 47
1893
+ 101
1894
+ 13
1895
+ 7
1896
+ 21
1897
+ 63
1898
+ 3
1899
+ 47
1900
+ 49
1901
+ 22
1902
+ 0
1903
+ 20
1904
+ 1
1905
+ 49
1906
+ 23
1907
+ 2
1908
+ 49
1909
+ 18
1910
+ 1
1911
+ 11
1912
+ I
1913
+ 9
1914
+ I
1915
+ 3
1916
+ I
1917
+ 3
1918
+ I
1919
+ 3
1920
+ n
1921
+ p
1922
+ 25
1923
+ x
1924
+ 10
1925
+ verify_map
1926
+ x
1927
+ 13
1928
+ verify_sprite
1929
+ x
1930
+ 15
1931
+ VALID_SELECTORS
1932
+ n
1933
+ x
1934
+ 5
1935
+ value
1936
+ x
1937
+ 8
1938
+ include?
1939
+ x
1940
+ 4
1941
+ Sass
1942
+ n
1943
+ x
1944
+ 11
1945
+ SyntaxError
1946
+ s
1947
+ 37
1948
+ Invalid Selctor did you mean one of:
1949
+ n
1950
+ s
1951
+ 2
1952
+ ,
1953
+ x
1954
+ 4
1955
+ join
1956
+ x
1957
+ 4
1958
+ to_s
1959
+ x
1960
+ 5
1961
+ raise
1962
+ n
1963
+ x
1964
+ 6
1965
+ Script
1966
+ x
1967
+ 4
1968
+ Bool
1969
+ x
1970
+ 3
1971
+ new
1972
+ x
1973
+ 8
1974
+ allocate
1975
+ s
1976
+ 4
1977
+ has_
1978
+ s
1979
+ 1
1980
+ ?
1981
+ x
1982
+ 6
1983
+ to_sym
1984
+ x
1985
+ 4
1986
+ send
1987
+ x
1988
+ 10
1989
+ initialize
1990
+ p
1991
+ 13
1992
+ I
1993
+ -1
1994
+ I
1995
+ 4f
1996
+ I
1997
+ 0
1998
+ I
1999
+ 50
2000
+ I
2001
+ 8
2002
+ I
2003
+ 51
2004
+ I
2005
+ 10
2006
+ I
2007
+ 52
2008
+ I
2009
+ 20
2010
+ I
2011
+ 53
2012
+ I
2013
+ 3b
2014
+ I
2015
+ 55
2016
+ I
2017
+ 8a
2018
+ x
2019
+ 78
2020
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2021
+ p
2022
+ 3
2023
+ x
2024
+ 3
2025
+ map
2026
+ x
2027
+ 6
2028
+ sprite
2029
+ x
2030
+ 8
2031
+ selector
2032
+ n
2033
+ x
2034
+ 8
2035
+ selector
2036
+ x
2037
+ 10
2038
+ sprite_url
2039
+ M
2040
+ 1
2041
+ n
2042
+ n
2043
+ x
2044
+ 10
2045
+ sprite_url
2046
+ i
2047
+ 155
2048
+ 5
2049
+ 20
2050
+ 0
2051
+ 7
2052
+ 0
2053
+ 64
2054
+ 47
2055
+ 49
2056
+ 1
2057
+ 2
2058
+ 15
2059
+ 20
2060
+ 0
2061
+ 49
2062
+ 2
2063
+ 0
2064
+ 15
2065
+ 5
2066
+ 45
2067
+ 3
2068
+ 4
2069
+ 43
2070
+ 5
2071
+ 43
2072
+ 6
2073
+ 13
2074
+ 71
2075
+ 7
2076
+ 47
2077
+ 9
2078
+ 65
2079
+ 47
2080
+ 49
2081
+ 8
2082
+ 0
2083
+ 13
2084
+ 20
2085
+ 0
2086
+ 49
2087
+ 9
2088
+ 0
2089
+ 47
2090
+ 101
2091
+ 10
2092
+ 7
2093
+ 11
2094
+ 20
2095
+ 0
2096
+ 49
2097
+ 12
2098
+ 0
2099
+ 47
2100
+ 101
2101
+ 10
2102
+ 7
2103
+ 13
2104
+ 63
2105
+ 4
2106
+ 47
2107
+ 49
2108
+ 14
2109
+ 1
2110
+ 15
2111
+ 8
2112
+ 90
2113
+ 20
2114
+ 0
2115
+ 49
2116
+ 9
2117
+ 0
2118
+ 47
2119
+ 101
2120
+ 10
2121
+ 7
2122
+ 11
2123
+ 20
2124
+ 0
2125
+ 49
2126
+ 12
2127
+ 0
2128
+ 47
2129
+ 101
2130
+ 10
2131
+ 7
2132
+ 13
2133
+ 63
2134
+ 4
2135
+ 49
2136
+ 7
2137
+ 1
2138
+ 45
2139
+ 3
2140
+ 15
2141
+ 43
2142
+ 5
2143
+ 43
2144
+ 16
2145
+ 13
2146
+ 71
2147
+ 7
2148
+ 47
2149
+ 9
2150
+ 116
2151
+ 47
2152
+ 49
2153
+ 8
2154
+ 0
2155
+ 13
2156
+ 3
2157
+ 47
2158
+ 49
2159
+ 14
2160
+ 1
2161
+ 15
2162
+ 8
2163
+ 120
2164
+ 3
2165
+ 49
2166
+ 7
2167
+ 1
2168
+ 45
2169
+ 3
2170
+ 17
2171
+ 43
2172
+ 5
2173
+ 43
2174
+ 16
2175
+ 13
2176
+ 71
2177
+ 7
2178
+ 47
2179
+ 9
2180
+ 146
2181
+ 47
2182
+ 49
2183
+ 8
2184
+ 0
2185
+ 13
2186
+ 3
2187
+ 47
2188
+ 49
2189
+ 14
2190
+ 1
2191
+ 15
2192
+ 8
2193
+ 150
2194
+ 3
2195
+ 49
2196
+ 7
2197
+ 1
2198
+ 47
2199
+ 49
2200
+ 18
2201
+ 3
2202
+ 11
2203
+ I
2204
+ 8
2205
+ I
2206
+ 1
2207
+ I
2208
+ 1
2209
+ I
2210
+ 1
2211
+ n
2212
+ p
2213
+ 19
2214
+ s
2215
+ 10
2216
+ sprite-url
2217
+ x
2218
+ 10
2219
+ verify_map
2220
+ x
2221
+ 8
2222
+ generate
2223
+ x
2224
+ 4
2225
+ Sass
2226
+ n
2227
+ x
2228
+ 6
2229
+ Script
2230
+ x
2231
+ 6
2232
+ String
2233
+ x
2234
+ 3
2235
+ new
2236
+ x
2237
+ 8
2238
+ allocate
2239
+ x
2240
+ 4
2241
+ path
2242
+ x
2243
+ 4
2244
+ to_s
2245
+ s
2246
+ 1
2247
+ -
2248
+ x
2249
+ 15
2250
+ uniqueness_hash
2251
+ s
2252
+ 4
2253
+ .png
2254
+ x
2255
+ 10
2256
+ initialize
2257
+ n
2258
+ x
2259
+ 4
2260
+ Bool
2261
+ n
2262
+ x
2263
+ 9
2264
+ image_url
2265
+ p
2266
+ 15
2267
+ I
2268
+ -1
2269
+ I
2270
+ 5c
2271
+ I
2272
+ 0
2273
+ I
2274
+ 5d
2275
+ I
2276
+ b
2277
+ I
2278
+ 5e
2279
+ I
2280
+ 11
2281
+ I
2282
+ 5f
2283
+ I
2284
+ 5a
2285
+ I
2286
+ 60
2287
+ I
2288
+ 78
2289
+ I
2290
+ 61
2291
+ I
2292
+ 96
2293
+ I
2294
+ 5f
2295
+ I
2296
+ 9b
2297
+ x
2298
+ 78
2299
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2300
+ p
2301
+ 1
2302
+ x
2303
+ 3
2304
+ map
2305
+ n
2306
+ x
2307
+ 15
2308
+ sprite_position
2309
+ M
2310
+ 1
2311
+ n
2312
+ n
2313
+ x
2314
+ 15
2315
+ sprite_position
2316
+ i
2317
+ 333
2318
+ 23
2319
+ 1
2320
+ 10
2321
+ 8
2322
+ 1
2323
+ 19
2324
+ 1
2325
+ 15
2326
+ 23
2327
+ 2
2328
+ 10
2329
+ 18
2330
+ 45
2331
+ 0
2332
+ 1
2333
+ 19
2334
+ 2
2335
+ 15
2336
+ 23
2337
+ 3
2338
+ 10
2339
+ 28
2340
+ 45
2341
+ 0
2342
+ 2
2343
+ 19
2344
+ 3
2345
+ 15
2346
+ 5
2347
+ 20
2348
+ 0
2349
+ 7
2350
+ 3
2351
+ 64
2352
+ 47
2353
+ 49
2354
+ 4
2355
+ 2
2356
+ 15
2357
+ 20
2358
+ 1
2359
+ 13
2360
+ 9
2361
+ 57
2362
+ 15
2363
+ 20
2364
+ 1
2365
+ 45
2366
+ 5
2367
+ 6
2368
+ 43
2369
+ 7
2370
+ 43
2371
+ 8
2372
+ 49
2373
+ 9
2374
+ 1
2375
+ 9
2376
+ 62
2377
+ 1
2378
+ 8
2379
+ 75
2380
+ 5
2381
+ 45
2382
+ 5
2383
+ 10
2384
+ 43
2385
+ 11
2386
+ 7
2387
+ 12
2388
+ 64
2389
+ 47
2390
+ 49
2391
+ 13
2392
+ 2
2393
+ 15
2394
+ 20
2395
+ 0
2396
+ 20
2397
+ 1
2398
+ 49
2399
+ 14
2400
+ 0
2401
+ 49
2402
+ 15
2403
+ 1
2404
+ 19
2405
+ 4
2406
+ 15
2407
+ 20
2408
+ 4
2409
+ 9
2410
+ 96
2411
+ 1
2412
+ 8
2413
+ 105
2414
+ 5
2415
+ 20
2416
+ 0
2417
+ 20
2418
+ 1
2419
+ 47
2420
+ 49
2421
+ 16
2422
+ 2
2423
+ 15
2424
+ 20
2425
+ 2
2426
+ 49
2427
+ 17
2428
+ 0
2429
+ 7
2430
+ 18
2431
+ 64
2432
+ 83
2433
+ 19
2434
+ 9
2435
+ 124
2436
+ 20
2437
+ 2
2438
+ 19
2439
+ 5
2440
+ 8
2441
+ 205
2442
+ 20
2443
+ 2
2444
+ 49
2445
+ 14
2446
+ 0
2447
+ 20
2448
+ 4
2449
+ 49
2450
+ 20
2451
+ 0
2452
+ 82
2453
+ 21
2454
+ 19
2455
+ 5
2456
+ 15
2457
+ 45
2458
+ 5
2459
+ 22
2460
+ 43
2461
+ 7
2462
+ 43
2463
+ 23
2464
+ 13
2465
+ 71
2466
+ 24
2467
+ 47
2468
+ 9
2469
+ 182
2470
+ 47
2471
+ 49
2472
+ 25
2473
+ 0
2474
+ 13
2475
+ 20
2476
+ 5
2477
+ 20
2478
+ 5
2479
+ 78
2480
+ 83
2481
+ 19
2482
+ 9
2483
+ 170
2484
+ 35
2485
+ 0
2486
+ 8
2487
+ 175
2488
+ 7
2489
+ 26
2490
+ 64
2491
+ 35
2492
+ 1
2493
+ 47
2494
+ 49
2495
+ 27
2496
+ 2
2497
+ 15
2498
+ 8
2499
+ 203
2500
+ 20
2501
+ 5
2502
+ 20
2503
+ 5
2504
+ 78
2505
+ 83
2506
+ 19
2507
+ 9
2508
+ 195
2509
+ 35
2510
+ 0
2511
+ 8
2512
+ 200
2513
+ 7
2514
+ 26
2515
+ 64
2516
+ 35
2517
+ 1
2518
+ 49
2519
+ 24
2520
+ 2
2521
+ 19
2522
+ 5
2523
+ 15
2524
+ 20
2525
+ 3
2526
+ 49
2527
+ 14
2528
+ 0
2529
+ 20
2530
+ 4
2531
+ 49
2532
+ 28
2533
+ 0
2534
+ 82
2535
+ 21
2536
+ 19
2537
+ 6
2538
+ 15
2539
+ 45
2540
+ 5
2541
+ 29
2542
+ 43
2543
+ 7
2544
+ 43
2545
+ 23
2546
+ 13
2547
+ 71
2548
+ 24
2549
+ 47
2550
+ 9
2551
+ 264
2552
+ 47
2553
+ 49
2554
+ 25
2555
+ 0
2556
+ 13
2557
+ 20
2558
+ 6
2559
+ 20
2560
+ 6
2561
+ 78
2562
+ 83
2563
+ 19
2564
+ 9
2565
+ 252
2566
+ 35
2567
+ 0
2568
+ 8
2569
+ 257
2570
+ 7
2571
+ 26
2572
+ 64
2573
+ 35
2574
+ 1
2575
+ 47
2576
+ 49
2577
+ 27
2578
+ 2
2579
+ 15
2580
+ 8
2581
+ 285
2582
+ 20
2583
+ 6
2584
+ 20
2585
+ 6
2586
+ 78
2587
+ 83
2588
+ 19
2589
+ 9
2590
+ 277
2591
+ 35
2592
+ 0
2593
+ 8
2594
+ 282
2595
+ 7
2596
+ 26
2597
+ 64
2598
+ 35
2599
+ 1
2600
+ 49
2601
+ 24
2602
+ 2
2603
+ 19
2604
+ 6
2605
+ 15
2606
+ 45
2607
+ 5
2608
+ 30
2609
+ 43
2610
+ 7
2611
+ 43
2612
+ 31
2613
+ 13
2614
+ 71
2615
+ 24
2616
+ 47
2617
+ 9
2618
+ 321
2619
+ 47
2620
+ 49
2621
+ 25
2622
+ 0
2623
+ 13
2624
+ 20
2625
+ 5
2626
+ 20
2627
+ 6
2628
+ 35
2629
+ 2
2630
+ 7
2631
+ 32
2632
+ 47
2633
+ 49
2634
+ 27
2635
+ 2
2636
+ 15
2637
+ 8
2638
+ 332
2639
+ 20
2640
+ 5
2641
+ 20
2642
+ 6
2643
+ 35
2644
+ 2
2645
+ 7
2646
+ 32
2647
+ 49
2648
+ 24
2649
+ 2
2650
+ 11
2651
+ I
2652
+ c
2653
+ I
2654
+ 7
2655
+ I
2656
+ 1
2657
+ I
2658
+ 4
2659
+ n
2660
+ p
2661
+ 33
2662
+ x
2663
+ 4
2664
+ ZERO
2665
+ n
2666
+ n
2667
+ s
2668
+ 15
2669
+ sprite-position
2670
+ x
2671
+ 10
2672
+ verify_map
2673
+ x
2674
+ 4
2675
+ Sass
2676
+ n
2677
+ x
2678
+ 6
2679
+ Script
2680
+ x
2681
+ 6
2682
+ String
2683
+ x
2684
+ 5
2685
+ is_a?
2686
+ n
2687
+ x
2688
+ 11
2689
+ SyntaxError
2690
+ s
2691
+ 142
2692
+ The second argument to sprite-position must be a sprite name. See http://beta.compass-style.org/help/tutorials/spriting/ for more information.
2693
+ x
2694
+ 5
2695
+ raise
2696
+ x
2697
+ 5
2698
+ value
2699
+ x
2700
+ 9
2701
+ image_for
2702
+ x
2703
+ 14
2704
+ missing_image!
2705
+ x
2706
+ 8
2707
+ unit_str
2708
+ s
2709
+ 1
2710
+ %
2711
+ x
2712
+ 2
2713
+ ==
2714
+ x
2715
+ 4
2716
+ left
2717
+ x
2718
+ 1
2719
+ -
2720
+ n
2721
+ x
2722
+ 6
2723
+ Number
2724
+ x
2725
+ 3
2726
+ new
2727
+ x
2728
+ 8
2729
+ allocate
2730
+ s
2731
+ 2
2732
+ px
2733
+ x
2734
+ 10
2735
+ initialize
2736
+ x
2737
+ 3
2738
+ top
2739
+ n
2740
+ n
2741
+ x
2742
+ 4
2743
+ List
2744
+ x
2745
+ 5
2746
+ space
2747
+ p
2748
+ 29
2749
+ I
2750
+ -1
2751
+ I
2752
+ 78
2753
+ I
2754
+ 1c
2755
+ I
2756
+ 79
2757
+ I
2758
+ 27
2759
+ I
2760
+ 7a
2761
+ I
2762
+ 3e
2763
+ I
2764
+ 7b
2765
+ I
2766
+ 4c
2767
+ I
2768
+ 7d
2769
+ I
2770
+ 59
2771
+ I
2772
+ 7e
2773
+ I
2774
+ 60
2775
+ I
2776
+ 7f
2777
+ I
2778
+ 6a
2779
+ I
2780
+ 81
2781
+ I
2782
+ 76
2783
+ I
2784
+ 82
2785
+ I
2786
+ 7c
2787
+ I
2788
+ 84
2789
+ I
2790
+ 8b
2791
+ I
2792
+ 85
2793
+ I
2794
+ ce
2795
+ I
2796
+ 87
2797
+ I
2798
+ dd
2799
+ I
2800
+ 88
2801
+ I
2802
+ 120
2803
+ I
2804
+ 89
2805
+ I
2806
+ 14d
2807
+ x
2808
+ 78
2809
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2810
+ p
2811
+ 7
2812
+ x
2813
+ 3
2814
+ map
2815
+ x
2816
+ 6
2817
+ sprite
2818
+ x
2819
+ 8
2820
+ offset_x
2821
+ x
2822
+ 8
2823
+ offset_y
2824
+ x
2825
+ 5
2826
+ image
2827
+ x
2828
+ 1
2829
+ x
2830
+ x
2831
+ 1
2832
+ y
2833
+ n
2834
+ n
2835
+ n
2836
+ n
2837
+ x
2838
+ 12
2839
+ sprite_image
2840
+ M
2841
+ 1
2842
+ n
2843
+ n
2844
+ x
2845
+ 12
2846
+ sprite_image
2847
+ i
2848
+ 14
2849
+ 5
2850
+ 45
2851
+ 0
2852
+ 1
2853
+ 43
2854
+ 2
2855
+ 7
2856
+ 3
2857
+ 64
2858
+ 47
2859
+ 49
2860
+ 4
2861
+ 2
2862
+ 11
2863
+ I
2864
+ 4
2865
+ I
2866
+ 1
2867
+ I
2868
+ 0
2869
+ I
2870
+ 0
2871
+ I
2872
+ 0
2873
+ p
2874
+ 5
2875
+ x
2876
+ 4
2877
+ Sass
2878
+ n
2879
+ x
2880
+ 11
2881
+ SyntaxError
2882
+ s
2883
+ 139
2884
+ The sprite-image() function has been replaced by sprite(). See http://beta.compass-style.org/help/tutorials/spriting/ for more information.
2885
+ x
2886
+ 5
2887
+ raise
2888
+ p
2889
+ 5
2890
+ I
2891
+ -1
2892
+ I
2893
+ 90
2894
+ I
2895
+ 0
2896
+ I
2897
+ 91
2898
+ I
2899
+ e
2900
+ x
2901
+ 78
2902
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2903
+ p
2904
+ 1
2905
+ x
2906
+ 4
2907
+ args
2908
+ x
2909
+ 9
2910
+ protected
2911
+ x
2912
+ 10
2913
+ verify_map
2914
+ M
2915
+ 1
2916
+ n
2917
+ n
2918
+ x
2919
+ 10
2920
+ verify_map
2921
+ i
2922
+ 37
2923
+ 23
2924
+ 1
2925
+ 10
2926
+ 10
2927
+ 7
2928
+ 0
2929
+ 64
2930
+ 19
2931
+ 1
2932
+ 15
2933
+ 20
2934
+ 0
2935
+ 45
2936
+ 1
2937
+ 2
2938
+ 43
2939
+ 3
2940
+ 43
2941
+ 4
2942
+ 43
2943
+ 5
2944
+ 49
2945
+ 6
2946
+ 1
2947
+ 9
2948
+ 29
2949
+ 1
2950
+ 8
2951
+ 36
2952
+ 5
2953
+ 20
2954
+ 1
2955
+ 47
2956
+ 49
2957
+ 7
2958
+ 1
2959
+ 11
2960
+ I
2961
+ 4
2962
+ I
2963
+ 2
2964
+ I
2965
+ 1
2966
+ I
2967
+ 2
2968
+ n
2969
+ p
2970
+ 8
2971
+ s
2972
+ 6
2973
+ sprite
2974
+ x
2975
+ 7
2976
+ Compass
2977
+ n
2978
+ x
2979
+ 14
2980
+ SassExtensions
2981
+ x
2982
+ 7
2983
+ Sprites
2984
+ x
2985
+ 4
2986
+ Base
2987
+ x
2988
+ 5
2989
+ is_a?
2990
+ x
2991
+ 15
2992
+ missing_sprite!
2993
+ p
2994
+ 7
2995
+ I
2996
+ -1
2997
+ I
2998
+ 96
2999
+ I
3000
+ a
3001
+ I
3002
+ 97
3003
+ I
3004
+ 1d
3005
+ I
3006
+ 98
3007
+ I
3008
+ 25
3009
+ x
3010
+ 78
3011
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3012
+ p
3013
+ 2
3014
+ x
3015
+ 3
3016
+ map
3017
+ x
3018
+ 5
3019
+ error
3020
+ x
3021
+ 13
3022
+ verify_sprite
3023
+ M
3024
+ 1
3025
+ n
3026
+ n
3027
+ x
3028
+ 13
3029
+ verify_sprite
3030
+ i
3031
+ 31
3032
+ 20
3033
+ 0
3034
+ 45
3035
+ 0
3036
+ 1
3037
+ 43
3038
+ 2
3039
+ 43
3040
+ 3
3041
+ 49
3042
+ 4
3043
+ 1
3044
+ 9
3045
+ 17
3046
+ 1
3047
+ 8
3048
+ 30
3049
+ 5
3050
+ 45
3051
+ 0
3052
+ 5
3053
+ 43
3054
+ 6
3055
+ 7
3056
+ 7
3057
+ 64
3058
+ 47
3059
+ 49
3060
+ 8
3061
+ 2
3062
+ 11
3063
+ I
3064
+ 4
3065
+ I
3066
+ 1
3067
+ I
3068
+ 1
3069
+ I
3070
+ 1
3071
+ n
3072
+ p
3073
+ 9
3074
+ x
3075
+ 4
3076
+ Sass
3077
+ n
3078
+ x
3079
+ 6
3080
+ Script
3081
+ x
3082
+ 6
3083
+ String
3084
+ x
3085
+ 5
3086
+ is_a?
3087
+ n
3088
+ x
3089
+ 11
3090
+ SyntaxError
3091
+ s
3092
+ 135
3093
+ The second argument to sprite() must be a sprite name. See http://beta.compass-style.org/help/tutorials/spriting/ for more information.
3094
+ x
3095
+ 5
3096
+ raise
3097
+ p
3098
+ 7
3099
+ I
3100
+ -1
3101
+ I
3102
+ 9c
3103
+ I
3104
+ 0
3105
+ I
3106
+ 9d
3107
+ I
3108
+ 11
3109
+ I
3110
+ 9e
3111
+ I
3112
+ 1f
3113
+ x
3114
+ 78
3115
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3116
+ p
3117
+ 1
3118
+ x
3119
+ 6
3120
+ sprite
3121
+ x
3122
+ 14
3123
+ missing_image!
3124
+ M
3125
+ 1
3126
+ n
3127
+ n
3128
+ x
3129
+ 14
3130
+ missing_image!
3131
+ i
3132
+ 56
3133
+ 5
3134
+ 45
3135
+ 0
3136
+ 1
3137
+ 43
3138
+ 2
3139
+ 7
3140
+ 3
3141
+ 20
3142
+ 1
3143
+ 47
3144
+ 101
3145
+ 4
3146
+ 7
3147
+ 5
3148
+ 20
3149
+ 0
3150
+ 49
3151
+ 6
3152
+ 0
3153
+ 47
3154
+ 101
3155
+ 4
3156
+ 7
3157
+ 7
3158
+ 20
3159
+ 0
3160
+ 49
3161
+ 8
3162
+ 0
3163
+ 47
3164
+ 101
3165
+ 4
3166
+ 7
3167
+ 9
3168
+ 20
3169
+ 0
3170
+ 49
3171
+ 10
3172
+ 0
3173
+ 7
3174
+ 11
3175
+ 64
3176
+ 49
3177
+ 12
3178
+ 1
3179
+ 47
3180
+ 101
3181
+ 4
3182
+ 63
3183
+ 8
3184
+ 47
3185
+ 49
3186
+ 13
3187
+ 2
3188
+ 11
3189
+ I
3190
+ d
3191
+ I
3192
+ 2
3193
+ I
3194
+ 2
3195
+ I
3196
+ 2
3197
+ n
3198
+ p
3199
+ 14
3200
+ x
3201
+ 4
3202
+ Sass
3203
+ n
3204
+ x
3205
+ 11
3206
+ SyntaxError
3207
+ s
3208
+ 17
3209
+ No sprite called
3210
+ x
3211
+ 4
3212
+ to_s
3213
+ s
3214
+ 21
3215
+ found in sprite map
3216
+ x
3217
+ 4
3218
+ path
3219
+ s
3220
+ 1
3221
+ /
3222
+ x
3223
+ 4
3224
+ name
3225
+ s
3226
+ 23
3227
+ . Did you mean one of:
3228
+ x
3229
+ 12
3230
+ sprite_names
3231
+ s
3232
+ 2
3233
+ ,
3234
+ x
3235
+ 4
3236
+ join
3237
+ x
3238
+ 5
3239
+ raise
3240
+ p
3241
+ 5
3242
+ I
3243
+ -1
3244
+ I
3245
+ a2
3246
+ I
3247
+ 0
3248
+ I
3249
+ a3
3250
+ I
3251
+ 38
3252
+ x
3253
+ 78
3254
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3255
+ p
3256
+ 2
3257
+ x
3258
+ 3
3259
+ map
3260
+ x
3261
+ 6
3262
+ sprite
3263
+ x
3264
+ 15
3265
+ missing_sprite!
3266
+ M
3267
+ 1
3268
+ n
3269
+ n
3270
+ x
3271
+ 15
3272
+ missing_sprite!
3273
+ i
3274
+ 22
3275
+ 5
3276
+ 45
3277
+ 0
3278
+ 1
3279
+ 43
3280
+ 2
3281
+ 7
3282
+ 3
3283
+ 20
3284
+ 0
3285
+ 47
3286
+ 101
3287
+ 4
3288
+ 7
3289
+ 5
3290
+ 63
3291
+ 3
3292
+ 47
3293
+ 49
3294
+ 6
3295
+ 2
3296
+ 11
3297
+ I
3298
+ 6
3299
+ I
3300
+ 1
3301
+ I
3302
+ 1
3303
+ I
3304
+ 1
3305
+ n
3306
+ p
3307
+ 7
3308
+ x
3309
+ 4
3310
+ Sass
3311
+ n
3312
+ x
3313
+ 11
3314
+ SyntaxError
3315
+ s
3316
+ 22
3317
+ The first argument to
3318
+ x
3319
+ 4
3320
+ to_s
3321
+ s
3322
+ 105
3323
+ () must be a sprite map. See http://beta.compass-style.org/help/tutorials/spriting/ for more information.
3324
+ x
3325
+ 5
3326
+ raise
3327
+ p
3328
+ 5
3329
+ I
3330
+ -1
3331
+ I
3332
+ a6
3333
+ I
3334
+ 0
3335
+ I
3336
+ a7
3337
+ I
3338
+ 16
3339
+ x
3340
+ 78
3341
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3342
+ p
3343
+ 1
3344
+ x
3345
+ 13
3346
+ function_name
3347
+ p
3348
+ 61
3349
+ I
3350
+ 2
3351
+ I
3352
+ 2
3353
+ I
3354
+ 27
3355
+ I
3356
+ 3
3357
+ I
3358
+ 39
3359
+ I
3360
+ 7
3361
+ I
3362
+ 53
3363
+ I
3364
+ 16
3365
+ I
3366
+ 61
3367
+ I
3368
+ 1a
3369
+ I
3370
+ 81
3371
+ I
3372
+ 24
3373
+ I
3374
+ 8f
3375
+ I
3376
+ 2d
3377
+ I
3378
+ a2
3379
+ I
3380
+ 2e
3381
+ I
3382
+ b7
3383
+ I
3384
+ 2f
3385
+ I
3386
+ ce
3387
+ I
3388
+ 33
3389
+ I
3390
+ dc
3391
+ I
3392
+ 37
3393
+ I
3394
+ ed
3395
+ I
3396
+ 3a
3397
+ I
3398
+ fb
3399
+ I
3400
+ 43
3401
+ I
3402
+ 10e
3403
+ I
3404
+ 46
3405
+ I
3406
+ 11c
3407
+ I
3408
+ 4c
3409
+ I
3410
+ 12f
3411
+ I
3412
+ 4f
3413
+ I
3414
+ 13d
3415
+ I
3416
+ 58
3417
+ I
3418
+ 152
3419
+ I
3420
+ 5c
3421
+ I
3422
+ 160
3423
+ I
3424
+ 63
3425
+ I
3426
+ 171
3427
+ I
3428
+ 78
3429
+ I
3430
+ 17f
3431
+ I
3432
+ 8b
3433
+ I
3434
+ 190
3435
+ I
3436
+ 8c
3437
+ I
3438
+ 1a3
3439
+ I
3440
+ 8d
3441
+ I
3442
+ 1b8
3443
+ I
3444
+ 8e
3445
+ I
3446
+ 1cf
3447
+ I
3448
+ 90
3449
+ I
3450
+ 1dd
3451
+ I
3452
+ 94
3453
+ I
3454
+ 1e1
3455
+ I
3456
+ 96
3457
+ I
3458
+ 1ef
3459
+ I
3460
+ 9c
3461
+ I
3462
+ 1fd
3463
+ I
3464
+ a2
3465
+ I
3466
+ 20b
3467
+ I
3468
+ a6
3469
+ I
3470
+ 219
3471
+ x
3472
+ 78
3473
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3474
+ p
3475
+ 0
3476
+ x
3477
+ 13
3478
+ attach_method
3479
+ p
3480
+ 3
3481
+ I
3482
+ 0
3483
+ I
3484
+ 1
3485
+ I
3486
+ 22
3487
+ x
3488
+ 78
3489
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3490
+ p
3491
+ 0