compass 0.12.rc.1 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/VERSION.yml +1 -2
  2. data/bin/compass.compiled.rbc +707 -0
  3. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  4. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  5. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  6. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  7. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  8. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf +0 -0
  9. data/features/command_line.feature +14 -15
  10. data/frameworks/compass/stylesheets/compass/_css3.scss +1 -2
  11. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +4 -4
  12. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +59 -38
  13. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +3 -5
  14. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +12 -4
  15. data/frameworks/compass/stylesheets/compass/utilities/_sprites.scss +1 -0
  16. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss +1 -1
  17. data/lib/compass.rb +2 -0
  18. data/lib/compass.rbc +796 -0
  19. data/lib/compass/actions.rbc +2736 -0
  20. data/lib/compass/app_integration.rbc +836 -0
  21. data/lib/compass/app_integration/merb.rbc +106 -0
  22. data/lib/compass/app_integration/rails.rbc +2096 -0
  23. data/lib/compass/app_integration/rails/configuration_defaults.rbc +2430 -0
  24. data/lib/compass/app_integration/rails/installer.rbc +3677 -0
  25. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  26. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  27. data/lib/compass/app_integration/stand_alone/installer.rbc +1487 -0
  28. data/lib/compass/browser_support.rbc +1144 -0
  29. data/lib/compass/commands.rbc +307 -0
  30. data/lib/compass/commands/base.rbc +1044 -0
  31. data/lib/compass/commands/clean_project.rbc +1856 -0
  32. data/lib/compass/commands/create_project.rbc +2691 -0
  33. data/lib/compass/commands/default.rbc +1677 -0
  34. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  35. data/lib/compass/commands/help.rbc +1921 -0
  36. data/lib/compass/commands/imports.rbc +969 -0
  37. data/lib/compass/commands/installer_command.rbc +807 -0
  38. data/lib/compass/commands/interactive.rbc +1341 -0
  39. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  40. data/lib/compass/commands/print_version.rbc +2478 -0
  41. data/lib/compass/commands/project_base.rbc +2085 -0
  42. data/lib/compass/commands/project_stats.rb +28 -13
  43. data/lib/compass/commands/project_stats.rbc +4202 -0
  44. data/lib/compass/commands/registry.rbc +1350 -0
  45. data/lib/compass/commands/sprite.rbc +2212 -0
  46. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  47. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  48. data/lib/compass/commands/update_project.rbc +3002 -0
  49. data/lib/compass/commands/validate_project.rbc +1686 -0
  50. data/lib/compass/commands/watch_project.rbc +4155 -0
  51. data/lib/compass/commands/write_configuration.rbc +2896 -0
  52. data/lib/compass/compiler.rb +3 -1
  53. data/lib/compass/compiler.rbc +4913 -0
  54. data/lib/compass/configuration.rbc +1398 -0
  55. data/lib/compass/configuration/adapters.rbc +2088 -0
  56. data/lib/compass/configuration/comments.rbc +843 -0
  57. data/lib/compass/configuration/data.rbc +2633 -0
  58. data/lib/compass/configuration/defaults.rbc +3617 -0
  59. data/lib/compass/configuration/file_data.rbc +643 -0
  60. data/lib/compass/configuration/helpers.rb +1 -4
  61. data/lib/compass/configuration/helpers.rbc +3500 -0
  62. data/lib/compass/configuration/inheritance.rbc +3592 -0
  63. data/lib/compass/configuration/paths.rbc +412 -0
  64. data/lib/compass/configuration/serialization.rbc +1996 -0
  65. data/lib/compass/dependencies.rbc +232 -0
  66. data/lib/compass/errors.rbc +176 -0
  67. data/lib/compass/exec.rbc +500 -0
  68. data/lib/compass/exec/command_option_parser.rbc +676 -0
  69. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  70. data/lib/compass/exec/helpers.rbc +758 -0
  71. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  72. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  73. data/lib/compass/frameworks.rbc +3640 -0
  74. data/lib/compass/grid_builder.rbc +0 -0
  75. data/lib/compass/installers.rbc +152 -0
  76. data/lib/compass/installers/bare_installer.rbc +939 -0
  77. data/lib/compass/installers/base.rbc +4427 -0
  78. data/lib/compass/installers/manifest.rb +1 -1
  79. data/lib/compass/installers/manifest.rbc +3335 -0
  80. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  81. data/lib/compass/installers/template_context.rbc +1030 -0
  82. data/lib/compass/logger.rbc +2317 -0
  83. data/lib/compass/quick_cache.rbc +324 -0
  84. data/lib/compass/sass_extensions.rbc +213 -0
  85. data/lib/compass/sass_extensions/functions.rb +2 -2
  86. data/lib/compass/sass_extensions/functions.rbc +808 -0
  87. data/lib/compass/sass_extensions/functions/colors.rbc +1279 -0
  88. data/lib/compass/sass_extensions/functions/constants.rbc +1921 -0
  89. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1966 -0
  90. data/lib/compass/sass_extensions/functions/display.rbc +1227 -0
  91. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  92. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  93. data/lib/compass/sass_extensions/functions/font_files.rbc +821 -0
  94. data/lib/compass/sass_extensions/functions/gradient_support.rb +18 -7
  95. data/lib/compass/sass_extensions/functions/gradient_support.rbc +14147 -0
  96. data/lib/compass/sass_extensions/functions/image_size.rbc +3152 -0
  97. data/lib/compass/sass_extensions/functions/inline_image.rb +3 -1
  98. data/lib/compass/sass_extensions/functions/inline_image.rbc +1678 -0
  99. data/lib/compass/sass_extensions/functions/lists.rbc +2601 -0
  100. data/lib/compass/sass_extensions/functions/math.rb +63 -0
  101. data/lib/compass/sass_extensions/functions/selectors.rbc +1592 -0
  102. data/lib/compass/sass_extensions/functions/sprites.rbc +3792 -0
  103. data/lib/compass/sass_extensions/functions/trig.rbc +811 -0
  104. data/lib/compass/sass_extensions/functions/urls.rbc +5248 -0
  105. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  106. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2169 -0
  107. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +660 -0
  108. data/lib/compass/sass_extensions/sprites.rbc +363 -0
  109. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  110. data/lib/compass/sass_extensions/sprites/engines.rbc +662 -0
  111. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +1074 -0
  112. data/lib/compass/sass_extensions/sprites/image.rbc +2961 -0
  113. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  114. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  115. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  116. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  117. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +1991 -0
  118. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  119. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  120. data/lib/compass/sprite_importer.rbc +3573 -0
  121. data/lib/compass/stats.rb +5 -0
  122. data/lib/compass/util.rbc +552 -0
  123. data/lib/compass/version.rbc +1245 -0
  124. data/test/fixtures/stylesheets/compass/css/background-clip.css +1 -1
  125. data/test/fixtures/stylesheets/compass/css/gradients.css +19 -369
  126. data/test/fixtures/stylesheets/compass/css/transition.css +44 -1
  127. data/test/fixtures/stylesheets/compass/css/utilities.css +1 -1
  128. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +1 -1
  129. data/test/fixtures/stylesheets/compass/sass/gradients.sass +8 -143
  130. data/test/fixtures/stylesheets/compass/sass/transition.scss +7 -1
  131. data/test/helpers/command_line.rbc +2820 -0
  132. data/test/helpers/diff.rbc +1104 -0
  133. data/test/helpers/io.rbc +962 -0
  134. data/test/helpers/rails.rbc +1116 -0
  135. data/test/helpers/test_case.rbc +1255 -0
  136. data/test/integrations/compass_test.rbc +6589 -0
  137. data/test/integrations/rails_integration_test.rbc +1342 -0
  138. data/test/integrations/sprites_test.rb +4 -4
  139. data/test/integrations/sprites_test.rbc +6192 -0
  140. data/test/test_helper.rbc +1694 -0
  141. data/test/units/actions_test.rbc +644 -0
  142. data/test/units/command_line_test.rbc +1532 -0
  143. data/test/units/compass_module_test.rb +36 -0
  144. data/test/units/compass_png_test.rbc +0 -0
  145. data/test/units/configuration_test.rbc +3833 -0
  146. data/test/units/rails_configuration_test.rbc +1032 -0
  147. data/test/units/sass_extensions_test.rb +13 -1
  148. data/test/units/sass_extensions_test.rbc +3586 -0
  149. data/test/units/sprites/engine_test.rbc +962 -0
  150. data/test/units/sprites/image_row_test.rbc +1578 -0
  151. data/test/units/sprites/image_test.rbc +2836 -0
  152. data/test/units/sprites/importer_test.rb +1 -1
  153. data/test/units/sprites/importer_test.rbc +2620 -0
  154. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  155. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  156. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  157. metadata +161 -15
  158. data/frameworks/compass/stylesheets/compass/css3/_gradient.scss +0 -99
  159. data/lib/compass/sass_extensions/functions/trig.rb +0 -28
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3336159445
5
- prerelease: 5
4
+ hash: 47
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 12
9
- - rc
10
- - 1
11
- version: 0.12.rc.1
9
+ - 0
10
+ version: 0.12.0
12
11
  platform: ruby
