compass 0.11.5 → 0.11.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/compass +5 -1
  3. data/bin/compass.compiled.rbc +707 -0
  4. data/examples/compass/compass_app_log.txt +6 -0
  5. data/features/command_line.feature +16 -16
  6. data/features/extensions.feature +6 -0
  7. data/features/step_definitions/command_line_steps.rb +2 -0
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  10. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  12. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  13. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  14. data/lib/compass.rbc +42 -36
  15. data/lib/compass/actions.rbc +244 -85
  16. data/lib/compass/app_integration.rbc +28 -20
  17. data/lib/compass/app_integration/merb.rbc +8 -4
  18. data/lib/compass/app_integration/rails.rbc +664 -148
  19. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  20. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  21. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  22. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  23. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  24. data/lib/compass/browser_support.rbc +35 -23
  25. data/lib/compass/commands.rbc +307 -0
  26. data/lib/compass/commands/base.rbc +1044 -0
  27. data/lib/compass/commands/clean_project.rbc +1856 -0
  28. data/lib/compass/commands/create_project.rbc +2691 -0
  29. data/lib/compass/commands/default.rbc +1677 -0
  30. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  31. data/lib/compass/commands/help.rbc +1921 -0
  32. data/lib/compass/commands/imports.rbc +969 -0
  33. data/lib/compass/commands/installer_command.rbc +807 -0
  34. data/lib/compass/commands/interactive.rbc +1341 -0
  35. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  36. data/lib/compass/commands/print_version.rbc +2478 -0
  37. data/lib/compass/commands/project_base.rbc +2085 -0
  38. data/lib/compass/commands/project_stats.rb +7 -7
  39. data/lib/compass/commands/project_stats.rbc +4202 -0
  40. data/lib/compass/commands/registry.rbc +1350 -0
  41. data/lib/compass/commands/sprite.rbc +2212 -0
  42. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  43. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  44. data/lib/compass/commands/update_project.rbc +3002 -0
  45. data/lib/compass/commands/validate_project.rbc +1686 -0
  46. data/lib/compass/commands/watch_project.rbc +4155 -0
  47. data/lib/compass/commands/write_configuration.rbc +2896 -0
  48. data/lib/compass/compiler.rbc +591 -398
  49. data/lib/compass/configuration.rbc +134 -78
  50. data/lib/compass/configuration/adapters.rbc +98 -40
  51. data/lib/compass/configuration/comments.rbc +132 -51
  52. data/lib/compass/configuration/data.rbc +541 -551
  53. data/lib/compass/configuration/defaults.rbc +764 -189
  54. data/lib/compass/configuration/file_data.rbc +37 -125
  55. data/lib/compass/configuration/helpers.rb +7 -2
  56. data/lib/compass/configuration/helpers.rbc +433 -153
  57. data/lib/compass/configuration/inheritance.rbc +412 -165
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rbc +151 -84
  60. data/lib/compass/dependencies.rbc +16 -4
  61. data/lib/compass/errors.rbc +5 -5
  62. data/lib/compass/exec.rbc +500 -0
  63. data/lib/compass/exec/command_option_parser.rbc +676 -0
  64. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  65. data/lib/compass/exec/helpers.rbc +758 -0
  66. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  67. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  68. data/lib/compass/frameworks.rb +10 -4
  69. data/lib/compass/frameworks.rbc +118 -66
  70. data/lib/compass/grid_builder.rbc +0 -0
  71. data/lib/compass/installers.rbc +152 -0
  72. data/lib/compass/installers/bare_installer.rbc +939 -0
  73. data/lib/compass/installers/base.rbc +4427 -0
  74. data/lib/compass/installers/manifest.rbc +3335 -0
  75. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  76. data/lib/compass/installers/template_context.rbc +1030 -0
  77. data/lib/compass/logger.rbc +2317 -0
  78. data/lib/compass/quick_cache.rbc +12 -8
  79. data/lib/compass/sass_extensions.rbc +8 -4
  80. data/lib/compass/sass_extensions/functions.rbc +90 -57
  81. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  82. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  83. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  84. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  85. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  86. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  87. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  88. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  89. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  90. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  91. data/lib/compass/sass_extensions/functions/lists.rb +5 -0
  92. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  93. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  94. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  95. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  96. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  97. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  98. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  99. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  100. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  101. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  102. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  103. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  104. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  105. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  106. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  107. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  108. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  109. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +1 -1
  110. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  111. data/lib/compass/sprite_importer.rbc +1125 -1495
  112. data/lib/compass/util.rbc +19 -11
  113. data/lib/compass/version.rbc +53 -25
  114. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  115. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  116. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  117. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  118. data/test/fixtures/stylesheets/compass/css/user-interface.css +5 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  120. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  121. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  122. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  123. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  124. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  125. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  126. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  127. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  128. data/test/helpers/command_line.rbc +2820 -0
  129. data/test/helpers/diff.rbc +1104 -0
  130. data/test/helpers/io.rbc +962 -0
  131. data/test/helpers/rails.rbc +1116 -0
  132. data/test/helpers/test_case.rbc +1255 -0
  133. data/test/integrations/compass_test.rbc +6589 -0
  134. data/test/integrations/rails_integration_test.rbc +1342 -0
  135. data/test/integrations/sprites_test.rbc +6192 -0
  136. data/test/test_helper.rbc +1694 -0
  137. data/test/units/actions_test.rbc +644 -0
  138. data/test/units/command_line_test.rbc +1532 -0
  139. data/test/units/compass_png_test.rbc +0 -0
  140. data/test/units/configuration_test.rbc +3833 -0
  141. data/test/units/rails_configuration_test.rbc +1032 -0
  142. data/test/units/sass_extensions_test.rb +5 -0
  143. data/test/units/sass_extensions_test.rbc +3586 -0
  144. data/test/units/sprites/engine_test.rbc +962 -0
  145. data/test/units/sprites/image_row_test.rbc +1578 -0
  146. data/test/units/sprites/image_test.rbc +2836 -0
  147. data/test/units/sprites/importer_test.rbc +2620 -0
  148. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  149. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  150. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  151. metadata +157 -51
