compass 0.12.alpha.0 → 0.12.alpha.1

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 (206) hide show
  1. data/Rakefile +1 -0
  2. data/VERSION.yml +1 -1
  3. data/bin/compass +1 -1
  4. data/bin/compass.compiled.rbc +707 -0
  5. data/examples/downloader.rb +3 -2
  6. data/examples/ninesixty/bootstrap.rb +1 -1
  7. data/features/command_line.feature +17 -17
  8. data/features/extensions.feature +6 -0
  9. data/features/step_definitions/command_line_steps.rb +2 -0
  10. data/frameworks/compass/stylesheets/compass/_support.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +7 -24
  12. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +0 -15
  13. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +12 -12
  14. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +6 -20
  15. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +38 -24
  16. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  17. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  18. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  19. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  20. data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +29 -6
  21. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  22. data/lib/compass.rbc +42 -36
  23. data/lib/compass/actions.rb +0 -1
  24. data/lib/compass/actions.rbc +244 -85
  25. data/lib/compass/app_integration.rbc +28 -20
  26. data/lib/compass/app_integration/merb.rbc +8 -4
  27. data/lib/compass/app_integration/rails.rbc +664 -148
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +23 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +8 -10
  30. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  31. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  32. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  33. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  34. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  35. data/lib/compass/browser_support.rbc +35 -23
  36. data/lib/compass/commands.rbc +307 -0
  37. data/lib/compass/commands/base.rbc +1044 -0
  38. data/lib/compass/commands/clean_project.rbc +1856 -0
  39. data/lib/compass/commands/create_project.rbc +2691 -0
  40. data/lib/compass/commands/default.rbc +1677 -0
  41. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  42. data/lib/compass/commands/help.rbc +1921 -0
  43. data/lib/compass/commands/imports.rbc +969 -0
  44. data/lib/compass/commands/installer_command.rbc +807 -0
  45. data/lib/compass/commands/interactive.rbc +1341 -0
  46. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  47. data/lib/compass/commands/print_version.rbc +2478 -0
  48. data/lib/compass/commands/project_base.rbc +2085 -0
  49. data/lib/compass/commands/project_stats.rb +7 -7
  50. data/lib/compass/commands/project_stats.rbc +4202 -0
  51. data/lib/compass/commands/registry.rbc +1350 -0
  52. data/lib/compass/commands/sprite.rbc +2212 -0
  53. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  54. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  55. data/lib/compass/commands/update_project.rbc +3002 -0
  56. data/lib/compass/commands/validate_project.rbc +1686 -0
  57. data/lib/compass/commands/watch_project.rbc +4155 -0
  58. data/lib/compass/commands/write_configuration.rbc +2896 -0
  59. data/lib/compass/compiler.rb +3 -0
  60. data/lib/compass/compiler.rbc +591 -398
  61. data/lib/compass/configuration.rbc +134 -78
  62. data/lib/compass/configuration/adapters.rbc +98 -40
  63. data/lib/compass/configuration/comments.rbc +132 -51
  64. data/lib/compass/configuration/data.rb +6 -0
  65. data/lib/compass/configuration/data.rbc +541 -551
  66. data/lib/compass/configuration/defaults.rbc +764 -189
  67. data/lib/compass/configuration/file_data.rbc +37 -125
  68. data/lib/compass/configuration/helpers.rb +1 -0
  69. data/lib/compass/configuration/helpers.rbc +433 -153
  70. data/lib/compass/configuration/inheritance.rb +2 -0
  71. data/lib/compass/configuration/inheritance.rbc +412 -165
  72. data/lib/compass/configuration/paths.rbc +9 -9
  73. data/lib/compass/configuration/serialization.rbc +151 -84
  74. data/lib/compass/dependencies.rbc +16 -4
  75. data/lib/compass/errors.rbc +5 -5
  76. data/lib/compass/exec.rbc +500 -0
  77. data/lib/compass/exec/command_option_parser.rbc +676 -0
  78. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  79. data/lib/compass/exec/helpers.rbc +758 -0
  80. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  81. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  82. data/lib/compass/frameworks.rb +10 -4
  83. data/lib/compass/frameworks.rbc +118 -66
  84. data/lib/compass/grid_builder.rbc +0 -0
  85. data/lib/compass/installers.rbc +152 -0
  86. data/lib/compass/installers/bare_installer.rbc +939 -0
  87. data/lib/compass/installers/base.rbc +4427 -0
  88. data/lib/compass/installers/manifest.rbc +3335 -0
  89. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  90. data/lib/compass/installers/template_context.rbc +1030 -0
  91. data/lib/compass/logger.rbc +2317 -0
  92. data/lib/compass/quick_cache.rbc +12 -8
  93. data/lib/compass/sass_extensions.rbc +8 -4
  94. data/lib/compass/sass_extensions/functions.rb +4 -2
  95. data/lib/compass/sass_extensions/functions.rbc +90 -57
  96. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  97. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  98. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  99. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  100. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  101. data/lib/compass/sass_extensions/functions/env.rb +5 -0
  102. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  103. data/lib/compass/sass_extensions/functions/font_files.rb +32 -3
  104. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  105. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  106. data/lib/compass/sass_extensions/functions/image_size.rb +19 -16
  107. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  108. data/lib/compass/sass_extensions/functions/inline_image.rb +1 -1
  109. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  110. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  111. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  112. data/lib/compass/sass_extensions/functions/sprites.rb +27 -4
  113. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  114. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  115. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  116. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  117. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  118. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  119. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  120. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  121. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  122. data/lib/compass/sass_extensions/sprites/image.rb +5 -5
  123. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  124. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  125. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  126. data/lib/compass/sass_extensions/sprites/layout_methods.rb +12 -8
  127. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  128. data/lib/compass/sass_extensions/sprites/row_fitter.rb +7 -1
  129. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  130. data/lib/compass/sass_extensions/sprites/sprite_map.rb +1 -1
  131. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  132. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +24 -4
  133. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  134. data/lib/compass/sprite_importer.rb +15 -80
  135. data/lib/compass/sprite_importer.rbc +1125 -1495
  136. data/lib/compass/sprite_importer/binding.rb +11 -0
  137. data/lib/compass/sprite_importer/content.erb +81 -0
  138. data/lib/compass/util.rbc +19 -11
  139. data/lib/compass/version.rbc +53 -25
  140. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  141. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  142. data/test/fixtures/fonts/bgrove.base64.txt +1 -0
  143. data/test/fixtures/fonts/bgrove.ttf +0 -0
  144. data/test/fixtures/sprites/public/images/bool/false.png +0 -0
  145. data/test/fixtures/sprites/public/images/bool/true.png +0 -0
  146. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -2
  147. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -2
  148. data/test/fixtures/stylesheets/compass/css/border_radius.css +6 -9
  149. data/test/fixtures/stylesheets/compass/css/box.css +0 -19
  150. data/test/fixtures/stylesheets/compass/css/box_shadow.css +3 -6
  151. data/test/fixtures/stylesheets/compass/css/columns.css +8 -16
  152. data/test/fixtures/stylesheets/compass/css/grid_background.css +4 -8
  153. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  154. data/test/fixtures/stylesheets/compass/css/pie.css +2 -3
  155. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  156. data/test/fixtures/stylesheets/compass/css/sprites.css +1 -1
  157. data/test/fixtures/stylesheets/compass/css/text_shadow.css +0 -3
  158. data/test/fixtures/stylesheets/compass/css/transform.css +28 -92
  159. data/test/fixtures/stylesheets/compass/css/transition.css +11 -0
  160. data/test/fixtures/stylesheets/compass/css/user-interface.css +4 -0
  161. data/test/fixtures/stylesheets/compass/images/{flag-s8c3c755a68.png → flag-s8f1e8fdb9b.png} +0 -0
  162. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +0 -1
  163. data/test/fixtures/stylesheets/compass/sass/transition.scss +4 -0
  164. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  165. data/test/fixtures/stylesheets/envtest/config.rb +9 -0
  166. data/test/fixtures/stylesheets/envtest/css/env.css +2 -0
  167. data/test/fixtures/stylesheets/envtest/sass/env.scss +3 -0
  168. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  169. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  170. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  171. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  172. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  173. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  174. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  175. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  176. data/test/helpers/command_line.rbc +2820 -0
  177. data/test/helpers/diff.rbc +1104 -0
  178. data/test/helpers/io.rbc +962 -0
  179. data/test/helpers/rails.rbc +1116 -0
  180. data/test/helpers/test_case.rbc +1255 -0
  181. data/test/integrations/compass_test.rb +24 -2
  182. data/test/integrations/compass_test.rbc +6589 -0
  183. data/test/integrations/rails_integration_test.rbc +1342 -0
  184. data/test/integrations/sprites_test.rb +123 -25
  185. data/test/integrations/sprites_test.rbc +6192 -0
  186. data/test/test_helper.rb +7 -5
  187. data/test/test_helper.rbc +1694 -0
  188. data/test/tmp/compass_rails/public/images/{selectors-sef52c5c63a.png → selectors-s4c703bbc05.png} +0 -0
  189. data/test/units/actions_test.rbc +644 -0
  190. data/test/units/command_line_test.rbc +1532 -0
  191. data/test/units/compass_png_test.rbc +0 -0
  192. data/test/units/configuration_test.rbc +3833 -0
  193. data/test/units/rails_configuration_test.rbc +1032 -0
  194. data/test/units/sass_extensions_test.rb +31 -0
  195. data/test/units/sass_extensions_test.rbc +3586 -0
  196. data/test/units/sprites/engine_test.rbc +962 -0
  197. data/test/units/sprites/image_row_test.rbc +1578 -0
  198. data/test/units/sprites/image_test.rb +3 -3
  199. data/test/units/sprites/image_test.rbc +2836 -0
  200. data/test/units/sprites/importer_test.rb +6 -0
  201. data/test/units/sprites/importer_test.rbc +2620 -0
  202. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  203. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  204. data/test/units/sprites/sprite_map_test.rb +19 -6
  205. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  206. metadata +180 -54
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -252,33 +252,42 @@ x
252
252
  7