13
12
  authors:
14
13
  - Chris Eppstein
@@ -20,7 +19,7 @@ autorequire:
20
19
  bindir: bin
21
20
  cert_chain: []
22
21
 
23
- date: 2012-02-02 00:00:00 -05:00
22
+ date: 2012-03-12 00:00:00 -07:00
24
23
  default_executable:
25
24
  dependencies:
26
25
  - !ruby/object:Gem::Dependency
@@ -83,6 +82,7 @@ files:
83
82
  - VERSION.yml
84
83
  - Rakefile
85
84
  - bin/compass
85
+ - bin/compass.compiled.rbc
86
86
  - examples/blueprint_default/config.rb
87
87
  - examples/blueprint_default/images/grid.png
88
88
  - examples/blueprint_default/index.html.haml
@@ -159,6 +159,7 @@ files:
159
159
  - examples/compass/images/emblem/symbolic-link.png
160
160
  - examples/compass/images/emblem/system.png
161
161
  - examples/compass/images/emblem/unreadable.png
162
+ - examples/compass/images/emblem-a043c4f148.png
162
163
  - examples/compass/images/flag/ad.png
163
164
  - examples/compass/images/flag/ae.png
164
165
  - examples/compass/images/flag/af.png
@@ -406,6 +407,8 @@ files:
406
407
  - examples/compass/images/flag/za.png
