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
metadata CHANGED
@@ -1,10 +1,10 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: compass
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.11.6
4
5
  prerelease:
5
- version: 0.11.5
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Chris Eppstein
9
9
  - Eric A. Meyer
10
10
  - Brandon Mathis
@@ -13,57 +13,55 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
-
17
- date: 2011-07-10 00:00:00 -07:00
18
- default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
16
+ date: 2011-12-24 00:00:00.000000000Z
17
+ dependencies:
18
+ - !ruby/object:Gem::Dependency
21
19
  name: sass
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
20
+ requirement: &70172098735720 !ruby/object:Gem::Requirement
24
21
  none: false
25
- requirements:
22
+ requirements:
26
23
  - - ~>
27
- - !ruby/object:Gem::Version
28
- version: "3.1"
24
+ - !ruby/object:Gem::Version
25
+ version: '3.1'
29
26
  type: :runtime
30
- version_requirements: *id001
31
- - !ruby/object:Gem::Dependency
32
- name: chunky_png
33
27
  prerelease: false
34
- requirement: &id002 !ruby/object:Gem::Requirement
28
+ version_requirements: *70172098735720
29
+ - !ruby/object:Gem::Dependency
30
+ name: chunky_png
31
+ requirement: &70172098735220 !ruby/object:Gem::Requirement
35
32
  none: false
36
- requirements:
33
+ requirements:
37
34
  - - ~>
38
- - !ruby/object:Gem::Version
39
- version: "1.2"
35
+ - !ruby/object:Gem::Version
36
+ version: '1.2'
40
37
  type: :runtime
41
- version_requirements: *id002
42
- - !ruby/object:Gem::Dependency
43
- name: fssm
44
38
  prerelease: false
45
- requirement: &id003 !ruby/object:Gem::Requirement
39
+ version_requirements: *70172098735220
40
+ - !ruby/object:Gem::Dependency
41
+ name: fssm
42
+ requirement: &70172098734760 !ruby/object:Gem::Requirement
46
43
  none: false
47
- requirements:
48
- - - ">="
49
- - !ruby/object:Gem::Version
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
50
47
  version: 0.2.7
51
48
  type: :runtime
52
- version_requirements: *id003
53
- description: Compass is a Sass-based Stylesheet Framework that streamlines the creation and maintainance of CSS.
49
+ prerelease: false
50
+ version_requirements: *70172098734760
51
+ description: Compass is a Sass-based Stylesheet Framework that streamlines the creation
52
+ and maintainance of CSS.
54
53
  email: chris@eppsteins.net
55
- executables:
54
+ executables:
56
55
  - compass
57
56
  extensions: []
58
-
59
57
  extra_rdoc_files: []
60
-
61
- files:
58
+ files:
62
59
  - README.markdown
63
60
  - LICENSE.markdown
64
61
  - VERSION.yml
65
62
  - Rakefile
66
63
  - bin/compass
64
+ - bin/compass.compiled.rbc
67
65
  - examples/blueprint_default/config.rb
68
66
  - examples/blueprint_default/images/grid.png
69
67
  - examples/blueprint_default/index.html.haml
@@ -129,6 +127,7 @@ files:
129
127
  - examples/compass/bootstrap.rb
130
128
  - examples/compass/clean.rb
131
129
  - examples/compass/compass.html.haml
130
+ - examples/compass/compass_app_log.txt
132
131
  - examples/compass/config.rb
133
132
  - examples/compass/headers.txt
134
133
  - examples/compass/images/blue_arrow.gif
@@ -528,6 +527,7 @@ files:
528
527
  - frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss
529
528
  - frameworks/compass/stylesheets/compass/css3/_transform.scss
530
529
  - frameworks/compass/stylesheets/compass/css3/_transition.scss
530
+ - frameworks/compass/stylesheets/compass/css3/_user-interface.scss
531
531
  - frameworks/compass/stylesheets/compass/layout/_grid-background.scss
532
532
  - frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss
533
533
  - frameworks/compass/stylesheets/compass/layout/_stretching.scss
@@ -625,27 +625,49 @@ files:
625
625
  - lib/compass/browser_support.rb
626
626
  - lib/compass/browser_support.rbc
627
627
  - lib/compass/commands/base.rb
628
+ - lib/compass/commands/base.rbc
628
629
  - lib/compass/commands/clean_project.rb