253
253
  Sprites
254
254
  i
255
- 28
255
+ 37
256
256
  5
257
257
  66
258
258
  99
259
259
  7
260
260
  0
261
- 65
262
- 49
261
+ 45
263
262
  1
264
263
  2
264
+ 43
265
+ 3
266
+ 43
267
+ 4
268
+ 43
269
+ 5
270
+ 65
271
+ 49
272
+ 6
273
+ 3
265
274
  13
266
275
  99
267
276
  12
268
277
  7
269
- 2
278
+ 7
270
279
  12
271
280
  7
272
- 3
281
+ 8
273
282
  12
274
283
  65
275
284
  12
276
285
  49
277
- 4
286
+ 9
278
287
  4
279
288
  15
280
289
  49
281
- 2
290
+ 7
282
291
  0
283
292
  11
284
293
  I
@@ -291,16 +300,29 @@ I
291
300
  0
292
301
  n
293
302
  p
294
- 5
303
+ 10
295
304
  x
296
305
  15
297
306
  ChunkyPngEngine
298
307
  x
299
- 11
300
- open_module
308
+ 7
309
+ Compass
310
+ n
301
311
  x
302
- 15
303
- __module_init__
312
+ 14
313
+ SassExtensions
314
+ x
315
+ 7
316
+ Sprites
317
+ x
318
+ 6
319
+ Engine
320
+ x
321
+ 10
322
+ open_class
323
+ x
324
+ 14
325
+ __class_init__
304
326
  M