407
408
  - examples/compass/images/flag/zm.png
408
409
  - examples/compass/images/flag/zw.png
410
+ - examples/compass/images/flag-03c3b29b35.png
411
+ - examples/compass/images/flag-21cfbfbfc8.png
409
412
  - examples/compass/images/icon-chrome.png
410
413
  - examples/compass/images/icon-firefox.png
411
414
  - examples/compass/images/icon-ie.png
@@ -456,8 +459,11 @@ files:
456
459
  - examples/yui/templates.html.haml
457
460
  - examples/yui/test.jpg
458
461
  - examples/yui/typography.html.haml
462
+ - examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf
463
+ - examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf
459
464
  - examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
460
465
  - examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
466
+ - examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf
461
467
  - frameworks/blueprint/stylesheets/_blueprint.scss
462
468
  - frameworks/blueprint/stylesheets/blueprint/_buttons.scss
463
469
  - frameworks/blueprint/stylesheets/blueprint/_colors.scss
@@ -531,7 +537,6 @@ files:
531
537
  - frameworks/compass/stylesheets/compass/css3/_box.scss
532
538
  - frameworks/compass/stylesheets/compass/css3/_columns.scss
533
539
  - frameworks/compass/stylesheets/compass/css3/_font-face.scss
534
- - frameworks/compass/stylesheets/compass/css3/_gradient.scss
535
540
  - frameworks/compass/stylesheets/compass/css3/_images.scss
536
541
  - frameworks/compass/stylesheets/compass/css3/_inline-block.scss
537
542
  - frameworks/compass/stylesheets/compass/css3/_opacity.scss
@@ -612,105 +617,202 @@ files:
612
617
  - frameworks/compass/templates/project/screen.sass
613
618
  - frameworks/compass/templates/project/USAGE.markdown
614
619
  - lib/compass/actions.rb
620
+ - lib/compass/actions.rbc
621
+ - lib/compass/app_integration/merb.rbc
622
+ - lib/compass/app_integration/rails/configuration_defaults.rbc
623
+ - lib/compass/app_integration/rails/installer.rbc
615
624
  - lib/compass/app_integration/rails.rb
625
+ - lib/compass/app_integration/rails.rbc
616
626
  - lib/compass/app_integration/stand_alone/configuration_defaults.rb
627
+ - lib/compass/app_integration/stand_alone/configuration_defaults.rbc
617
628
  - lib/compass/app_integration/stand_alone/installer.rb
629
+ - lib/compass/app_integration/stand_alone/installer.rbc
618
630
  - lib/compass/app_integration/stand_alone.rb
631
+ - lib/compass/app_integration/stand_alone.rbc
619
632
  - lib/compass/app_integration.rb