630
+ - lib/compass/commands/clean_project.rbc
629
631
  - lib/compass/commands/create_project.rb
632
+ - lib/compass/commands/create_project.rbc
630
633
  - lib/compass/commands/default.rb
634
+ - lib/compass/commands/default.rbc
631
635
  - lib/compass/commands/generate_grid_background.rb
636
+ - lib/compass/commands/generate_grid_background.rbc
632
637
  - lib/compass/commands/help.rb
638
+ - lib/compass/commands/help.rbc
633
639
  - lib/compass/commands/imports.rb
640
+ - lib/compass/commands/imports.rbc
634
641
  - lib/compass/commands/installer_command.rb
642
+ - lib/compass/commands/installer_command.rbc
635
643
  - lib/compass/commands/interactive.rb
644
+ - lib/compass/commands/interactive.rbc
636
645
  - lib/compass/commands/list_frameworks.rb
646
+ - lib/compass/commands/list_frameworks.rbc
637
647
  - lib/compass/commands/print_version.rb
648
+ - lib/compass/commands/print_version.rbc
638
649
  - lib/compass/commands/project_base.rb
650
+ - lib/compass/commands/project_base.rbc
639
651
  - lib/compass/commands/project_stats.rb
652
+ - lib/compass/commands/project_stats.rbc
640
653
  - lib/compass/commands/registry.rb
654
+ - lib/compass/commands/registry.rbc
641
655
  - lib/compass/commands/sprite.rb
656
+ - lib/compass/commands/sprite.rbc
642
657
  - lib/compass/commands/stamp_pattern.rb
658
+ - lib/compass/commands/stamp_pattern.rbc
643
659
  - lib/compass/commands/unpack_extension.rb
660
+ - lib/compass/commands/unpack_extension.rbc
644
661
  - lib/compass/commands/update_project.rb
662
+ - lib/compass/commands/update_project.rbc
645
663
  - lib/compass/commands/validate_project.rb
664
+ - lib/compass/commands/validate_project.rbc
646
665
  - lib/compass/commands/watch_project.rb
666
+ - lib/compass/commands/watch_project.rbc
647
667
  - lib/compass/commands/write_configuration.rb
668
+ - lib/compass/commands/write_configuration.rbc
648
669
  - lib/compass/commands.rb
670
+ - lib/compass/commands.rbc
649
671
  - lib/compass/compiler.rb
650
672
  - lib/compass/compiler.rbc
651
673
  - lib/compass/configuration/adapters.rb
@@ -673,22 +695,36 @@ files:
673
695
  - lib/compass/errors.rb
674
696
  - lib/compass/errors.rbc
675
697
  - lib/compass/exec/command_option_parser.rb
698
+ - lib/compass/exec/command_option_parser.rbc
676
699
  - lib/compass/exec/global_options_parser.rb
700
+ - lib/compass/exec/global_options_parser.rbc
677
701
  - lib/compass/exec/helpers.rb
702
+ - lib/compass/exec/helpers.rbc
678
703
  - lib/compass/exec/project_options_parser.rb
704
+ - lib/compass/exec/project_options_parser.rbc
679
705
  - lib/compass/exec/sub_command_ui.rb
706
+ - lib/compass/exec/sub_command_ui.rbc
680
707
  - lib/compass/exec/switch_ui.rb
681
708
  - lib/compass/exec.rb
709
+ - lib/compass/exec.rbc
682
710
  - lib/compass/frameworks.rb
683
711
  - lib/compass/frameworks.rbc
684
712
  - lib/compass/grid_builder.rb
713
+ - lib/compass/grid_builder.rbc
685
714
  - lib/compass/installers/bare_installer.rb
715
+ - lib/compass/installers/bare_installer.rbc
686
716
  - lib/compass/installers/base.rb
717
+ - lib/compass/installers/base.rbc
687
718
  - lib/compass/installers/manifest.rb
719
+ - lib/compass/installers/manifest.rbc
688
720
  - lib/compass/installers/manifest_installer.rb
721
+ - lib/compass/installers/manifest_installer.rbc
689
722
  - lib/compass/installers/template_context.rb
723
+ - lib/compass/installers/template_context.rbc
690
724
  - lib/compass/installers.rb
725
+ - lib/compass/installers.rbc
691
726
  - lib/compass/logger.rb
727
+ - lib/compass/logger.rbc
692
728
  - lib/compass/quick_cache.rb