@@ -0,0 +1,2620 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 53
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 99
32
+ 7
33
+ 3
34
+ 45
35
+ 4
36
+ 5
37
+ 43
38
+ 6
39
+ 43
40
+ 7
41
+ 65
42
+ 49
43
+ 8
44
+ 3
45
+ 13
46
+ 99
47
+ 12
48
+ 7
49
+ 9
50
+ 12
51
+ 7
52
+ 10
53
+ 12
54
+ 65
55
+ 12
56
+ 49
57
+ 11
58
+ 4
59
+ 15
60
+ 49
61
+ 9
62
+ 0
63
+ 15
64
+ 2
65
+ 11
66
+ I
67
+ 6
68
+ I
69
+ 0
70
+ I
71
+ 0
72
+ I
73
+ 0
74
+ n
75
+ p
76
+ 12
77
+ s
78
+ 11
79
+ test_helper
80
+ x
81
+ 7
82
+ require
83
+ s
84
+ 7
85
+ timecop
86
+ x
87
+ 12
88
+ ImporterTest
89
+ x
90
+ 4
91
+ Test
92
+ n
93
+ x
94
+ 4
95
+ Unit
96
+ x
97
+ 8
98
+ TestCase
99
+ x
100
+ 10
101
+ open_class
102
+ x
103
+ 14
104
+ __class_init__
105
+ M
106
+ 1
107
+ n
108
+ n
109
+ x
110
+ 12
111
+ ImporterTest
112
+ i
113
+ 152
114
+ 5
115
+ 66
116
+ 5
117
+ 45
118
+ 0
119
+ 1
120
+ 47
121
+ 49
122
+ 2
123
+ 1
124
+ 15
125
+ 99
126
+ 7
127
+ 3
128
+ 7
129
+ 4
130
+ 65
131
+ 67
132
+ 49
133
+ 5
134
+ 0
135
+ 49
136
+ 6
137
+ 4
138
+ 15
139
+ 99
140
+ 7
141
+ 7
142
+ 7
143
+ 8
144
+ 65
145
+ 67
146
+ 49
147
+ 5
148
+ 0
149
+ 49
150
+ 6
151
+ 4
152
+ 15
153
+ 99
154
+ 7
155
+ 9
156
+ 7
157
+ 10
158
+ 65
159
+ 67
160
+ 49
161
+ 5
162
+ 0
163
+ 49
164
+ 6
165
+ 4
166
+ 15
167
+ 5
168
+ 7
169
+ 11
170
+ 64
171
+ 56
172
+ 12
173
+ 47
174
+ 50
175
+ 13
176
+ 1
177
+ 15
178
+ 5
179
+ 7
180
+ 14
181
+ 64
182
+ 56
183
+ 15
184
+ 47
185
+ 50
186
+ 13
187
+ 1
188
+ 15
189
+ 5
190
+ 7
191
+ 16
192
+ 64
193
+ 56
194
+ 17
195
+ 47
196
+ 50
197
+ 13
198
+ 1
199
+ 15
200
+ 5
201
+ 7
202
+ 18
203
+ 64
204
+ 56
205
+ 19
206
+ 47
207
+ 50
208
+ 13
209
+ 1
210
+ 15
211
+ 5
212
+ 7
213
+ 20
214
+ 64
215
+ 56
216
+ 21
217
+ 47
218
+ 50
219
+ 13
220
+ 1
221
+ 15
222
+ 5
223
+ 7
224
+ 22
225
+ 64
226
+ 56
227
+ 23
228
+ 47
229
+ 50
230
+ 13
231
+ 1
232
+ 15
233
+ 5
234
+ 7
235
+ 24
236
+ 64
237
+ 56
238
+ 25
239
+ 47
240
+ 50
241
+ 13
242
+ 1
243
+ 15
244
+ 5
245
+ 7
246
+ 26
247
+ 64
248
+ 56
249
+ 27
250
+ 47
251
+ 50
252
+ 13
253
+ 1
254
+ 15
255
+ 5
256
+ 7
257
+ 28
258
+ 64
259
+ 56
260
+ 29
261
+ 47
262
+ 50
263
+ 13
264
+ 1
265
+ 11
266
+ I
267
+ 5
268
+ I
269
+ 0
270
+ I
271
+ 0
272
+ I
273
+ 0
274
+ n
275
+ p
276
+ 30
277
+ x
278
+ 12
279
+ SpriteHelper
280
+ n
281
+ x
282
+ 7
283
+ include
284
+ x
285
+ 5
286
+ setup
287
+ M
288
+ 1
289
+ n
290
+ n
291
+ x
292
+ 5
293
+ setup
294
+ i
295
+ 100
296
+ 5
297
+ 48
298
+ 0
299
+ 15
300
+ 45
301
+ 1
302
+ 2
303
+ 13
304
+ 71
305
+ 3
306
+ 47
307
+ 9
308
+ 39
309
+ 47
310
+ 49
311
+ 4
312
+ 0
313
+ 13
314
+ 7
315
+ 5
316
+ 39
317
+ 6
318
+ 49
319
+ 7
320
+ 0
321
+ 47
322
+ 101
323
+ 8
324
+ 7
325
+ 9
326
+ 63
327
+ 3
328
+ 47
329
+ 49
330
+ 10
331
+ 1
332
+ 15
333
+ 8
334
+ 56
335
+ 7
336
+ 5
337
+ 39
338
+ 6
339
+ 49
340
+ 7
341
+ 0
342
+ 47
343
+ 101
344
+ 8
345
+ 7
346
+ 9
347
+ 63
348
+ 3
349
+ 49
350
+ 3
351
+ 1
352
+ 19
353
+ 0
354
+ 15
355
+ 45
356
+ 11
357
+ 12
358
+ 20
359
+ 0
360
+ 7
361
+ 13
362
+ 64
363
+ 49
364
+ 14
365
+ 2
366
+ 15
367
+ 45
368
+ 11
369
+ 15
370
+ 43
371
+ 16
372
+ 13
373
+ 71
374
+ 3
375
+ 47
376
+ 9
377
+ 94
378
+ 47
379
+ 49
380
+ 4
381
+ 0
382
+ 13
383
+ 47
384
+ 49
385
+ 10
386
+ 0
387
+ 15
388
+ 8
389
+ 97
390
+ 49
391
+ 3
392
+ 0
393
+ 38
394
+ 17
395
+ 11
396
+ I
397
+ 6
398
+ I
399
+ 1
400
+ I
401
+ 0
402
+ I
403
+ 0
404
+ n
405
+ p
406
+ 18
407
+ x
408
+ 18
409
+ create_sprite_temp
410
+ x
411
+ 8
412
+ StringIO
413
+ n
414
+ x
415
+ 3
416
+ new
417
+ x
418
+ 8
419
+ allocate
420
+ s
421
+ 14
422
+ images_path =
423
+ x
424
+ 16
425
+ @images_src_path
426
+ x
427
+ 7
428
+ inspect
429
+ x
430
+ 4
431
+ to_s
432
+ s
433
+ 1
434
+
435
+
436
+ x
437
+ 10
438
+ initialize
439
+ x
440
+ 7
441
+ Compass
442
+ n
443
+ s
444
+ 13
445
+ sprite_config
446
+ x
447
+ 17
448
+ add_configuration
449
+ n
450
+ x
451
+ 14
452
+ SpriteImporter
453
+ x
454
+ 9
455
+ @importer
456
+ p
457
+ 11
458
+ I
459
+ -1
460
+ I
461
+ 6
462
+ I
463
+ 0
464
+ I
465
+ 7
466
+ I
467
+ 4
468
+ I
469
+ 8
470
+ I
471
+ 3b
472
+ I
473
+ 9
474
+ I
475
+ 47
476
+ I
477
+ a
478
+ I
479
+ 64
480
+ x
481
+ 67
482
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
483
+ p
484
+ 1
485
+ x
486
+ 4
487
+ file
488
+ x
489
+ 17
490
+ method_visibility
491
+ x
492
+ 15
493
+ add_defn_method
494
+ x
495
+ 8
496
+ teardown
497
+ M
498
+ 1
499
+ n
500
+ n
501
+ x
502
+ 8
503
+ teardown
504
+ i
505
+ 7
506
+ 45
507
+ 0
508
+ 1
509
+ 49
510
+ 2
511
+ 0
512
+ 11
513
+ I
514
+ 1
515
+ I
516
+ 0
517
+ I
518
+ 0
519
+ I
520
+ 0
521
+ n
522
+ p
523
+ 3
524
+ x
525
+ 7
526
+ Compass
527
+ n
528
+ x
529
+ 20
530
+ reset_configuration!
531
+ p
532
+ 5
533
+ I
534
+ -1
535
+ I
536
+ d
537
+ I
538
+ 0
539
+ I
540
+ e
541
+ I
542
+ 7
543
+ x
544
+ 67
545
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
546
+ p
547
+ 0
548
+ x
549
+ 7
550
+ options
551
+ M
552
+ 1
553
+ n
554
+ n
555
+ x
556
+ 7
557
+ options
558
+ i
559
+ 18
560
+ 44
561
+ 43
562
+ 0
563
+ 79
564
+ 49
565
+ 1
566
+ 1
567
+ 13
568
+ 7
569
+ 2
570
+ 7
571
+ 3
572
+ 64
573
+ 49
574
+ 4
575
+ 2
576
+ 15
577
+ 11
578
+ I
579
+ 4
580
+ I
581
+ 0
582
+ I
583
+ 0
584
+ I
585
+ 0
586
+ n
587
+ p
588
+ 5
589
+ x
590
+ 4
591
+ Hash
592
+ x
593
+ 16
594
+ new_from_literal
595
+ x
596
+ 3
597
+ foo
598
+ s
599
+ 3
600
+ bar
601
+ x
602
+ 3
603
+ []=
604
+ p
605
+ 5
606
+ I
607
+ -1
608
+ I
609
+ 11
610
+ I
611
+ 0
612
+ I
613
+ 12
614
+ I
615
+ 12
616
+ x
617
+ 67
618
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
619
+ p
620
+ 0
621
+ s
622
+ 38
623
+ should use search path to find sprites
624
+ M
625
+ 1
626
+ p
627
+ 2
628
+ x
629
+ 9
630
+ for_block
631
+ t
632
+ n
633
+ x
634
+ 12
635
+ ImporterTest
636
+ i
637
+ 249
638
+ 45
639
+ 0
640
+ 1
641
+ 49
642
+ 2
643
+ 0
644
+ 15
645
+ 7
646
+ 3
647
+ 64
648
+ 19
649
+ 0
650
+ 15
651
+ 45
652
+ 4
653
+ 5
654
+ 39
655
+ 6
656
+ 7
657
+ 7
658
+ 64
659
+ 49
660
+ 8
661
+ 2
662
+ 19
663
+ 1
664
+ 15
665
+ 45
666
+ 9
667
+ 10
668
+ 20
669
+ 1
670
+ 49
671
+ 11
672
+ 1
673
+ 15
674
+ 45
675
+ 9
676
+ 12
677
+ 45
678
+ 4
679
+ 13
680
+ 20
681
+ 1
682
+ 7
683
+ 14
684
+ 64
685
+ 49
686
+ 8
687
+ 2
688
+ 49
689
+ 11
690
+ 1
691
+ 15
692
+ 7
693
+ 15
694
+ 64
695
+ 7
696
+ 16
697
+ 64
698
+ 35
699
+ 2
700
+ 56
701
+ 17
702
+ 50
703
+ 18
704
+ 0
705
+ 15
706
+ 45
707
+ 0
708
+ 19
709
+ 43
710
+ 20
711
+ 43
712
+ 21
713
+ 13
714
+ 71
715
+ 22
716
+ 47
717
+ 9
718
+ 96
719
+ 47
720
+ 49
721
+ 23
722
+ 0
723
+ 13
724
+ 7
725
+ 24
726
+ 64
727
+ 47
728
+ 49
729
+ 25
730
+ 1
731
+ 15
732
+ 8
733
+ 102
734
+ 7
735
+ 24
736
+ 64
737
+ 49
738
+ 22
739
+ 1
740
+ 19
741
+ 2
742
+ 15
743
+ 20
744
+ 2
745
+ 39
746
+ 6
747
+ 13
748
+ 18
749
+ 2
750
+ 49
751
+ 26
752
+ 1
753
+ 15
754
+ 15
755
+ 20
756
+ 2
757
+ 39
758
+ 6
759
+ 20
760
+ 1
761
+ 35
762
+ 2
763
+ 13
764
+ 18
765
+ 2
766
+ 49
767
+ 27
768
+ 1
769
+ 15
770
+ 15
771
+ 45
772
+ 0
773
+ 28
774
+ 20
775
+ 2
776
+ 7
777
+ 29
778
+ 64
779
+ 49
780
+ 30
781
+ 2
782
+ 15
783
+ 45
784
+ 0
785
+ 31
786
+ 43
787
+ 32
788
+ 13
789
+ 71
790
+ 22
791
+ 47
792
+ 9
793
+ 168
794
+ 47
795
+ 49
796
+ 23
797
+ 0
798
+ 13
799
+ 47
800
+ 49
801
+ 25
802
+ 0
803
+ 15
804
+ 8
805
+ 171
806
+ 49
807
+ 22
808
+ 0
809
+ 19
810
+ 3
811
+ 15
812
+ 5
813
+ 80
814
+ 45
815
+ 0
816
+ 33
817
+ 49
818
+ 34
819
+ 0
820
+ 49
821
+ 35
822
+ 0
823
+ 49
824
+ 36
825
+ 0
826
+ 49
827
+ 37
828
+ 0
829
+ 47
830
+ 49
831
+ 38
832
+ 2
833
+ 15
834
+ 5
835
+ 45
836
+ 0
837
+ 39
838
+ 49
839
+ 34
840
+ 0
841
+ 49
842
+ 35
843
+ 0
844
+ 20
845
+ 1
846
+ 49
847
+ 40
848
+ 1
849
+ 47
850
+ 49
851
+ 41
852
+ 1
853
+ 15
854
+ 5
855
+ 7
856
+ 16
857
+ 64
858
+ 7
859
+ 15
860
+ 64
861
+ 35
862
+ 2
863
+ 45
864
+ 0
865
+ 42
866
+ 43
867
+ 32
868
+ 20
869
+ 0
870
+ 49
871
+ 43
872
+ 1
873
+ 47
874
+ 49
875
+ 38
876
+ 2
877
+ 15
878
+ 45
879
+ 9
880
+ 44
881
+ 20
882
+ 1
883
+ 49
884
+ 45
885
+ 1
886
+ 11
887
+ I
888
+ 9
889
+ I
890
+ 4
891
+ I
892
+ 0
893
+ I
894
+ 0
895
+ I
896
+ -2
897
+ p
898
+ 46
899
+ x
900
+ 7
901
+ Compass
902
+ n
903
+ x
904
+ 20
905
+ reset_configuration!
906
+ s
907
+ 9
908
+ foo/*.png
909
+ x
910
+ 4
911
+ File
912
+ n
913
+ x
914
+ 16
915
+ @images_tmp_path
916
+ s
917
+ 13
918
+ ../other-temp
919
+ x
920
+ 4
921
+ join
922
+ x
923
+ 9
924
+ FileUtils
925
+ n
926
+ x
927
+ 7
928
+ mkdir_p
929
+ n
930
+ n
931
+ s
932
+ 3
933
+ foo
934
+ s
935
+ 2
936
+ my
937
+ s
938
+ 3
939
+ bar
940
+ M
941
+ 1
942
+ p
943
+ 2
944
+ x
945
+ 9
946
+ for_block
947
+ t
948
+ n
949
+ x
950
+ 12
951
+ ImporterTest
952
+ i
953
+ 31
954
+ 57
955
+ 19
956
+ 0
957
+ 15
958
+ 45
959
+ 0
960
+ 1
961
+ 45
962
+ 2
963
+ 3
964
+ 21
965
+ 1
966
+ 1
967
+ 7
968
+ 4
969
+ 20
970
+ 0
971
+ 47
972
+ 101
973
+ 5
974
+ 7
975
+ 6
976
+ 63
977
+ 3
978
+ 49
979
+ 7
980
+ 2
981
+ 49
982
+ 8
983
+ 1
984
+ 11
985
+ I
986
+ 8
987
+ I
988
+ 1
989
+ I
990
+ 1
991
+ I
992
+ 1
993
+ n
994
+ p
995
+ 9
996
+ x
997
+ 9
998
+ FileUtils
999
+ n
1000
+ x
1001
+ 4
1002
+ File
1003
+ n
1004
+ s
1005
+ 4
1006
+ foo/
1007
+ x
1008
+ 4
1009
+ to_s
1010
+ s
1011
+ 4
1012
+ .png
1013
+ x
1014
+ 4
1015
+ join
1016
+ x
1017
+ 5
1018
+ touch
1019
+ p
1020
+ 5
1021
+ I
1022
+ 0
1023
+ I
1024
+ 1b
1025
+ I
1026
+ 4
1027
+ I
1028
+ 1c
1029
+ I
1030
+ 1f
1031
+ x
1032
+ 67
1033
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
1034
+ p
1035
+ 1
1036
+ x
1037
+ 4
1038
+ file
1039
+ x
1040
+ 4
1041
+ each
1042
+ n
1043
+ x
1044
+ 13
1045
+ Configuration
1046
+ x
1047
+ 4
1048
+ Data
1049
+ x
1050
+ 3
1051
+ new
1052
+ x
1053
+ 8
1054
+ allocate
1055
+ s
1056
+ 6
1057
+ config
1058
+ x
1059
+ 10
1060
+ initialize
1061
+ x
1062
+ 12
1063
+ images_path=
1064
+ x
1065
+ 17
1066
+ sprite_load_path=
1067
+ n
1068
+ s
1069
+ 13
1070
+ sprite_config
1071
+ x
1072
+ 17
1073
+ add_configuration
1074
+ n
1075
+ x
1076
+ 14
1077
+ SpriteImporter
1078
+ n
1079
+ x
1080
+ 13
1081
+ configuration
1082
+ x
1083
+ 16
1084
+ sprite_load_path
1085
+ x
1086
+ 7
1087
+ compact
1088
+ x
1089
+ 4
1090
+ size
1091
+ x
1092
+ 12
1093
+ assert_equal
1094
+ n
1095
+ x
1096
+ 8
1097
+ include?
1098
+ x
1099
+ 6
1100
+ assert
1101
+ n
1102
+ x
1103
+ 12
1104
+ sprite_names
1105
+ n
1106
+ x
1107
+ 5
1108
+ rm_rf
1109
+ p
1110
+ 31
1111
+ I
1112
+ 0
1113
+ I
1114
+ 16
1115
+ I
1116
+ 7
1117
+ I
1118
+ 17
1119
+ I
1120
+ d
1121
+ I
1122
+ 18
1123
+ I
1124
+ 1b
1125
+ I
1126
+ 19
1127
+ I
1128
+ 24
1129
+ I
1130
+ 1a
1131
+ I
1132
+ 36
1133
+ I
1134
+ 1b
1135
+ I
1136
+ 44
1137
+ I
1138
+ 1e
1139
+ I
1140
+ 69
1141
+ I
1142
+ 1f
1143
+ I
1144
+ 75
1145
+ I
1146
+ 20
1147
+ I
1148
+ 85
1149
+ I
1150
+ 21
1151
+ I
1152
+ 91
1153
+ I
1154
+ 22
1155
+ I
1156
+ ae
1157
+ I
1158
+ 23
1159
+ I
1160
+ c4
1161
+ I
1162
+ 24
1163
+ I
1164
+ d8
1165
+ I
1166
+ 25
1167
+ I
1168
+ f0
1169
+ I
1170
+ 27
1171
+ I
1172
+ f9
1173
+ x
1174
+ 67
1175
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
1176
+ p
1177
+ 4
1178
+ x
1179
+ 3
1180
+ uri
1181
+ x
1182
+ 12
1183
+ other_folder
1184
+ x
1185
+ 6
1186
+ config
1187
+ x
1188
+ 8
1189
+ importer
1190
+ x
1191
+ 4
1192
+ test
1193
+ s
1194
+ 34
1195
+ name should return the sprite name
1196
+ M
1197
+ 1
1198
+ p
1199
+ 2
1200
+ x
1201
+ 9
1202
+ for_block
1203
+ t
1204
+ n
1205
+ x
1206
+ 12
1207
+ ImporterTest
1208
+ i
1209
+ 20
1210
+ 5
1211
+ 7
1212
+ 0
1213
+ 64
1214
+ 45
1215
+ 1
1216
+ 2
1217
+ 43
1218
+ 3
1219
+ 45
1220
+ 4
1221
+ 5
1222
+ 49
1223
+ 6
1224
+ 1
1225
+ 47
1226
+ 49
1227
+ 7
1228
+ 2
1229
+ 11
1230
+ I
1231
+ 5
1232
+ I
1233
+ 0
1234
+ I
1235
+ 0
1236
+ I
1237
+ 0
1238
+ I
1239
+ -2
1240
+ p
1241
+ 8
1242
+ s
1243
+ 9
1244
+ selectors
1245
+ x
1246
+ 7
1247
+ Compass
1248
+ n
1249
+ x
1250
+ 14
1251
+ SpriteImporter
1252
+ x
1253
+ 3
1254
+ URI
1255
+ n
1256
+ x
1257
+ 11
1258
+ sprite_name
1259
+ x
1260
+ 12
1261
+ assert_equal
1262
+ p
1263
+ 3
1264
+ I
1265
+ 0
1266
+ I
1267
+ 2b
1268
+ I
1269
+ 14
1270
+ x
1271
+ 67
1272
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
1273
+ p
1274
+ 0
1275
+ s
1276
+ 34
1277
+ path should return the sprite path
1278
+ M
1279
+ 1
1280
+ p
1281
+ 2
1282
+ x
1283
+ 9
1284
+ for_block
1285
+ t
1286
+ n
1287
+ x
1288
+ 12
1289
+ ImporterTest
1290
+ i
1291
+ 20
1292
+ 5
1293
+ 7
1294
+ 0
1295
+ 64
1296
+ 45
1297
+ 1
1298
+ 2
1299
+ 43
1300
+ 3
1301
+ 45
1302
+ 4
1303
+ 5
1304
+ 49
1305
+ 6
1306
+ 1
1307
+ 47
1308
+ 49
1309
+ 7
1310
+ 2
1311
+ 11
1312
+ I
1313
+ 5
1314
+ I
1315
+ 0
1316
+ I
1317
+ 0
1318
+ I
1319
+ 0
1320
+ I
1321
+ -2
1322
+ p
1323
+ 8
1324
+ s
1325
+ 9
1326
+ selectors
1327
+ x
1328
+ 7
1329
+ Compass
1330
+ n
1331
+ x
1332
+ 14
1333
+ SpriteImporter
1334
+ x
1335
+ 3
1336
+ URI
1337
+ n
1338
+ x
1339
+ 4
1340
+ path
1341
+ x
1342
+ 12
1343
+ assert_equal
1344
+ p
1345
+ 3
1346
+ I
1347
+ 0
1348
+ I
1349
+ 2f
1350
+ I
1351
+ 14
1352
+ x
1353
+ 67
1354
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
1355
+ p
1356
+ 0
1357
+ s
1358
+ 34
1359
+ should return all the sprite names
1360
+ M
1361
+ 1
1362
+ p
1363
+ 2
1364
+ x
1365
+ 9
1366
+ for_block
1367
+ t
1368
+ n
1369
+ x
1370
+ 12
1371
+ ImporterTest
1372
+ i
1373
+ 31
1374
+ 5
1375
+ 7
1376
+ 0
1377
+ 64
1378
+ 7
1379
+ 1
1380
+ 64
1381
+ 7
1382
+ 2
1383
+ 64
1384
+ 7
1385
+ 3
1386
+ 64
1387
+ 35
1388
+ 4
1389
+ 45
1390
+ 4
1391
+ 5
1392
+ 43
1393
+ 6
1394
+ 45
1395
+ 7
1396
+ 8
1397
+ 49
1398
+ 9
1399
+ 1
1400
+ 47
1401
+ 49
1402
+ 10
1403
+ 2
1404
+ 11
1405
+ I
1406
+ 6
1407
+ I
1408
+ 0
1409
+ I
1410
+ 0
1411
+ I
1412
+ 0
1413
+ I
1414
+ -2
1415
+ p
1416
+ 11
1417
+ s
1418
+ 10
1419
+ ten-by-ten
1420
+ s
1421
+ 17
1422
+ ten-by-ten_active
1423
+ s
1424
+ 16
1425
+ ten-by-ten_hover
1426
+ s
1427
+ 17
1428
+ ten-by-ten_target
1429
+ x
1430
+ 7
1431
+ Compass
1432
+ n
1433
+ x
1434
+ 14
1435
+ SpriteImporter
1436
+ x
1437
+ 3
1438
+ URI
1439
+ n
1440
+ x
1441
+ 12
1442
+ sprite_names
1443
+ x
1444
+ 12
1445
+ assert_equal
1446
+ p
1447
+ 3
1448
+ I
1449
+ 0
1450
+ I
1451
+ 33
1452
+ I
1453
+ 1f
1454
+ x
1455
+ 67
1456
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
1457
+ p
1458
+ 0
1459
+ s
1460
+ 25
1461
+ should have correct mtime
1462
+ M
1463
+ 1
1464
+ p
1465
+ 2
1466
+ x
1467
+ 9
1468
+ for_block
1469
+ t
1470
+ n
1471
+ x
1472
+ 12
1473
+ ImporterTest
1474
+ i
1475
+ 115
1476
+ 45
1477
+ 0
1478
+ 1
1479
+ 49
1480
+ 2
1481
+ 0
1482
+ 49
1483
+ 3
1484
+ 0
1485
+ 4
1486
+ 60
1487
+ 4
1488
+ 60
1489
+ 49
1490
+ 4
1491
+ 1
1492
+ 4
1493
+ 24
1494
+ 49
1495
+ 4
1496
+ 1
1497
+ 4
1498
+ 30
1499
+ 49
1500
+ 4
1501
+ 1
1502
+ 81
1503
+ 5
1504
+ 19
1505
+ 0
1506
+ 15
1507
+ 45
1508
+ 6
1509
+ 7
1510
+ 45
1511
+ 8
1512
+ 9
1513
+ 39
1514
+ 10
1515
+ 45
1516
+ 11
1517
+ 12
1518
+ 49
1519
+ 13
1520
+ 2
1521
+ 49
1522
+ 14
1523
+ 1
1524
+ 49
1525
+ 15
1526
+ 0
1527
+ 49
1528
+ 16
1529
+ 0
1530
+ 19
1531
+ 1
1532
+ 15
1533
+ 45
1534
+ 8
1535
+ 17
1536
+ 20
1537
+ 0
1538
+ 20
1539
+ 0
1540
+ 20
1541
+ 1
1542
+ 49
1543
+ 18
1544
+ 3
1545
+ 15
1546
+ 5
1547
+ 20
1548
+ 0
1549
+ 45
1550
+ 8
1551
+ 19
1552
+ 20
1553
+ 1
1554
+ 49
1555
+ 20
1556
+ 1
1557
+ 49
1558
+ 3
1559
+ 0
1560
+ 47
1561
+ 49
1562
+ 21
1563
+ 2
1564
+ 15
1565
+ 5
1566
+ 20
1567
+ 0
1568
+ 39
1569
+ 22
1570
+ 45
1571
+ 11
1572
+ 23
1573
+ 44
1574
+ 43
1575
+ 24
1576
+ 78
1577
+ 49
1578
+ 25
1579
+ 1
1580
+ 49
1581
+ 20
1582
+ 2
1583
+ 49
1584
+ 3
1585
+ 0
1586
+ 47
1587
+ 49
1588
+ 21
1589
+ 2
1590
+ 11
1591
+ I
1592
+ 9
1593
+ I
1594
+ 2
1595
+ I
1596
+ 0
1597
+ I
1598
+ 0
1599
+ I
1600
+ -2
1601
+ p
1602
+ 26
1603
+ x
1604
+ 4
1605
+ Time
1606
+ n
1607
+ x
1608
+ 3
1609
+ now
1610
+ x
1611
+ 4
1612
+ to_i
1613
+ x
1614
+ 1
1615
+ *
1616
+ x
1617
+ 1
1618
+ +
1619
+ x
1620
+ 3
1621
+ Dir
1622
+ n
1623
+ x
1624
+ 4
1625
+ File
1626
+ n
1627
+ x
1628
+ 16
1629
+ @images_src_path
1630
+ x
1631
+ 3
1632
+ URI
1633
+ n
1634
+ x
1635
+ 4
1636
+ join
1637
+ x
1638
+ 2
1639
+ []
1640
+ x
1641
+ 4
1642
+ sort
1643
+ x
1644
+ 5
1645
+ first
1646
+ n
1647
+ x
1648
+ 5
1649
+ utime
1650
+ n
1651
+ x
1652
+ 5
1653
+ mtime
1654
+ x
1655
+ 12
1656
+ assert_equal
1657
+ x
1658
+ 9
1659
+ @importer
1660
+ n
1661
+ x
1662
+ 4
1663
+ Hash
1664
+ x
1665
+ 16
1666
+ new_from_literal
1667
+ p
1668
+ 11
1669
+ I
1670
+ 0
1671
+ I
1672
+ 37
1673
+ I
1674
+ 1f
1675
+ I
1676
+ 38
1677
+ I
1678
+ 39
1679
+ I
1680
+ 39
1681
+ I
1682
+ 46
1683
+ I
1684
+ 3a
1685
+ I
1686
+ 59
1687
+ I
1688
+ 3b
1689
+ I
1690
+ 73
1691
+ x
1692
+ 67
1693
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
1694
+ p
1695
+ 2
1696
+ x
1697
+ 10
1698
+ thirtydays
1699
+ x
1700
+ 4
1701
+ file
1702
+ s
1703
+ 33
1704
+ should return sass engine on find
1705
+ M
1706
+ 1
1707
+ p
1708
+ 2
1709
+ x
1710
+ 9
1711
+ for_block
1712
+ t
1713
+ n
1714
+ x
1715
+ 12
1716
+ ImporterTest
1717
+ i
1718
+ 29
1719
+ 5
1720
+ 39
1721
+ 0
1722
+ 45
1723
+ 1
1724
+ 2
1725
+ 44
1726
+ 43
1727
+ 3
1728
+ 78
1729
+ 49
1730
+ 4
1731
+ 1
1732
+ 49
1733
+ 5
1734
+ 2
1735
+ 45
1736
+ 6
1737
+ 7
1738
+ 43
1739
+ 8
1740
+ 49
1741
+ 9
1742
+ 1
1743
+ 47
1744
+ 49
1745
+ 10
1746
+ 1
1747
+ 11
1748
+ I
1749
+ 6
1750
+ I
1751
+ 0
1752
+ I
1753
+ 0
1754
+ I
1755
+ 0
1756
+ I
1757
+ -2
1758
+ p
1759
+ 11
1760
+ x
1761
+ 9
1762
+ @importer
1763
+ x
1764
+ 3
1765
+ URI
1766
+ n
1767
+ x
1768
+ 4
1769
+ Hash
1770
+ x
1771
+ 16
1772
+ new_from_literal
1773
+ x
1774
+ 4
1775
+ find
1776
+ x
1777
+ 4
1778
+ Sass
1779
+ n
1780
+ x
1781
+ 6
1782
+ Engine
1783
+ x
1784
+ 5
1785
+ is_a?
1786
+ x
1787
+ 6
1788
+ assert
1789
+ p
1790
+ 3
1791
+ I
1792
+ 0
1793
+ I
1794
+ 3f
1795
+ I
1796
+ 1d
1797
+ x
1798
+ 67
1799
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
1800
+ p
1801
+ 0
1802
+ s
1803
+ 35
1804
+ sass options should contain options
1805
+ M
1806
+ 1
1807
+ p
1808
+ 2
1809
+ x
1810
+ 9
1811
+ for_block
1812
+ t
1813
+ n
1814
+ x
1815
+ 12
1816
+ ImporterTest
1817
+ i
1818
+ 35
1819
+ 45
1820
+ 0
1821
+ 1
1822
+ 43
1823
+ 2
1824
+ 7
1825
+ 3
1826
+ 64
1827
+ 39
1828
+ 4
1829
+ 5
1830
+ 48
1831
+ 5
1832
+ 49
1833
+ 6
1834
+ 3
1835
+ 19
1836
+ 0
1837
+ 15
1838
+ 5
1839
+ 7
1840
+ 7
1841
+ 64
1842
+ 20
1843
+ 0
1844
+ 7
1845
+ 8
1846
+ 49
1847
+ 9
1848
+ 1
1849
+ 47
1850
+ 49
1851
+ 10
1852
+ 2
1853
+ 11
1854
+ I
1855
+ 6
1856
+ I
1857
+ 1
1858
+ I
1859
+ 0
1860
+ I
1861
+ 0
1862
+ I
1863
+ -2
1864
+ p
1865
+ 11
1866
+ x
1867
+ 7
1868
+ Compass
1869
+ n
1870
+ x
1871
+ 14
1872
+ SpriteImporter
1873
+ s
1874
+ 3
1875
+ foo
1876
+ x
1877
+ 9
1878
+ @importer
1879
+ x
1880
+ 7
1881
+ options
1882
+ x
1883
+ 12
1884
+ sass_options
1885
+ s
1886
+ 3
1887
+ bar
1888
+ x
1889
+ 3
1890
+ foo
1891
+ x
1892
+ 2
1893
+ []
1894
+ x
1895
+ 12
1896
+ assert_equal
1897
+ p
1898
+ 5
1899
+ I
1900
+ 0
1901
+ I
1902
+ 43
1903
+ I
1904
+ 13
1905
+ I
1906
+ 44
1907
+ I
1908
+ 23
1909
+ x
1910
+ 67
1911
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
1912
+ p
1913
+ 1
1914
+ x
1915
+ 4
1916
+ opts
1917
+ s
1918
+ 55
1919
+ verify that the sass_engine passes the correct filename
1920
+ M
1921
+ 1
1922
+ p
1923
+ 2
1924
+ x
1925
+ 9
1926
+ for_block
1927
+ t
1928
+ n
1929
+ x
1930
+ 12
1931
+ ImporterTest
1932
+ i
1933
+ 70
1934
+ 45
1935
+ 0
1936
+ 1
1937
+ 43
1938
+ 2
1939
+ 13
1940
+ 71
1941
+ 3
1942
+ 47
1943
+ 9
1944
+ 23
1945
+ 47
1946
+ 49
1947
+ 4
1948
+ 0
1949
+ 13
1950
+ 47
1951
+ 49
1952
+ 5
1953
+ 0
1954
+ 15
1955
+ 8
1956
+ 26
1957
+ 49
1958
+ 3
1959
+ 0
1960
+ 19
1961
+ 0
1962
+ 15
1963
+ 45
1964
+ 0
1965
+ 6
1966
+ 43
1967
+ 2
1968
+ 45
1969
+ 7
1970
+ 8
1971
+ 7
1972
+ 9
1973
+ 64
1974
+ 20
1975
+ 0
1976
+ 5
1977
+ 48
1978
+ 10
1979
+ 49
1980
+ 11
1981
+ 4
1982
+ 19
1983
+ 1
1984
+ 15
1985
+ 5
1986
+ 20
1987
+ 1
1988
+ 49
1989
+ 10
1990
+ 0
1991
+ 7
1992
+ 12
1993
+ 49
1994
+ 13
1995
+ 1
1996
+ 45
1997
+ 7
1998
+ 14
1999
+ 47
2000
+ 49
2001
+ 15
2002
+ 2
2003
+ 11
2004
+ I
2005
+ 8
2006
+ I
2007
+ 2
2008
+ I
2009
+ 0
2010
+ I
2011
+ 0
2012
+ I
2013
+ -2
2014
+ p
2015
+ 16
2016
+ x
2017
+ 7
2018
+ Compass
2019
+ n
2020
+ x
2021
+ 14
2022
+ SpriteImporter
2023
+ x
2024
+ 3
2025
+ new
2026
+ x
2027
+ 8
2028
+ allocate
2029
+ x
2030
+ 10
2031
+ initialize
2032
+ n
2033
+ x
2034
+ 3
2035
+ URI
2036
+ n
2037
+ s
2038
+ 3
2039
+ foo
2040
+ x
2041
+ 7
2042
+ options
2043
+ x
2044
+ 11
2045
+ sass_engine
2046
+ x
2047
+ 8
2048
+ filename
2049
+ x
2050
+ 2
2051
+ []
2052
+ n
2053
+ x
2054
+ 12
2055
+ assert_equal
2056
+ p
2057
+ 7
2058
+ I
2059
+ 0
2060
+ I
2061
+ 48
2062
+ I
2063
+ 1d
2064
+ I
2065
+ 49
2066
+ I
2067
+ 33
2068
+ I
2069
+ 4a
2070
+ I
2071
+ 46
2072
+ x
2073
+ 67
2074
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
2075
+ p
2076
+ 2
2077
+ x
2078
+ 8
2079
+ importer
2080
+ x
2081
+ 6
2082
+ engine
2083
+ s
2084
+ 39
2085
+ should fail given bad sprite extensions
2086
+ M
2087
+ 1
2088
+ p
2089
+ 2
2090
+ x
2091
+ 9
2092
+ for_block
2093
+ t
2094
+ n
2095
+ x
2096
+ 12
2097
+ ImporterTest
2098
+ i
2099
+ 240
2100
+ 45
2101
+ 0
2102
+ 1
2103
+ 45
2104
+ 0
2105
+ 2
2106
+ 65
2107
+ 49
2108
+ 3
2109
+ 0
2110
+ 49
2111
+ 4
2112
+ 1
2113
+ 7
2114
+ 5
2115
+ 64
2116
+ 7
2117
+ 5
2118
+ 64
2119
+ 7
2120
+ 6
2121
+ 64
2122
+ 7
2123
+ 7
2124
+ 64
2125
+ 7
2126
+ 8
2127
+ 64
2128
+ 7
2129
+ 9
2130
+ 64
2131
+ 49
2132
+ 10
2133
+ 7
2134
+ 38
2135
+ 11
2136
+ 15
2137
+ 45
2138
+ 12
2139
+ 13
2140
+ 13
2141
+ 71
2142
+ 14
2143
+ 47
2144
+ 9
2145
+ 72
2146
+ 47
2147
+ 49
2148
+ 15
2149
+ 0
2150
+ 13
2151
+ 7
2152
+ 16
2153
+ 39
2154
+ 11
2155
+ 49
2156
+ 17
2157
+ 0
2158
+ 47
2159
+ 101
2160
+ 18
2161
+ 7
2162
+ 19
2163
+ 63
2164
+ 3
2165
+ 47
2166
+ 49
2167
+ 20
2168
+ 1
2169
+ 15
2170
+ 8
2171
+ 89
2172
+ 7
2173
+ 16
2174
+ 39
2175
+ 11
2176
+ 49
2177
+ 17
2178
+ 0
2179
+ 47
2180
+ 101
2181
+ 18
2182
+ 7
2183
+ 19
2184
+ 63
2185
+ 3
2186
+ 49
2187
+ 14
2188
+ 1
2189
+ 19
2190
+ 0
2191
+ 15
2192
+ 45
2193
+ 21
2194
+ 22
2195
+ 20
2196
+ 0
2197
+ 7
2198
+ 23
2199
+ 64
2200
+ 49
2201
+ 24
2202
+ 2
2203
+ 15
2204
+ 45
2205
+ 21
2206
+ 25
2207
+ 43
2208
+ 26
2209
+ 13
2210
+ 71
2211
+ 14
2212
+ 47
2213
+ 9
2214
+ 127
2215
+ 47
2216
+ 49
2217
+ 15
2218
+ 0
2219
+ 13
2220
+ 47
2221
+ 49
2222
+ 20
2223
+ 0
2224
+ 15
2225
+ 8
2226
+ 130
2227
+ 49
2228
+ 14
2229
+ 0
2230
+ 19
2231
+ 1
2232
+ 15
2233
+ 7
2234
+ 27
2235
+ 64
2236
+ 19
2237
+ 2
2238
+ 15
2239
+ 26
2240
+ 93
2241
+ 0
2242
+ 15
2243
+ 29
2244
+ 188
2245
+ 0
2246
+ 45
2247
+ 21
2248
+ 28
2249
+ 43
2250
+ 26
2251
+ 20
2252
+ 2
2253
+ 45
2254
+ 21
2255
+ 29
2256
+ 43
2257
+ 26
2258
+ 20
2259
+ 2
2260
+ 49
2261
+ 30
2262
+ 1
2263
+ 20
2264
+ 1
2265
+ 44
2266
+ 43
2267
+ 31
2268
+ 78
2269
+ 49
2270
+ 32
2271
+ 1
2272
+ 49
2273
+ 33
2274
+ 4
2275
+ 15
2276
+ 5
2277
+ 3
2278
+ 7
2279
+ 34
2280
+ 64
2281
+ 47
2282
+ 49
2283
+ 35
2284
+ 2
2285
+ 30
2286
+ 8
2287
+ 236
2288
+ 26
2289
+ 93
2290
+ 1
2291
+ 15
2292
+ 24
2293
+ 13
2294
+ 45
2295
+ 21
2296
+ 36
2297
+ 43
2298
+ 37
2299
+ 12
2300
+ 49
2301
+ 38
2302
+ 1
2303
+ 10
2304
+ 207
2305
+ 8
2306
+ 231
2307
+ 15
2308
+ 24
2309
+ 19
2310
+ 3
2311
+ 15
2312
+ 5
2313
+ 20
2314
+ 3
2315
+ 49
2316
+ 39
2317
+ 0
2318
+ 7
2319
+ 40
2320
+ 64
2321
+ 49
2322
+ 41
2323
+ 1
2324
+ 47
2325
+ 49
2326
+ 35
2327
+ 1
2328
+ 25
2329
+ 8
2330
+ 236
2331
+ 15
2332
+ 92
2333
+ 1
2334
+ 27
2335
+ 34
2336
+ 92
2337
+ 0
2338
+ 27
2339
+ 11
2340
+ I
2341
+ f
2342
+ I
2343
+ 4
2344
+ I
2345
+ 0
2346
+ I
2347
+ 0
2348
+ I
2349
+ -2
2350
+ p
2351
+ 42
2352
+ x
2353
+ 4
2354
+ File
2355
+ n
2356
+ n
2357
+ x
2358
+ 11
2359
+ active_path
2360
+ x
2361
+ 7
2362
+ dirname
2363
+ s
2364
+ 2
2365
+ ..
2366
+ s
2367
+ 8
2368
+ fixtures
2369
+ s
2370
+ 7
2371
+ sprites
2372
+ s
2373
+ 6
2374
+ public
2375
+ s
2376
+ 6
2377
+ images
2378
+ x
2379
+ 4
2380
+ join
2381
+ x
2382
+ 16
2383
+ @images_src_path
2384
+ x
2385
+ 8
2386
+ StringIO
2387
+ n
2388
+ x
2389
+ 3
2390
+ new
2391
+ x
2392
+ 8
2393
+ allocate
2394
+ s
2395
+ 14
2396
+ images_path =
2397
+ x
2398
+ 7
2399
+ inspect
2400
+ x
2401
+ 4
2402
+ to_s
2403
+ s
2404
+ 1
2405
+
2406
+
2407
+ x
2408
+ 10
2409
+ initialize
2410
+ x
2411
+ 7
2412
+ Compass
2413
+ n
2414
+ s
2415
+ 13
2416
+ sprite_config
2417
+ x
2418
+ 17
2419
+ add_configuration
2420
+ n
2421
+ x
2422
+ 14
2423
+ SpriteImporter
2424
+ s
2425
+ 20
2426
+ bad_extensions/*.jpg
2427
+ n
2428
+ n
2429
+ x
2430
+ 11
2431
+ sprite_name
2432
+ x
2433
+ 4
2434
+ Hash
2435
+ x
2436
+ 16
2437
+ new_from_literal
2438
+ x
2439
+ 11
2440
+ sass_engine
2441
+ s
2442
+ 47
2443
+ An invalid sprite file made it past validation.
2444
+ x
2445
+ 6
2446
+ assert
2447
+ n
2448
+ x
2449
+ 5
2450
+ Error
2451
+ x
2452
+ 3
2453
+ ===
2454
+ x
2455
+ 7
2456
+ message
2457
+ s
2458
+ 19
2459
+ invalid sprite path
2460
+ x
2461
+ 8
2462
+ include?
2463
+ p
2464
+ 27
2465
+ I
2466
+ 0
2467
+ I
2468
+ 4e
2469
+ I
2470
+ 25
2471
+ I
2472
+ 4f
2473
+ I
2474
+ 5c
2475
+ I
2476
+ 50
2477
+ I
2478
+ 68
2479
+ I
2480
+ 51
2481
+ I
2482
+ 85
2483
+ I
2484
+ 52
2485
+ I
2486
+ 8b
2487
+ I
2488
+ 54
2489
+ I
2490
+ b0
2491
+ I
2492
+ 55
2493
+ I
2494
+ bc
2495
+ I
2496
+ 0
2497
+ I
2498
+ c1
2499
+ I
2500
+ 56
2501
+ I
2502
+ d0
2503
+ I
2504
+ 58
2505
+ I
2506
+ d1
2507
+ I
2508
+ 56
2509
+ I
2510
+ d4
2511
+ I
2512
+ 57
2513
+ I
2514
+ ec
2515
+ I
2516
+ 0
2517
+ I
2518
+ f0
2519
+ x
2520
+ 67
2521
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
2522
+ p
2523
+ 4
2524
+ x
2525
+ 4
2526
+ file
2527
+ x
2528
+ 8
2529
+ importer
2530
+ x
2531
+ 3
2532
+ uri
2533
+ x
2534
+ 1
2535
+ e
2536
+ p
2537
+ 27
2538
+ I
2539
+ 2
2540
+ I
2541
+ 4
2542
+ I
2543
+ b
2544
+ I
2545
+ 6
2546
+ I
2547
+ 19
2548
+ I
2549
+ d
2550
+ I
2551
+ 27
2552
+ I
2553
+ 11
2554
+ I
2555
+ 35
2556
+ I
2557
+ 15
2558
+ I
2559
+ 40
2560
+ I
2561
+ 2a
2562
+ I
2563
+ 4b
2564
+ I
2565
+ 2e
2566
+ I
2567
+ 56
2568
+ I
2569
+ 32
2570
+ I
2571
+ 61
2572
+ I
2573
+ 36
2574
+ I
2575
+ 6c
2576
+ I
2577
+ 3e
2578
+ I
2579
+ 77
2580
+ I
2581
+ 42
2582
+ I
2583
+ 82
2584
+ I
2585
+ 47
2586
+ I
2587
+ 8d
2588
+ I
2589
+ 4d
2590
+ I
2591
+ 98
2592
+ x
2593
+ 67
2594
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
2595
+ p
2596
+ 0
2597
+ x
2598
+ 13
2599
+ attach_method
2600
+ p
2601
+ 7
2602
+ I
2603
+ 0
2604
+ I
2605
+ 1
2606
+ I
2607
+ 9
2608
+ I
2609
+ 2
2610
+ I
2611
+ 12
2612
+ I
2613
+ 3
2614
+ I
2615
+ 35
2616
+ x
2617
+ 67
2618
+ /Users/crispee/Projects/compass/test/units/sprites/importer_test.rb
2619
+ p
2620
+ 0