633
+ - lib/compass/app_integration.rbc
620
634
  - lib/compass/browser_support.rb
635
+ - lib/compass/browser_support.rbc
621
636
  - lib/compass/commands/base.rb
637
+ - lib/compass/commands/base.rbc
622
638
  - lib/compass/commands/clean_project.rb
639
+ - lib/compass/commands/clean_project.rbc
623
640
  - lib/compass/commands/create_project.rb
641
+ - lib/compass/commands/create_project.rbc
624
642
  - lib/compass/commands/default.rb
643
+ - lib/compass/commands/default.rbc
625
644
  - lib/compass/commands/generate_grid_background.rb
645
+ - lib/compass/commands/generate_grid_background.rbc
626
646
  - lib/compass/commands/help.rb
647
+ - lib/compass/commands/help.rbc
627
648
  - lib/compass/commands/imports.rb
649
+ - lib/compass/commands/imports.rbc
628
650
  - lib/compass/commands/installer_command.rb
651
+ - lib/compass/commands/installer_command.rbc
629
652
  - lib/compass/commands/interactive.rb
653
+ - lib/compass/commands/interactive.rbc
630
654
  - lib/compass/commands/list_frameworks.rb
655
+ - lib/compass/commands/list_frameworks.rbc
631
656
  - lib/compass/commands/print_version.rb
657
+ - lib/compass/commands/print_version.rbc
632
658
  - lib/compass/commands/project_base.rb
659
+ - lib/compass/commands/project_base.rbc
633
660
  - lib/compass/commands/project_stats.rb
661
+ - lib/compass/commands/project_stats.rbc
634
662
  - lib/compass/commands/project_structure.rb
635
663
  - lib/compass/commands/registry.rb
664
+ - lib/compass/commands/registry.rbc
636
665
  - lib/compass/commands/sprite.rb
666
+ - lib/compass/commands/sprite.rbc
637
667
  - lib/compass/commands/stamp_pattern.rb
668
+ - lib/compass/commands/stamp_pattern.rbc
638
669
  - lib/compass/commands/unpack_extension.rb
670
+ - lib/compass/commands/unpack_extension.rbc
639
671
  - lib/compass/commands/update_project.rb
672
+ - lib/compass/commands/update_project.rbc
640
673
  - lib/compass/commands/validate_project.rb
674
+ - lib/compass/commands/validate_project.rbc
641
675
  - lib/compass/commands/watch_project.rb
676
+ - lib/compass/commands/watch_project.rbc
642
677
  - lib/compass/commands/write_configuration.rb
678
+ - lib/compass/commands/write_configuration.rbc
643
679
  - lib/compass/commands.rb
680
+ - lib/compass/commands.rbc
644
681
  - lib/compass/compiler.rb
682
+ - lib/compass/compiler.rbc
645
683
  - lib/compass/configuration/adapters.rb
684
+ - lib/compass/configuration/adapters.rbc
646
685
  - lib/compass/configuration/comments.rb
686
+ - lib/compass/configuration/comments.rbc
647
687
  - lib/compass/configuration/data.rb
688
+ - lib/compass/configuration/data.rbc
648
689
  - lib/compass/configuration/defaults.rb
690
+ - lib/compass/configuration/defaults.rbc
649
691
  - lib/compass/configuration/file_data.rb
692
+ - lib/compass/configuration/file_data.rbc
650
693
  - lib/compass/configuration/helpers.rb
694
+ - lib/compass/configuration/helpers.rbc
651
695
  - lib/compass/configuration/inheritance.rb
696
+ - lib/compass/configuration/inheritance.rbc
652
697
  - lib/compass/configuration/paths.rb
698
+ - lib/compass/configuration/paths.rbc
653
699
  - lib/compass/configuration/serialization.rb
700
+ - lib/compass/configuration/serialization.rbc
654
701
  - lib/compass/configuration.rb
702
+ - lib/compass/configuration.rbc
655
703
  - lib/compass/dependencies.rb
704
+ - lib/compass/dependencies.rbc
656
705
  - lib/compass/errors.rb
706
+ - lib/compass/errors.rbc
657
707
  - lib/compass/exec/command_option_parser.rb
708
+ - lib/compass/exec/command_option_parser.rbc
658
709
  - lib/compass/exec/global_options_parser.rb
710
+ - lib/compass/exec/global_options_parser.rbc
659
711
  - lib/compass/exec/helpers.rb
712
+ - lib/compass/exec/helpers.rbc
660
713
  - lib/compass/exec/project_options_parser.rb