693
729
  - lib/compass/quick_cache.rbc
694
730
  - lib/compass/rails.rb
@@ -702,6 +738,7 @@ files:
702
738
  - lib/compass/sass_extensions/functions/display.rbc
703
739
  - lib/compass/sass_extensions/functions/enumerate.rb
704
740
  - lib/compass/sass_extensions/functions/enumerate.rbc
741
+ - lib/compass/sass_extensions/functions/env.rbc
705
742
  - lib/compass/sass_extensions/functions/font_files.rb
706
743
  - lib/compass/sass_extensions/functions/font_files.rbc
707
744
  - lib/compass/sass_extensions/functions/gradient_support.rb
@@ -736,9 +773,14 @@ files:
736
773
  - lib/compass/sass_extensions/sprites/image.rb
737
774
  - lib/compass/sass_extensions/sprites/image.rbc
738
775
  - lib/compass/sass_extensions/sprites/image_methods.rb
776
+ - lib/compass/sass_extensions/sprites/image_methods.rbc
777
+ - lib/compass/sass_extensions/sprites/image_row.rbc
778
+ - lib/compass/sass_extensions/sprites/layout_methods.rbc
779
+ - lib/compass/sass_extensions/sprites/row_fitter.rbc
739
780
  - lib/compass/sass_extensions/sprites/sprite_map.rb
740
781
  - lib/compass/sass_extensions/sprites/sprite_map.rbc
741
782
  - lib/compass/sass_extensions/sprites/sprite_methods.rb
783
+ - lib/compass/sass_extensions/sprites/sprite_methods.rbc
742
784
  - lib/compass/sass_extensions/sprites/sprites.rbc
743
785
  - lib/compass/sass_extensions/sprites.rb
744
786
  - lib/compass/sass_extensions/sprites.rbc
@@ -755,6 +797,8 @@ files:
755
797
  - lib/compass/version.rbc
756
798
  - lib/compass.rb
757
799
  - lib/compass.rbc
800
+ - test/fixtures/extensions/only_stylesheets/compass_init.rb
801
+ - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
758
802
  - test/fixtures/sprites/public/images/bad_extensions/ten-by-ten.gif
759
803
  - test/fixtures/sprites/public/images/bad_extensions/twenty-by-twenty.jpg
760
804
  - test/fixtures/sprites/public/images/colors/blue.png
@@ -850,6 +894,7 @@ files:
850
894
  - test/fixtures/stylesheets/compass/css/stretching.css
851
895
  - test/fixtures/stylesheets/compass/css/text_shadow.css
852
896
  - test/fixtures/stylesheets/compass/css/transform.css
897
+ - test/fixtures/stylesheets/compass/css/user-interface.css
853
898
  - test/fixtures/stylesheets/compass/css/utilities.css
854
899
  - test/fixtures/stylesheets/compass/css/vertical_rhythm.css
855
900
  - test/fixtures/stylesheets/compass/images/100x150.gif
@@ -1126,8 +1171,10 @@ files:
1126
1171
  - test/fixtures/stylesheets/compass/sass/stretching.sass
1127
1172
  - test/fixtures/stylesheets/compass/sass/text_shadow.scss
1128
1173
  - test/fixtures/stylesheets/compass/sass/transform.scss
1174
+ - test/fixtures/stylesheets/compass/sass/user-interface.scss
1129
1175
  - test/fixtures/stylesheets/compass/sass/utilities.scss
1130
1176
  - test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
1177
+ - test/fixtures/stylesheets/envtest/tmp/env.css
1131
1178
  - test/fixtures/stylesheets/error/config.rb
1132
1179
  - test/fixtures/stylesheets/error/sass/screen.sass
1133
1180
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1142,62 +1189,89 @@ files:
1142
1189
  - test/fixtures/stylesheets/relative/sass/ie.sass
1143
1190
  - test/fixtures/stylesheets/relative/sass/print.sass
1144
1191
  - test/fixtures/stylesheets/relative/sass/screen.sass
1192
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
1193
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
1194
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
1195
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss
1196
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css
1197
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
1198
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
1145
1199
  - test/fixtures/stylesheets/valid/config.rb
1146
1200
  - test/fixtures/stylesheets/valid/sass/simple.sass
1147
1201
  - test/helpers/command_line.rb
1202
+ - test/helpers/command_line.rbc
1148
1203
  - test/helpers/diff.rb