305
327
  1
306
328
  n
@@ -309,7 +331,7 @@ x
309
331
  15
310
332
  ChunkyPngEngine
311
333
  i
312
- 16
334
+ 30
313
335
  5
314
336
  66
315
337
  99
@@ -325,6 +347,20 @@ i
325
347
  49
326
348
  3
327
349
  4
350
+ 15
351
+ 99
352
+ 7
353
+ 4
354
+ 7
355
+ 5
356
+ 65
357
+ 67
358
+ 49
359
+ 2
360
+ 0
361
+ 49
362
+ 3
363
+ 4
328
364
  11
329
365
  I
330
366
  5
@@ -336,7 +372,7 @@ I
336
372
  0
337
373
  n
338
374
  p
339
- 4
375
+ 6
340
376
  x
341
377
  16
342
378
  construct_sprite
@@ -348,7 +384,7 @@ x
348
384
  16
349
385
  construct_sprite
350
386
  i
351
- 67
387
+ 64
352
388
  45
353
389
  0
354
390
  1
@@ -401,32 +437,29 @@ i
401
437
  49
402
438
  3
403
439
  3
404
- 19
405
- 0
440
+ 38
441
+ 12
406
442
  15
407
443
  5
408
444
  48
409
- 12
410
- 56
411
445
  13
412
- 50
446
+ 56
413
447
  14
414
- 0
448
+ 50
415
449
  15
416
- 20
417
450
  0
418
451
  11
419
452
  I
420
- 6
453
+ 5
421
454
  I
422
- 1
455
+ 0
423
456
  I
424
457
  0
425
458
  I
426
459
  0
427
460
  n
428
461
  p
429
- 15
462
+ 16
430
463
  x
431
464
  9
432
465
  ChunkyPNG
@@ -458,6 +491,9 @@ x
458
491
  initialize