714
+ - lib/compass/exec/project_options_parser.rbc
661
715
  - lib/compass/exec/sub_command_ui.rb
716
+ - lib/compass/exec/sub_command_ui.rbc
662
717
  - lib/compass/exec/switch_ui.rb
663
718
  - lib/compass/exec.rb
719
+ - lib/compass/exec.rbc
664
720
  - lib/compass/frameworks.rb
721
+ - lib/compass/frameworks.rbc
665
722
  - lib/compass/grid_builder.rb
723
+ - lib/compass/grid_builder.rbc
666
724
  - lib/compass/installers/bare_installer.rb
725
+ - lib/compass/installers/bare_installer.rbc
667
726
  - lib/compass/installers/base.rb
727
+ - lib/compass/installers/base.rbc
668
728
  - lib/compass/installers/manifest.rb
729
+ - lib/compass/installers/manifest.rbc
669
730
  - lib/compass/installers/manifest_installer.rb
731
+ - lib/compass/installers/manifest_installer.rbc
670
732
  - lib/compass/installers/template_context.rb
733
+ - lib/compass/installers/template_context.rbc
671
734
  - lib/compass/installers.rb
735
+ - lib/compass/installers.rbc
672
736
  - lib/compass/logger.rb
737
+ - lib/compass/logger.rbc
673
738
  - lib/compass/quick_cache.rb
739
+ - lib/compass/quick_cache.rbc
674
740
  - lib/compass/rails.rb
675
741
  - lib/compass/sass_extensions/functions/colors.rb
742
+ - lib/compass/sass_extensions/functions/colors.rbc
676
743
  - lib/compass/sass_extensions/functions/constants.rb
744
+ - lib/compass/sass_extensions/functions/constants.rbc
677
745
  - lib/compass/sass_extensions/functions/cross_browser_support.rb
746
+ - lib/compass/sass_extensions/functions/cross_browser_support.rbc
678
747
  - lib/compass/sass_extensions/functions/display.rb
748
+ - lib/compass/sass_extensions/functions/display.rbc
679
749
  - lib/compass/sass_extensions/functions/enumerate.rb
750
+ - lib/compass/sass_extensions/functions/enumerate.rbc
680
751
  - lib/compass/sass_extensions/functions/env.rb
752
+ - lib/compass/sass_extensions/functions/env.rbc
681
753
  - lib/compass/sass_extensions/functions/font_files.rb
754
+ - lib/compass/sass_extensions/functions/font_files.rbc
682
755
  - lib/compass/sass_extensions/functions/gradient_support.rb
756
+ - lib/compass/sass_extensions/functions/gradient_support.rbc
683
757
  - lib/compass/sass_extensions/functions/image_size.rb
758
+ - lib/compass/sass_extensions/functions/image_size.rbc
684
759
  - lib/compass/sass_extensions/functions/inline_image.rb
760
+ - lib/compass/sass_extensions/functions/inline_image.rbc
685
761
  - lib/compass/sass_extensions/functions/lists.rb
762
+ - lib/compass/sass_extensions/functions/lists.rbc
763
+ - lib/compass/sass_extensions/functions/math.rb
686
764
  - lib/compass/sass_extensions/functions/selectors.rb
765
+ - lib/compass/sass_extensions/functions/selectors.rbc
687
766
  - lib/compass/sass_extensions/functions/sprites.rb
688
- - lib/compass/sass_extensions/functions/trig.rb
767
+ - lib/compass/sass_extensions/functions/sprites.rbc
768
+ - lib/compass/sass_extensions/functions/trig.rbc
689
769
  - lib/compass/sass_extensions/functions/urls.rb
770
+ - lib/compass/sass_extensions/functions/urls.rbc
690
771
  - lib/compass/sass_extensions/functions.rb
772
+ - lib/compass/sass_extensions/functions.rbc
691
773
  - lib/compass/sass_extensions/monkey_patches/browser_support.rb
774
+ - lib/compass/sass_extensions/monkey_patches/browser_support.rbc
692
775
  - lib/compass/sass_extensions/monkey_patches/traversal.rb
776
+ - lib/compass/sass_extensions/monkey_patches/traversal.rbc
693
777
  - lib/compass/sass_extensions/monkey_patches.rb
778
+ - lib/compass/sass_extensions/monkey_patches.rbc
779
+ - lib/compass/sass_extensions/sprites/base.rbc
694
780
  - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
781
+ - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc
695
782
  - lib/compass/sass_extensions/sprites/engines.rb
