compass 0.11.5 → 0.11.6

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 (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,1578 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 44
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 45
26
+ 3
27
+ 4
28
+ 43
29
+ 5
30
+ 43
31
+ 6
32
+ 65
33
+ 49
34
+ 7
35
+ 3
36
+ 13
37
+ 99
38
+ 12
39
+ 7
40
+ 8
41
+ 12
42
+ 7
43
+ 9
44
+ 12
45
+ 65
46
+ 12
47
+ 49
48
+ 10
49
+ 4
50
+ 15
51
+ 49
52
+ 8
53
+ 0
54
+ 15
55
+ 2
56
+ 11
57
+ I
58
+ 6
59
+ I
60
+ 0
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ n
66
+ p
67
+ 11
68
+ s
69
+ 11
70
+ test_helper
71
+ x
72
+ 7
73
+ require
74
+ x
75
+ 12
76
+ ImageRowTest
77
+ x
78
+ 4
79
+ Test
80
+ n
81
+ x
82
+ 4
83
+ Unit
84
+ x
85
+ 8
86
+ TestCase
87
+ x
88
+ 10
89
+ open_class
90
+ x
91
+ 14
92
+ __class_init__
93
+ M
94
+ 1
95
+ n
96
+ n
97
+ x
98
+ 12
99
+ ImageRowTest
100
+ i
101
+ 122
102
+ 5
103
+ 66
104
+ 5
105
+ 45
106
+ 0
107
+ 1
108
+ 47
109
+ 49
110
+ 2
111
+ 1
112
+ 15
113
+ 99
114
+ 7
115
+ 3
116
+ 7
117
+ 4
118
+ 65
119
+ 67
120
+ 49
121
+ 5
122
+ 0
123
+ 49
124
+ 6
125
+ 4
126
+ 15
127
+ 99
128
+ 7
129
+ 7
130
+ 7
131
+ 8
132
+ 65
133
+ 67
134
+ 49
135
+ 5
136
+ 0
137
+ 49
138
+ 6
139
+ 4
140
+ 15
141
+ 99
142
+ 7
143
+ 9
144
+ 7
145
+ 10
146
+ 65
147
+ 67
148
+ 49
149
+ 5
150
+ 0
151
+ 49
152
+ 6
153
+ 4
154
+ 15
155
+ 99
156
+ 7
157
+ 11
158
+ 7
159
+ 12
160
+ 65
161
+ 67
162
+ 49
163
+ 5
164
+ 0
165
+ 49
166
+ 6
167
+ 4
168
+ 15
169
+ 5
170
+ 7
171
+ 13
172
+ 64
173
+ 56
174
+ 14
175
+ 47
176
+ 50
177
+ 15
178
+ 1
179
+ 15
180
+ 5
181
+ 7
182
+ 16
183
+ 64
184
+ 56
185
+ 17
186
+ 47
187
+ 50
188
+ 15
189
+ 1
190
+ 15
191
+ 5
192
+ 7
193
+ 18
194
+ 64
195
+ 56
196
+ 19
197
+ 47
198
+ 50
199
+ 15
200
+ 1
201
+ 15
202
+ 5
203
+ 7
204
+ 20
205
+ 64
206
+ 56
207
+ 21
208
+ 47
209
+ 50
210
+ 15
211
+ 1
212
+ 15
213
+ 5
214
+ 7
215
+ 22
216
+ 64
217
+ 56
218
+ 23
219
+ 47
220
+ 50
221
+ 15
222
+ 1
223
+ 11
224
+ I
225
+ 5
226
+ I
227
+ 0
228
+ I
229
+ 0
230
+ I
231
+ 0
232
+ n
233
+ p
234
+ 24
235
+ x
236
+ 12
237
+ SpriteHelper
238
+ n
239
+ x
240
+ 7
241
+ include
242
+ x
243
+ 5
244
+ setup
245
+ M
246
+ 1
247
+ n
248
+ n
249
+ x
250
+ 5
251
+ setup
252
+ i
253
+ 130
254
+ 5
255
+ 48
256
+ 0
257
+ 15
258
+ 45
259
+ 1
260
+ 2
261
+ 13
262
+ 71
263
+ 3
264
+ 47
265
+ 9
266
+ 39
267
+ 47
268
+ 49
269
+ 4
270
+ 0
271
+ 13
272
+ 7
273
+ 5
274
+ 39
275
+ 6
276
+ 49
277
+ 7
278
+ 0
279
+ 47
280
+ 101
281
+ 8
282
+ 7
283
+ 9
284
+ 63
285
+ 3
286
+ 47
287
+ 49
288
+ 10
289
+ 1
290
+ 15
291
+ 8
292
+ 56
293
+ 7
294
+ 5
295
+ 39
296
+ 6
297
+ 49
298
+ 7
299
+ 0
300
+ 47
301
+ 101
302
+ 8
303
+ 7
304
+ 9
305
+ 63
306
+ 3
307
+ 49
308
+ 3
309
+ 1
310
+ 19
311
+ 0
312
+ 15
313
+ 45
314
+ 11
315
+ 12
316
+ 20
317
+ 0
318
+ 7
319
+ 13
320
+ 64
321
+ 49
322
+ 14
323
+ 2
324
+ 15
325
+ 7
326
+ 15
327
+ 64
328
+ 7
329
+ 16
330
+ 64
331
+ 7
332
+ 17
333
+ 64
334
+ 7
335
+ 18
336
+ 64
337
+ 7
338
+ 19
339
+ 64
340
+ 35
341
+ 5
342
+ 38
343
+ 20
344
+ 15
345
+ 45
346
+ 21
347
+ 22
348
+ 39
349
+ 6
350
+ 47
351
+ 101
352
+ 8
353
+ 7
354
+ 23
355
+ 63
356
+ 2
357
+ 49
358
+ 24
359
+ 1
360
+ 49
361
+ 25
362
+ 0
363
+ 38
364
+ 26
365
+ 15
366
+ 39
367
+ 26
368
+ 56
369
+ 27
370
+ 50
371
+ 28
372
+ 0
373
+ 38
374
+ 29
375
+ 15
376
+ 5
377
+ 7
378
+ 30
379
+ 47
380
+ 49
381
+ 31
382
+ 1
383
+ 11
384
+ I
385
+ 6
386
+ I
387
+ 1
388
+ I
389
+ 0
390
+ I
391
+ 0
392
+ n
393
+ p
394
+ 32
395
+ x
396
+ 18
397
+ create_sprite_temp
398
+ x
399
+ 8
400
+ StringIO
401
+ n
402
+ x
403
+ 3
404
+ new
405
+ x
406
+ 8
407
+ allocate
408
+ s
409
+ 14
410
+ images_path =
411
+ x
412
+ 16
413
+ @images_src_path
414
+ x
415
+ 7
416
+ inspect
417
+ x
418
+ 4
419
+ to_s
420
+ s
421
+ 1
422
+
423
+
424
+ x
425
+ 10
426
+ initialize
427
+ x
428
+ 7
429
+ Compass
430
+ n
431
+ s
432
+ 13
433
+ sprite_config
434
+ x
435
+ 17
436
+ add_configuration
437
+ s
438
+ 9
439
+ large.png
440
+ s
441
+ 16
442
+ large_square.png
443
+ s
444
+ 10
445
+ medium.png
446
+ s
447
+ 8
448
+ tall.png
449
+ s
450
+ 9
451
+ small.png
452
+ x
453
+ 10
454
+ @filenames
455
+ x
456
+ 3
457
+ Dir
458
+ n
459
+ s
460
+ 16
461
+ /image_row/*.png
462
+ x
463
+ 2
464
+ []
465
+ x
466
+ 4
467
+ sort
468
+ x
469
+ 12
470
+ @image_files
471
+ M
472
+ 1
473
+ p
474
+ 2
475
+ x
476
+ 9
477
+ for_block
478
+ t
479
+ n
480
+ x
481
+ 5
482
+ setup
483
+ i
484
+ 73
485
+ 57
486
+ 19
487
+ 0
488
+ 15
489
+ 20
490
+ 0
491
+ 39
492
+ 0
493
+ 47
494
+ 101
495
+ 1
496
+ 7
497
+ 2
498
+ 63
499
+ 2
500
+ 7
501
+ 3
502
+ 64
503
+ 49
504
+ 4
505
+ 2
506
+ 15
507
+ 45
508
+ 5
509
+ 6
510
+ 43
511
+ 7
512
+ 43
513
+ 8
514
+ 43
515
+ 9
516
+ 13
517
+ 71
518
+ 10
519
+ 47
520
+ 9
521
+ 59
522
+ 47
523
+ 49
524
+ 11
525
+ 0
526
+ 13
527
+ 1
528
+ 20
529
+ 0
530
+ 44
531
+ 43
532
+ 12
533
+ 78
534
+ 49
535
+ 13
536
+ 1
537
+ 47
538
+ 49
539
+ 14
540
+ 3
541
+ 15
542
+ 8
543
+ 72
544
+ 1
545
+ 20
546
+ 0
547
+ 44
548
+ 43
549
+ 12
550
+ 78
551
+ 49
552
+ 13
553
+ 1
554
+ 49
555
+ 10
556
+ 3
557
+ 11
558
+ I
559
+ 8
560
+ I
561
+ 1
562
+ I
563
+ 1
564
+ I
565
+ 1
566
+ n
567
+ p
568
+ 15
569
+ x
570
+ 16
571
+ @images_src_path
572
+ x
573
+ 4
574
+ to_s
575
+ s
576
+ 1
577
+ /
578
+ s
579
+ 0
580
+
581
+ x
582
+ 5
583
+ gsub!
584
+ x
585
+ 7
586
+ Compass
587
+ n
588
+ x
589
+ 14
590
+ SassExtensions
591
+ x
592
+ 7
593
+ Sprites
594
+ x
595
+ 5
596
+ Image
597
+ x
598
+ 3
599
+ new
600
+ x
601
+ 8
602
+ allocate
603
+ x
604
+ 4
605
+ Hash
606
+ x
607
+ 16
608
+ new_from_literal
609
+ x
610
+ 10
611
+ initialize
612
+ p
613
+ 7
614
+ I
615
+ 0
616
+ I
617
+ b
618
+ I
619
+ 4
620
+ I
621
+ c
622
+ I
623
+ 16
624
+ I
625
+ d
626
+ I
627
+ 49
628
+ x
629
+ 68
630
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
631
+ p
632
+ 1
633
+ x
634
+ 3
635
+ img
636
+ x
637
+ 3
638
+ map
639
+ x
640
+ 7
641
+ @images
642
+ I
643
+ 3e8
644
+ x
645
+ 9
646
+ image_row
647
+ p
648
+ 17
649
+ I
650
+ -1
651
+ I
652
+ 5
653
+ I
654
+ 0
655
+ I
656
+ 6
657
+ I
658
+ 4
659
+ I
660
+ 7
661
+ I
662
+ 3b
663
+ I
664
+ 8
665
+ I
666
+ 47
667
+ I
668
+ 9
669
+ I
670
+ 5b
671
+ I
672
+ a
673
+ I
674
+ 70
675
+ I
676
+ b
677
+ I
678
+ 7a
679
+ I
680
+ f
681
+ I
682
+ 82
683
+ x
684
+ 68
685
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
686
+ p
687
+ 1
688
+ x
689
+ 4
690
+ file
691
+ x
692
+ 17
693
+ method_visibility
694
+ x
695
+ 15
696
+ add_defn_method
697
+ x
698
+ 8
699
+ teardown
700
+ M
701
+ 1
702
+ n
703
+ n
704
+ x
705
+ 8
706
+ teardown
707
+ i
708
+ 4
709
+ 5
710
+ 48
711
+ 0
712
+ 11
713
+ I
714
+ 1
715
+ I
716
+ 0
717
+ I
718
+ 0
719
+ I
720
+ 0
721
+ n
722
+ p
723
+ 1
724
+ x
725
+ 16
726
+ clean_up_sprites
727
+ p
728
+ 5
729
+ I
730
+ -1
731
+ I
732
+ 12
733
+ I
734
+ 0
735
+ I
736
+ 13
737
+ I
738
+ 4
739
+ x
740
+ 68
741
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
742
+ p
743
+ 0
744
+ x
745
+ 9
746
+ image_row
747
+ M
748
+ 1
749
+ n
750
+ n
751
+ x
752
+ 9
753
+ image_row
754
+ i
755
+ 37
756
+ 45
757
+ 0
758
+ 1
759
+ 43
760
+ 2
761
+ 43
762
+ 3
763
+ 43
764
+ 4
765
+ 13
766
+ 71
767
+ 5
768
+ 47
769
+ 9
770
+ 29
771
+ 47
772
+ 49
773
+ 6
774
+ 0
775
+ 13
776
+ 20
777
+ 0
778
+ 47
779
+ 49
780
+ 7
781
+ 1
782
+ 15
783
+ 8
784
+ 34
785
+ 20
786
+ 0
787
+ 49
788
+ 5
789
+ 1
790
+ 38
791
+ 8
792
+ 11
793
+ I
794
+ 4
795
+ I
796
+ 1
797
+ I
798
+ 1
799
+ I
800
+ 1
801
+ n
802
+ p
803
+ 9
804
+ x
805
+ 7
806
+ Compass
807
+ n
808
+ x
809
+ 14
810
+ SassExtensions
811
+ x
812
+ 7
813
+ Sprites
814
+ x
815
+ 8
816
+ ImageRow
817
+ x
818
+ 3
819
+ new
820
+ x
821
+ 8
822
+ allocate
823
+ x
824
+ 10
825
+ initialize
826
+ x
827
+ 10
828
+ @image_row
829
+ p
830
+ 5
831
+ I
832
+ -1
833
+ I
834
+ 16
835
+ I
836
+ 0
837
+ I
838
+ 17
839
+ I
840
+ 25
841
+ x
842
+ 68
843
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
844
+ p
845
+ 1
846
+ x
847
+ 3
848
+ max
849
+ x
850
+ 12
851
+ populate_row
852
+ M
853
+ 1
854
+ n
855
+ n
856
+ x
857
+ 12
858
+ populate_row
859
+ i
860
+ 8
861
+ 39
862
+ 0
863
+ 56
864
+ 1
865
+ 50
866
+ 2
867
+ 0
868
+ 11
869
+ I
870
+ 2
871
+ I
872
+ 0
873
+ I
874
+ 0
875
+ I
876
+ 0
877
+ n
878
+ p
879
+ 3
880
+ x
881
+ 7
882
+ @images
883
+ M
884
+ 1
885
+ p
886
+ 2
887
+ x
888
+ 9
889
+ for_block
890
+ t
891
+ n
892
+ x
893
+ 12
894
+ populate_row
895
+ i
896
+ 17
897
+ 57
898
+ 19
899
+ 0
900
+ 15
901
+ 5
902
+ 39
903
+ 0
904
+ 20
905
+ 0
906
+ 49
907
+ 1
908
+ 1
909
+ 47
910
+ 49
911
+ 2
912
+ 1
913
+ 11
914
+ I
915
+ 5
916
+ I
917
+ 1
918
+ I
919
+ 1
920
+ I
921
+ 1
922
+ n
923
+ p
924
+ 3
925
+ x
926
+ 10
927
+ @image_row
928
+ x
929
+ 3
930
+ add
931
+ x
932
+ 6
933
+ assert
934
+ p
935
+ 5
936
+ I
937
+ 0
938
+ I
939
+ 1b
940
+ I
941
+ 4
942
+ I
943
+ 1c
944
+ I
945
+ 11
946
+ x
947
+ 68
948
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
949
+ p
950
+ 1
951
+ x
952
+ 5
953
+ image
954
+ x
955
+ 4
956
+ each
957
+ p
958
+ 5
959
+ I
960
+ -1
961
+ I
962
+ 1a
963
+ I
964
+ 0
965
+ I
966
+ 1b
967
+ I
968
+ 8
969
+ x
970
+ 68
971
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
972
+ p
973
+ 0
974
+ s
975
+ 48
976
+ should return false if image will not fit in row
977
+ M
978
+ 1
979
+ p
980
+ 2
981
+ x
982
+ 9
983
+ for_block
984
+ t
985
+ n
986
+ x
987
+ 12
988
+ ImageRowTest
989
+ i
990
+ 100
991
+ 5
992
+ 4
993
+ 100
994
+ 47
995
+ 49
996
+ 0
997
+ 1
998
+ 15
999
+ 45
1000
+ 1
1001
+ 2
1002
+ 43
1003
+ 3
1004
+ 43
1005
+ 4
1006
+ 43
1007
+ 5
1008
+ 13
1009
+ 71
1010
+ 6
1011
+ 47
1012
+ 9
1013
+ 55
1014
+ 47
1015
+ 49
1016
+ 7
1017
+ 0
1018
+ 13
1019
+ 1
1020
+ 45
1021
+ 8
1022
+ 9
1023
+ 7
1024
+ 10
1025
+ 64
1026
+ 7
1027
+ 11
1028
+ 64
1029
+ 49
1030
+ 12
1031
+ 2
1032
+ 44
1033
+ 43
1034
+ 13
1035
+ 78
1036
+ 49
1037
+ 14
1038
+ 1
1039
+ 47
1040
+ 49
1041
+ 15
1042
+ 3
1043
+ 15
1044
+ 8
1045
+ 78
1046
+ 1
1047
+ 45
1048
+ 8
1049
+ 16
1050
+ 7
1051
+ 10
1052
+ 64
1053
+ 7
1054
+ 11
1055
+ 64
1056
+ 49
1057
+ 12
1058
+ 2
1059
+ 44
1060
+ 43
1061
+ 13
1062
+ 78
1063
+ 49
1064
+ 14
1065
+ 1
1066
+ 49
1067
+ 6
1068
+ 3
1069
+ 19
1070
+ 0
1071
+ 15
1072
+ 5
1073
+ 39
1074
+ 17
1075
+ 20
1076
+ 0
1077
+ 49
1078
+ 18
1079
+ 1
1080
+ 10
1081
+ 94
1082
+ 2
1083
+ 8
1084
+ 95
1085
+ 3
1086
+ 47
1087
+ 49
1088
+ 19
1089
+ 1
1090
+ 11
1091
+ I
1092
+ 8
1093
+ I
1094
+ 1
1095
+ I
1096
+ 0
1097
+ I
1098
+ 0
1099
+ I
1100
+ -2
1101
+ p
1102
+ 20
1103
+ x
1104
+ 9
1105
+ image_row
1106
+ x
1107
+ 7
1108
+ Compass
1109
+ n
1110
+ x
1111
+ 14
1112
+ SassExtensions
1113
+ x
1114
+ 7
1115
+ Sprites
1116
+ x
1117
+ 5
1118
+ Image
1119
+ x
1120
+ 3
1121
+ new
1122
+ x
1123
+ 8
1124
+ allocate
1125
+ x
1126
+ 4
1127
+ File
1128
+ n
1129
+ s
1130
+ 9
1131
+ image_row
1132
+ s
1133
+ 9
1134
+ large.png
1135
+ x
1136
+ 4
1137
+ join
1138
+ x
1139
+ 4
1140
+ Hash
1141
+ x
1142
+ 16
1143
+ new_from_literal
1144
+ x
1145
+ 10
1146
+ initialize
1147
+ n
1148
+ x
1149
+ 10
1150
+ @image_row
1151
+ x
1152
+ 3
1153
+ add
1154
+ x
1155
+ 6
1156
+ assert
1157
+ p
1158
+ 7
1159
+ I
1160
+ 0
1161
+ I
1162
+ 21
1163
+ I
1164
+ 8
1165
+ I
1166
+ 22
1167
+ I
1168
+ 51
1169
+ I
1170
+ 23
1171
+ I
1172
+ 64
1173
+ x
1174
+ 68
1175
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
1176
+ p
1177
+ 1
1178
+ x
1179
+ 3
1180
+ img
1181
+ x
1182
+ 2
1183
+ it
1184
+ s
1185
+ 20
1186
+ should have 5 images
1187
+ M
1188
+ 1
1189
+ p
1190
+ 2
1191
+ x
1192
+ 9
1193
+ for_block
1194
+ t
1195
+ n
1196
+ x
1197
+ 12
1198
+ ImageRowTest
1199
+ i
1200
+ 20
1201
+ 5
1202
+ 48
1203
+ 0
1204
+ 15
1205
+ 5
1206
+ 4
1207
+ 5
1208
+ 39
1209
+ 1
1210
+ 49
1211
+ 2
1212
+ 0
1213
+ 49
1214
+ 3
1215
+ 0
1216
+ 47
1217
+ 49
1218
+ 4
1219
+ 2
1220
+ 11
1221
+ I
1222
+ 4
1223
+ I
1224
+ 0
1225
+ I
1226
+ 0
1227
+ I
1228
+ 0
1229
+ I
1230
+ -2
1231
+ p
1232
+ 5
1233
+ x
1234
+ 12
1235
+ populate_row
1236
+ x
1237
+ 10
1238
+ @image_row
1239
+ x
1240
+ 6
1241
+ images
1242
+ x
1243
+ 4
1244
+ size
1245
+ x
1246
+ 12
1247
+ assert_equal
1248
+ p
1249
+ 5
1250
+ I
1251
+ 0
1252
+ I
1253
+ 27
1254
+ I
1255
+ 4
1256
+ I
1257
+ 28
1258
+ I
1259
+ 14
1260
+ x
1261
+ 68
1262
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
1263
+ p
1264
+ 0
1265
+ s
1266
+ 29
1267
+ should return max image width
1268
+ M
1269
+ 1
1270
+ p
1271
+ 2
1272
+ x
1273
+ 9
1274
+ for_block
1275
+ t
1276
+ n
1277
+ x
1278
+ 12
1279
+ ImageRowTest
1280
+ i
1281
+ 17
1282
+ 5
1283
+ 48
1284
+ 0
1285
+ 15
1286
+ 5
1287
+ 7
1288
+ 1
1289
+ 39
1290
+ 2
1291
+ 49
1292
+ 3
1293
+ 0
1294
+ 47
1295
+ 49
1296
+ 4
1297
+ 2
1298
+ 11
1299
+ I
1300
+ 4
1301
+ I
1302
+ 0
1303
+ I
1304
+ 0
1305
+ I
1306
+ 0
1307
+ I
1308
+ -2
1309
+ p
1310
+ 5
1311
+ x
1312
+ 12
1313
+ populate_row
1314
+ I
1315
+ 190
1316
+ x
1317
+ 10
1318
+ @image_row
1319
+ x
1320
+ 5
1321
+ width
1322
+ x
1323
+ 12
1324
+ assert_equal
1325
+ p
1326
+ 5
1327
+ I
1328
+ 0
1329
+ I
1330
+ 2c
1331
+ I
1332
+ 4
1333
+ I
1334
+ 2d
1335
+ I
1336
+ 11
1337
+ x
1338
+ 68
1339
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
1340
+ p
1341
+ 0
1342
+ s
1343
+ 30
1344
+ should return max image height
1345
+ M
1346
+ 1
1347
+ p
1348
+ 2
1349
+ x
1350
+ 9
1351
+ for_block
1352
+ t
1353
+ n
1354
+ x
1355
+ 12
1356
+ ImageRowTest
1357
+ i
1358
+ 17
1359
+ 5
1360
+ 48
1361
+ 0
1362
+ 15
1363
+ 5
1364
+ 4
1365
+ 40
1366
+ 39
1367
+ 1
1368
+ 49
1369
+ 2
1370
+ 0
1371
+ 47
1372
+ 49
1373
+ 3
1374
+ 2
1375
+ 11
1376
+ I
1377
+ 4
1378
+ I
1379
+ 0
1380
+ I
1381
+ 0
1382
+ I
1383
+ 0
1384
+ I
1385
+ -2
1386
+ p
1387
+ 4
1388
+ x
1389
+ 12
1390
+ populate_row
1391
+ x
1392
+ 10
1393
+ @image_row
1394
+ x
1395
+ 6
1396
+ height
1397
+ x
1398
+ 12
1399
+ assert_equal
1400
+ p
1401
+ 5
1402
+ I
1403
+ 0
1404
+ I
1405
+ 31
1406
+ I
1407
+ 4
1408
+ I
1409
+ 32
1410
+ I
1411
+ 11
1412
+ x
1413
+ 68
1414
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
1415
+ p
1416
+ 0
1417
+ s
1418
+ 32
1419
+ should have an efficiency rating
1420
+ M
1421
+ 1
1422
+ p
1423
+ 2
1424
+ x
1425
+ 9
1426
+ for_block
1427
+ t
1428
+ n
1429
+ x
1430
+ 12
1431
+ ImageRowTest
1432
+ i
1433
+ 25
1434
+ 5
1435
+ 48
1436
+ 0
1437
+ 15
1438
+ 5
1439
+ 79
1440
+ 7
1441
+ 1
1442
+ 7
1443
+ 2
1444
+ 49
1445
+ 3
1446
+ 1
1447
+ 82
1448
+ 4
1449
+ 39
1450
+ 5
1451
+ 49
1452
+ 6
1453
+ 0
1454
+ 47
1455
+ 49
1456
+ 7
1457
+ 2
1458
+ 11
1459
+ I
1460
+ 5
1461
+ I
1462
+ 0
1463
+ I
1464
+ 0
1465
+ I
1466
+ 0
1467
+ I
1468
+ -2
1469
+ p
1470
+ 8
1471
+ x
1472
+ 12
1473
+ populate_row
1474
+ d
1475
+ +0.566406250000000000000000000000000000000000000000000000 10
1476
+ d
1477
+ +0.976562500000000000000000000000000000000000000000000000 10
1478
+ x
1479
+ 1
1480
+ /
1481
+ x
1482
+ 1
1483
+ -
1484
+ x
1485
+ 10
1486
+ @image_row
1487
+ x
1488
+ 10
1489
+ efficiency
1490
+ x
1491
+ 12
1492
+ assert_equal
1493
+ p
1494
+ 5
1495
+ I
1496
+ 0
1497
+ I
1498
+ 36
1499
+ I
1500
+ 4
1501
+ I
1502
+ 37
1503
+ I
1504
+ 19
1505
+ x
1506
+ 68
1507
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
1508
+ p
1509
+ 0
1510
+ p
1511
+ 21
1512
+ I
1513
+ 2
1514
+ I
1515
+ 4
1516
+ I
1517
+ b
1518
+ I
1519
+ 5
1520
+ I
1521
+ 19
1522
+ I
1523
+ 12
1524
+ I
1525
+ 27
1526
+ I
1527
+ 16
1528
+ I
1529
+ 35
1530
+ I
1531
+ 1a
1532
+ I
1533
+ 43
1534
+ I
1535
+ 20
1536
+ I
1537
+ 4e
1538
+ I
1539
+ 26
1540
+ I
1541
+ 59
1542
+ I
1543
+ 2b
1544
+ I
1545
+ 64
1546
+ I
1547
+ 30
1548
+ I
1549
+ 6f
1550
+ I
1551
+ 35
1552
+ I
1553
+ 7a
1554
+ x
1555
+ 68
1556
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
1557
+ p
1558
+ 0
1559
+ x
1560
+ 13
1561
+ attach_method
1562
+ p
1563
+ 5
1564
+ I
1565
+ 0
1566
+ I
1567
+ 1
1568
+ I
1569
+ 9
1570
+ I
1571
+ 3
1572
+ I
1573
+ 2c
1574
+ x
1575
+ 68
1576
+ /Users/crispee/Projects/compass/test/units/sprites/image_row_test.rb
1577
+ p
1578
+ 0