459
492
  n
460
493
  x
494
+ 7
495
+ @canvas
496
+ x
461
497
  6
462
498
  images
463
499
  M
@@ -506,57 +542,57 @@ i
506
542
  7
507
543
  9
508
544
  52
509
- 21
510
- 1
511
- 0
545
+ 5
546
+ 48
547
+ 8
512
548
  20
513
549
  1
514
550
  20
515
551
  0
516
552
  49
517
- 8
553
+ 9
518
554
  0
519
555
  20
520
556
  0
521
557
  49
522
- 9
558
+ 10
523
559
  0
524
560
  49
525
- 10
561
+ 11
526
562
  3
527
563
  8
528
564
  177
529
565
  20
530
566
  0
531
567
  49
532
- 8
568
+ 9
533
569
  0
534
570
  20
535
571
  0
536
572
  49
537
- 8
573
+ 9
538
574
  0
539
575
  20
540
576
  0
541
577
  49
542
- 11
578
+ 12
543
579
  0
544
580
  49
545
- 12
581
+ 13
546
582
  1
547
583
  49
548
- 13
584
+ 14
549
585
  0
550
586
  20
551
587
  0
552
588
  49
553
- 11
589
+ 12
554
590
  0
555
591
  49
556
- 14
592
+ 15
557
593
  1
558
594
  82
559
- 15
595
+ 16
560
596
  19
561
597
  2
562
598
  15
@@ -564,9 +600,9 @@ i
564
600
  2
565
601
  5
566
602
  48
567
- 11
603
+ 12
568
604
  84
569
- 16
605
+ 17
570
606
  9
571
607
  176
572
608
  26
@@ -576,9 +612,9 @@ i
576
612
  29
577
613
  132
578
614
  0
579
- 21
580
- 1
581
- 0
615
+ 5
616
+ 48
617
+ 8
582
618
  20
583
619
  1
584
620
  20
@@ -586,10 +622,10 @@ i
586
622
  20
587
623
  0
588
624
  49
589
- 9
625
+ 10
590
626
  0
591
627
  49
592
- 10
628
+ 11
593
629
  3
594
630
  15
595
631
  20
@@ -597,10 +633,10 @@ i
597
633
  20
598
634
  0
599
635
  49
600
- 11
636
+ 12
601
637
  0
602
638
  81
603
- 17
639
+ 18
604
640
  19
605
641
  2
606
642
  30
@@ -614,12 +650,12 @@ i
614
650
  13
615
651
  45
616
652
  0
617
- 18
618
- 43
619
653
  19
654
+ 43
655
+ 20
620
656
  12
621
657
  49
622
- 20
658
+ 21
623
659
  1
624
660
  10
625
661
  151
@@ -662,7 +698,7 @@ I
662
698
  1
663
699
  n
664
700
  p
665
- 21
701
+ 22
666
702
  x
667
703
  9
668
704
  ChunkyPNG
@@ -686,6 +722,9 @@ x
686
722
  2
687
723
  ==
688
724
  x
725
+ 6
726
+ canvas
727
+ x
689
728
  4
690
729
  left
691
730
  x
@@ -723,52 +762,60 @@ x
723
762
  3
724
763
  ===
725
764
  p
726
- 21
765
+ 25
727
766
  I
728
767
  0
729
768
  I
730
- f
769
+ e
731
770
  I
732
771
  4
733
772
  I
734
- 10
773
+ f
735
774
  I
736
775
  14
737
776
  I
738
- 11
777
+ 10
739
778
  I
740
779
  20
741
780
  I
742
- 12
781
+ 11
743
782
  I
744
783
  34
745
784
  I
746
- 14
785
+ 13
747
786
  I
748
787
  56
749
788
  I
750
- 15
789
+ 14
751
790
  I
752
791
  5f
753
792
  I
754
- 17
793
+ 16
755
794
  I
756
795
  76
757
796
  I
758
- 18
797
+ 17
798
+ I
799
+ 84
800
+ I
801
+ 0
759
802
  I
760
803
  89
761
804
  I
762
- 19
805
+ 18
763
806
  I
764
807
  98
765
808
  I
766
- 1a
809
+ 19
810
+ I
811
+ a9
812
+ I
813
+ 0
767
814
  I
768
815
  b2
769
816
  x
770
- 94
771
- /Users/chris/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
817
+ 96
818
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
772
819
  p
773
820
  3
774
821
  x
@@ -784,50 +831,161 @@ x
784
831
  4
785
832
  each
786
833
  p