783
+ - lib/compass/sass_extensions/sprites/engines.rbc
696
784
  - lib/compass/sass_extensions/sprites/image.rb
785
+ - lib/compass/sass_extensions/sprites/image.rbc
697
786
  - lib/compass/sass_extensions/sprites/image_methods.rb
787
+ - lib/compass/sass_extensions/sprites/image_methods.rbc
698
788
  - lib/compass/sass_extensions/sprites/image_row.rb
789
+ - lib/compass/sass_extensions/sprites/image_row.rbc
699
790
  - lib/compass/sass_extensions/sprites/layout_methods.rb
791
+ - lib/compass/sass_extensions/sprites/layout_methods.rbc
700
792
  - lib/compass/sass_extensions/sprites/row_fitter.rb
793
+ - lib/compass/sass_extensions/sprites/row_fitter.rbc
701
794
  - lib/compass/sass_extensions/sprites/sprite_map.rb
795
+ - lib/compass/sass_extensions/sprites/sprite_map.rbc
702
796
  - lib/compass/sass_extensions/sprites/sprite_methods.rb
797
+ - lib/compass/sass_extensions/sprites/sprite_methods.rbc
798
+ - lib/compass/sass_extensions/sprites/sprites.rbc
703
799
  - lib/compass/sass_extensions/sprites.rb
800
+ - lib/compass/sass_extensions/sprites.rbc
704
801
  - lib/compass/sass_extensions.rb
802
+ - lib/compass/sass_extensions.rbc
705
803
  - lib/compass/sprite_importer/binding.rb
706
804
  - lib/compass/sprite_importer/content.erb
707
805
  - lib/compass/sprite_importer.rb
806
+ - lib/compass/sprite_importer.rbc
708
807
  - lib/compass/stats.rb
709
808
  - lib/compass/test_case.rb
710
809
  - lib/compass/util.rb
810
+ - lib/compass/util.rbc
711
811
  - lib/compass/validator.rb
712
812
  - lib/compass/version.rb
813
+ - lib/compass/version.rbc
713
814
  - lib/compass.rb
815
+ - lib/compass.rbc
714
816
  - test/fixtures/extensions/only_stylesheets/compass_init.rb
715
817
  - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
716
818
  - test/fixtures/fonts/bgrove.base64.txt
@@ -1136,27 +1238,50 @@ files:
1136
1238
  - test/fixtures/stylesheets/valid/config.rb
1137
1239
  - test/fixtures/stylesheets/valid/sass/simple.sass
1138
1240
  - test/helpers/command_line.rb
1241
+ - test/helpers/command_line.rbc
1139
1242
  - test/helpers/diff.rb
1243
+ - test/helpers/diff.rbc
1140
1244
  - test/helpers/io.rb
1245
+ - test/helpers/io.rbc
1141
1246
  - test/helpers/rails.rb
1247
+ - test/helpers/rails.rbc
1142
1248
  - test/helpers/test_case.rb
1249
+ - test/helpers/test_case.rbc
1143
1250
  - test/integrations/compass_test.rb
1251
+ - test/integrations/compass_test.rbc
1252
+ - test/integrations/rails_integration_test.rbc
1144
1253
  - test/integrations/sprites_test.rb
1254
+ - test/integrations/sprites_test.rbc
1145
1255
  - test/test_helper.rb
1256
+ - test/test_helper.rbc
1146
1257
  - test/units/actions_test.rb
1258
+ - test/units/actions_test.rbc
1147
1259
  - test/units/command_line_test.rb
1260
+ - test/units/command_line_test.rbc
1261
+ - test/units/compass_module_test.rb
1148
1262
  - test/units/compass_png_test.rb
1263
+ - test/units/compass_png_test.rbc
1149
1264
  - test/units/compiler_test.rb
1150
1265
  - test/units/configuration_test.rb
1266
+ - test/units/configuration_test.rbc
1267
+ - test/units/rails_configuration_test.rbc
1151
1268
  - test/units/sass_extensions_test.rb
1269
+ - test/units/sass_extensions_test.rbc
1152
1270
  - test/units/sprites/engine_test.rb
1271
+ - test/units/sprites/engine_test.rbc
1153
1272
  - test/units/sprites/image_row_test.rb
1273
+ - test/units/sprites/image_row_test.rbc
1154
1274
  - test/units/sprites/image_test.rb
1275
+ - test/units/sprites/image_test.rbc
1155
1276
  - test/units/sprites/importer_test.rb