1204
+ - test/helpers/diff.rbc
1149
1205
  - test/helpers/io.rb
1206
+ - test/helpers/io.rbc
1150
1207
  - test/helpers/rails.rb
1208
+ - test/helpers/rails.rbc
1151
1209
  - test/helpers/test_case.rb
1210
+ - test/helpers/test_case.rbc
1152
1211
  - test/integrations/compass_test.rb
1212
+ - test/integrations/compass_test.rbc
1153
1213
  - test/integrations/rails_integration_test.rb
1214
+ - test/integrations/rails_integration_test.rbc
1154
1215
  - test/integrations/sprites_test.rb
1216
+ - test/integrations/sprites_test.rbc
1155
1217
  - test/integrations/test_rails_helper.rb
1156
1218
  - test/test_helper.rb
1219
+ - test/test_helper.rbc
1157
1220
  - test/units/actions_test.rb
1221
+ - test/units/actions_test.rbc
1158
1222
  - test/units/command_line_test.rb
1223
+ - test/units/command_line_test.rbc
1159
1224
  - test/units/compass_png_test.rb
1225
+ - test/units/compass_png_test.rbc
1160
1226
  - test/units/configuration_test.rb
1227
+ - test/units/configuration_test.rbc
1228
+ - test/units/rails_configuration_test.rbc
1161
1229
  - test/units/sass_extensions_test.rb
1230
+ - test/units/sass_extensions_test.rbc
1162
1231
  - test/units/sprites/engine_test.rb
1232
+ - test/units/sprites/engine_test.rbc
1233
+ - test/units/sprites/image_row_test.rbc
1163
1234
  - test/units/sprites/image_test.rb
1235
+ - test/units/sprites/image_test.rbc
1164
1236
  - test/units/sprites/importer_test.rb
1237
+ - test/units/sprites/importer_test.rbc
1238
+ - test/units/sprites/row_fitter_test.rbc
1165
1239
  - test/units/sprites/sprite_command_test.rb
1240
+ - test/units/sprites/sprite_command_test.rbc
1166
1241
  - test/units/sprites/sprite_map_test.rb
1242
+ - test/units/sprites/sprite_map_test.rbc
1167
1243
  - features/command_line.feature
1168
1244
  - features/extensions.feature
1169
1245
  - features/rails_integration.feature
1170
1246
  - features/step_definitions/command_line_steps.rb
1171
1247
  - features/step_definitions/extension_steps.rb
1172
- has_rdoc: true
1173
1248
  homepage: http://compass-style.org
1174
1249
  licenses: []
1175
-
1176
1250
  post_install_message:
1177
1251
  rdoc_options: []
1178
-
1179
- require_paths:
1252
+ require_paths:
1180
1253
  - lib
1181
- required_ruby_version: !ruby/object:Gem::Requirement
1254
+ required_ruby_version: !ruby/object:Gem::Requirement
1182
1255
  none: false
1183
- requirements:
1184
- - - ">="
1185
- - !ruby/object:Gem::Version
1186
- version: "0"
1187
- required_rubygems_version: !ruby/object:Gem::Requirement
1256
+ requirements:
1257
+ - - ! '>='
1258
+ - !ruby/object:Gem::Version
1259
+ version: '0'
1260
+ required_rubygems_version: !ruby/object:Gem::Requirement
1188
1261
  none: false
1189
- requirements:
1190
- - - ">="
1191
- - !ruby/object:Gem::Version
1192
- version: "0"
1262
+ requirements:
1263
+ - - ! '>='
1264
+ - !ruby/object:Gem::Version
1265
+ version: '0'
1193
1266
  requirements: []
1194
-
1195
1267
  rubyforge_project:
1196
- rubygems_version: 1.5.3
1268
+ rubygems_version: 1.8.10
1197
1269
  signing_key:
1198
1270
  specification_version: 3
1199
1271
  summary: A Real Stylesheet Framework
1200
- test_files:
1272
+ test_files:
1273
+ - test/fixtures/extensions/only_stylesheets/compass_init.rb
1274
+ - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
1201
1275
  - test/fixtures/sprites/public/images/bad_extensions/ten-by-ten.gif
1202
1276
  - test/fixtures/sprites/public/images/bad_extensions/twenty-by-twenty.jpg
1203
1277
  - test/fixtures/sprites/public/images/colors/blue.png