787
- 9
834
+ 7
788
835
  I
789
836
  -1
790
837
  I
791
- d
838
+ c
792
839
  I
793
840
  0
794
841
  I
795
- e
842
+ d
796
843
  I
797
844
  37
798
845
  I
799
- f
846
+ e
800
847
  I
801
848
  40
802
- I
803
- 1f
804
- I
805
- 43
806
849
  x
807
- 94
808
- /Users/chris/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
850
+ 96
851
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
809
852
  p
810
- 1
811
- x
812
- 10
813
- output_png
853
+ 0
814
854
  x
815
855
  17
816
856
  method_visibility
817
857
  x
818
858
  15
819
859
  add_defn_method
820
- p
860
+ x
861
+ 4
862
+ save
863
+ M
864
+ 1
865
+ n
866
+ n
867
+ x
868
+ 4
869
+ save
870
+ i
871
+ 33
872
+ 5
873
+ 48
874
+ 0
875
+ 49
876
+ 1
877
+ 0
878
+ 9
879
+ 13
880
+ 5
881
+ 48
882
+ 2
883
+ 8
884
+ 14
885
+ 1
886
+ 15
887
+ 5
888
+ 48
889
+ 0
890
+ 20
891
+ 0
892
+ 45
821
893
  3
822
- I
894
+ 4
895
+ 49
896
+ 5
897
+ 0
898
+ 49
899
+ 6
900
+ 0
901
+ 49
902
+ 7
823
903
  2
904
+ 11
905
+ I
906
+ 4
907
+ I
908
+ 1
909
+ I
910
+ 1
911
+ I
912
+ 1
913
+ n
914
+ p
915
+ 8
916
+ x
917
+ 6
918
+ canvas
919
+ x
920
+ 4
921
+ nil?
922
+ x
923
+ 16
924
+ construct_sprite
925
+ x
926
+ 7
927
+ Compass
928
+ n
929
+ x
930
+ 13
931
+ configuration
932
+ x
933
+ 18
934
+ chunky_png_options
935
+ x
936
+ 4
937
+ save
938
+ p
939
+ 13
940
+ I
941
+ -1
942
+ I
943
+ 20
944
+ I
945
+ 0
946
+ I
947
+ 21
948
+ I
949
+ 8
950
+ I
951
+ 22
824
952
  I
825
953
  d
826
954
  I
955
+ 21
956
+ I
957
+ e
958
+ I
959
+ 0
960
+ I
961
+ f
962
+ I
963
+ 25
964
+ I
965
+ 21
966
+ x
967
+ 96
968
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
969
+ p
970
+ 1
971
+ x
972
+ 8
973
+ filename
974
+ p
975
+ 5
976
+ I
977
+ 2
978
+ I
979
+ c
980
+ I
827
981
  10
982
+ I
983
+ 20
984
+ I
985
+ 1e
828
986
  x
829
- 94
830
- /Users/chris/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
987
+ 96
988
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
831
989
  p
832
990
  0
833
991
  x
@@ -840,10 +998,10 @@ I
840
998
  I
841
999
  a
842
1000
  I
843
- 1c
1001
+ 25
844
1002
  x
845
- 94
846
- /Users/chris/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
1003
+ 96
1004
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
847
1005
  p
848
1006
  0
849
1007
  x
@@ -858,8 +1016,8 @@ I
858
1016
  I
859
1017
  1c
860
1018
  x
861
- 94
862
- /Users/chris/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
1019
+ 96
1020
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
863
1021
  p
864
1022
  0
865
1023
  x
@@ -874,20 +1032,24 @@ I
874
1032
  I
875
1033
  1c
876
1034
  x
877
- 94
878
- /Users/chris/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
1035
+ 96
1036
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
879
1037
  p
880
1038
  0
881
1039
  x
882
1040
  13
883
1041
  attach_method
884
1042
  p
885
- 9
1043
+ 13
886
1044
  I
887
1045
  0
888
1046
  I
889
1047
  2
890
1048
  I
1049
+ 12
1050
+ I
1051
+ 0
1052
+ I
891
1053
  17
892
1054
  I
893
1055
  3
@@ -896,13 +1058,17 @@ I
896
1058
  I
897
1059
  4
898
1060
  I
1061
+ 34
1062
+ I
1063
+ 0
1064
+ I
899
1065
  38
900
1066
  I
901
1067
  7
902
1068
  I
903
1069
  54
904
1070
  x
905
- 94
906
- /Users/chris/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
1071
+ 96
1072
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
907
1073
  p
908
1074
  0