1277
+ - test/units/sprites/importer_test.rbc
1156
1278
  - test/units/sprites/layout_test.rb
1157
1279
  - test/units/sprites/row_fitter_test.rb
1280
+ - test/units/sprites/row_fitter_test.rbc
1158
1281
  - test/units/sprites/sprite_command_test.rb
1282
+ - test/units/sprites/sprite_command_test.rbc
1159
1283
  - test/units/sprites/sprite_map_test.rb
1284
+ - test/units/sprites/sprite_map_test.rbc
1160
1285
  - features/command_line.feature
1161
1286
  - features/extensions.feature
1162
1287
  - features/step_definitions/command_line_steps.rb
@@ -1182,18 +1307,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
1182
1307
  required_rubygems_version: !ruby/object:Gem::Requirement
1183
1308
  none: false
1184
1309
  requirements:
1185
- - - ">"
1310
+ - - ">="
1186
1311
  - !ruby/object:Gem::Version
1187
- hash: 25
1312
+ hash: 3
1188
1313
  segments:
1189
- - 1
1190
- - 3
1191
- - 1
1192
- version: 1.3.1
1314
+ - 0
1315
+ version: "0"
1193
1316
  requirements: []
1194
1317
 
1195
1318
  rubyforge_project:
1196
- rubygems_version: 1.5.3
1319
+ rubygems_version: 1.4.2
1197
1320
  signing_key:
1198
1321
  specification_version: 3
1199
1322
  summary: A Real Stylesheet Framework
@@ -1623,27 +1746,50 @@ test_files:
1623
1746
  - test/fixtures/stylesheets/valid/config.rb
1624
1747
  - test/fixtures/stylesheets/valid/sass/simple.sass
1625
1748
  - test/helpers/command_line.rb
1749
+ - test/helpers/command_line.rbc
1626
1750
  - test/helpers/diff.rb
1751
+ - test/helpers/diff.rbc
1627
1752
  - test/helpers/io.rb
1753
+ - test/helpers/io.rbc
1628
1754
  - test/helpers/rails.rb
1755
+ - test/helpers/rails.rbc
1629
1756
  - test/helpers/test_case.rb
1757
+ - test/helpers/test_case.rbc
1630
1758
  - test/integrations/compass_test.rb
1759
+ - test/integrations/compass_test.rbc
1760
+ - test/integrations/rails_integration_test.rbc
1631
1761
  - test/integrations/sprites_test.rb
1762
+ - test/integrations/sprites_test.rbc
1632
1763
  - test/test_helper.rb
1764
+ - test/test_helper.rbc
1633
1765
  - test/units/actions_test.rb
1766
+ - test/units/actions_test.rbc
1634
1767
  - test/units/command_line_test.rb
1768
+ - test/units/command_line_test.rbc
1769
+ - test/units/compass_module_test.rb
1635
1770
  - test/units/compass_png_test.rb
1771
+ - test/units/compass_png_test.rbc
1636
1772
  - test/units/compiler_test.rb
1637
1773
  - test/units/configuration_test.rb
1774
+ - test/units/configuration_test.rbc
1775
+ - test/units/rails_configuration_test.rbc
1638
1776
  - test/units/sass_extensions_test.rb
1777
+ - test/units/sass_extensions_test.rbc
1639
1778
  - test/units/sprites/engine_test.rb
1779
+ - test/units/sprites/engine_test.rbc
1640
1780
  - test/units/sprites/image_row_test.rb
1781
+ - test/units/sprites/image_row_test.rbc
1641
1782
  - test/units/sprites/image_test.rb
1783
+ - test/units/sprites/image_test.rbc
1642
1784
  - test/units/sprites/importer_test.rb
1785
+ - test/units/sprites/importer_test.rbc
1643
1786
  - test/units/sprites/layout_test.rb
1644
1787
  - test/units/sprites/row_fitter_test.rb
1788
+ - test/units/sprites/row_fitter_test.rbc
1645
1789
  - test/units/sprites/sprite_command_test.rb
1790
+ - test/units/sprites/sprite_command_test.rbc
1646
1791
  - test/units/sprites/sprite_map_test.rb
1792
+ - test/units/sprites/sprite_map_test.rbc
1647
1793
  - features/command_line.feature
1648
1794
  - features/extensions.feature
1649
1795
  - features/step_definitions/command_line_steps.rb