@@ -1293,6 +1367,7 @@ test_files:
1293
1367
  - test/fixtures/stylesheets/compass/css/stretching.css
1294
1368
  - test/fixtures/stylesheets/compass/css/text_shadow.css
1295
1369
  - test/fixtures/stylesheets/compass/css/transform.css
1370
+ - test/fixtures/stylesheets/compass/css/user-interface.css
1296
1371
  - test/fixtures/stylesheets/compass/css/utilities.css
1297
1372
  - test/fixtures/stylesheets/compass/css/vertical_rhythm.css
1298
1373
  - test/fixtures/stylesheets/compass/images/100x150.gif
@@ -1569,8 +1644,10 @@ test_files:
1569
1644
  - test/fixtures/stylesheets/compass/sass/stretching.sass
1570
1645
  - test/fixtures/stylesheets/compass/sass/text_shadow.scss
1571
1646
  - test/fixtures/stylesheets/compass/sass/transform.scss
1647
+ - test/fixtures/stylesheets/compass/sass/user-interface.scss
1572
1648
  - test/fixtures/stylesheets/compass/sass/utilities.scss
1573
1649
  - test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
1650
+ - test/fixtures/stylesheets/envtest/tmp/env.css
1574
1651
  - test/fixtures/stylesheets/error/config.rb
1575
1652
  - test/fixtures/stylesheets/error/sass/screen.sass
1576
1653
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1585,28 +1662,57 @@ test_files:
1585
1662
  - test/fixtures/stylesheets/relative/sass/ie.sass
1586
1663
  - test/fixtures/stylesheets/relative/sass/print.sass
1587
1664
  - test/fixtures/stylesheets/relative/sass/screen.sass
1665
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
1666
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
1667
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
1668
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss
1669
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css
1670
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
1671
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
1588
1672
  - test/fixtures/stylesheets/valid/config.rb
1589
1673
  - test/fixtures/stylesheets/valid/sass/simple.sass
1590
1674
  - test/helpers/command_line.rb
1675
+ - test/helpers/command_line.rbc
1591
1676
  - test/helpers/diff.rb
1677
+ - test/helpers/diff.rbc
1592
1678
  - test/helpers/io.rb
1679
+ - test/helpers/io.rbc
1593
1680
  - test/helpers/rails.rb
1681
+ - test/helpers/rails.rbc
1594
1682
  - test/helpers/test_case.rb
1683
+ - test/helpers/test_case.rbc
1595
1684
  - test/integrations/compass_test.rb
1685
+ - test/integrations/compass_test.rbc
1596
1686
  - test/integrations/rails_integration_test.rb
1687
+ - test/integrations/rails_integration_test.rbc
1597
1688
  - test/integrations/sprites_test.rb
1689
+ - test/integrations/sprites_test.rbc
1598
1690
  - test/integrations/test_rails_helper.rb
1599
1691
  - test/test_helper.rb
1692
+ - test/test_helper.rbc
1600
1693
  - test/units/actions_test.rb
1694
+ - test/units/actions_test.rbc
1601
1695
  - test/units/command_line_test.rb
1696
+ - test/units/command_line_test.rbc
1602
1697
  - test/units/compass_png_test.rb
1698
+ - test/units/compass_png_test.rbc
1603
1699
  - test/units/configuration_test.rb
1700
+ - test/units/configuration_test.rbc
1701
+ - test/units/rails_configuration_test.rbc
1604
1702
  - test/units/sass_extensions_test.rb
1703
+ - test/units/sass_extensions_test.rbc
1605
1704
  - test/units/sprites/engine_test.rb
1705
+ - test/units/sprites/engine_test.rbc
1706
+ - test/units/sprites/image_row_test.rbc
1606
1707
  - test/units/sprites/image_test.rb
1708
+ - test/units/sprites/image_test.rbc
1607
1709
  - test/units/sprites/importer_test.rb
1710
+ - test/units/sprites/importer_test.rbc
1711
+ - test/units/sprites/row_fitter_test.rbc
1608
1712
  - test/units/sprites/sprite_command_test.rb
1713
+ - test/units/sprites/sprite_command_test.rbc
1609
1714
  - test/units/sprites/sprite_map_test.rb
1715
+ - test/units/sprites/sprite_map_test.rbc
1610
1716
  - features/command_line.feature
1611
1717
  - features/extensions.feature
1612
1718
  - features/rails_integration.feature