@@ -1,99 +0,0 @@
1
- @import "compass/utilities/general/hacks";
2
- @import "images";
3
-
4
- // The linear gradient mixin works best across browsers if you use percentage-based color stops.
5
- //
6
- // Examples:
7
- //
8
- // // This yields a linear gradient spanning from top to bottom
9
- // +linear-gradient(color-stops(white, black))
10
- //
11
- // // This yields a linear gradient spanning from bottom to top
12
- // +linear-gradient(color-stops(white, black), bottom)
13
- //
14
- // // This yields a linear gradient spanning from left to right
15
- // +linear-gradient(color-stops(white, black), left)
16
- //
17
- // // This yields a linear gradient starting at white passing
18
- // // thru blue at 33% down and then to black
19
- // +linear-gradient(color-stops(white, blue 33%, black))
20
- //
21
- // // This yields a linear gradient starting at white passing
22
- // // thru blue at 33% down and then to black at 67% until the end
23
- // +linear-gradient(color-stops(white, blue 33%, black 67%))
24
- //
25
- // // This yields a background image on top of the gradient; requires an image
26
- // // with an alpha-layer.
27
- // +linear-gradient(color_stops(white,black), top, image-url('noise.png'))
28
- //
29
- // Browsers Supported:
30
- //
31
- // - Chrome
32
- // - Safari
33
- // - Firefox 3.6
34
- // - Opera
35
- //
36
- // @deprecated Use the linear-gradient() function in conjunction with a
37
- // property mixin like `background-image`.
38
- @mixin linear-gradient($color-stops, $start: false, $image: false) {
39
- @if $image {
40
- @if $start {
41
- @warn "The linear-gradient mixin is deprecated. Instead use: @include background-image(#{$image}, linear-gradient(#{$start}, #{$color-stops}))";
42
- } @else {
43
- @warn "The linear-gradient mixin is deprecated. Instead use: @include background-image(#{$image}, linear-gradient(#{$color-stops}))";
44
- }
45
- } @else {
46
- @if $start {
47
- @warn "The linear-gradient mixin is deprecated. Instead use: @include background-image(linear-gradient(#{$start}, #{$color-stops}))";
48
- } @else {
49
- @warn "The linear-gradient mixin is deprecated. Instead use: @include background-image(linear-gradient(#{$color-stops}))";
50
- }
51
- }
52
- @if not $start { $start: top; }
53
- @include background-image($image, linear-gradient($start, $color-stops));
54
- }
55
-
56
- // Because of webkit's limitations, the radial gradient mixin works best if you use
57
- // pixel-based color stops.
58
- //
59
- // Examples:
60
- //
61
- // // Defaults to a centered, 100px radius gradient
62
- // +radial-gradient(color-stops(#c00, #00c))
63
- //
64
- // // 100px radius gradient in the top left corner
65
- // +radial-gradient(color-stops(#c00, #00c), top left)
66
- //
67
- // // Three colors, ending at 50px and passing thru #fff at 25px
68
- // +radial-gradient(color-stops(#c00, #fff, #00c 50px))
69
- //
70
- // // A background image on top of a 100px radius gradient; requires an image
71
- // // with an alpha-layer.
72
- // +radial-gradient(color_stops(#c00, #fff), top left, image-url("noise.png")))
73
- //
74
- // Browsers Supported:
75
- //
76
- // - Chrome
77
- // - Safari
78
- // - Firefox 3.6
79
- // - Opera
80
- //
81
- // @deprecated Use the radial-gradient() function in conjunction with a
82
- // property mixin like `background-image`.
83
- @mixin radial-gradient($color-stops, $center-position: false, $image: false) {
84
- @if $image {
85
- @if $center-position {
86
- @warn "The radial-gradient mixin is deprecated. Instead use: @include background-image(#{$image}, radial-gradient(#{$center-position}, #{$color-stops}))";
87
- } @else {
88
- @warn "The radial-gradient mixin is deprecated. Instead use: @include background-image(#{$image}, radial-gradient(#{$color-stops}))";
89
- }
90
- } @else {
91
- @if $center-position {
92
- @warn "The radial-gradient mixin is deprecated. Instead use: @include background-image(radial-gradient(#{$center-position}, #{$color-stops}))";
93
- } @else {
94
- @warn "The radial-gradient mixin is deprecated. Instead use: @include background-image(radial-gradient(#{$color-stops}))";
95
- }
96
- }
97
- @if not $center-position { $center-position: center center; }
98
- @include background-image($image, radial-gradient($center-position, $color-stops));
99
- }