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
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.12.alpha.1
4
5
  prerelease: 5
5
- version: 0.12.alpha.0
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-08-30 00:00:00 -07:00
18
- default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
16
+ date: 2011-11-14 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: &70167971783480 !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: *70167971783480
29
+ - !ruby/object:Gem::Dependency
30
+ name: chunky_png
31
+ requirement: &70167971782120 !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: *70167971782120
40
+ - !ruby/object:Gem::Dependency
41
+ name: fssm
42
+ requirement: &70167971772020 !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: *70167971772020
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
@@ -528,6 +526,7 @@ files:
528
526
  - frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss
529
527
  - frameworks/compass/stylesheets/compass/css3/_transform.scss
530
528
  - frameworks/compass/stylesheets/compass/css3/_transition.scss
529
+ - frameworks/compass/stylesheets/compass/css3/_user-interface.scss
531
530
  - frameworks/compass/stylesheets/compass/layout/_grid-background.scss
532
531
  - frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss
533
532
  - frameworks/compass/stylesheets/compass/layout/_stretching.scss
@@ -630,27 +629,49 @@ files:
630
629
  - lib/compass/browser_support.rb
631
630
  - lib/compass/browser_support.rbc
632
631
  - lib/compass/commands/base.rb
632
+ - lib/compass/commands/base.rbc
633
633
  - lib/compass/commands/clean_project.rb
634
+ - lib/compass/commands/clean_project.rbc
634
635
  - lib/compass/commands/create_project.rb
636
+ - lib/compass/commands/create_project.rbc
635
637
  - lib/compass/commands/default.rb
638
+ - lib/compass/commands/default.rbc
636
639
  - lib/compass/commands/generate_grid_background.rb
640
+ - lib/compass/commands/generate_grid_background.rbc
637
641
  - lib/compass/commands/help.rb
642
+ - lib/compass/commands/help.rbc
638
643
  - lib/compass/commands/imports.rb
644
+ - lib/compass/commands/imports.rbc
639
645
  - lib/compass/commands/installer_command.rb
646
+ - lib/compass/commands/installer_command.rbc
640
647
  - lib/compass/commands/interactive.rb
648
+ - lib/compass/commands/interactive.rbc
641
649
  - lib/compass/commands/list_frameworks.rb
650
+ - lib/compass/commands/list_frameworks.rbc
642
651
  - lib/compass/commands/print_version.rb
652
+ - lib/compass/commands/print_version.rbc
643
653
  - lib/compass/commands/project_base.rb
654
+ - lib/compass/commands/project_base.rbc
644
655
  - lib/compass/commands/project_stats.rb
656
+ - lib/compass/commands/project_stats.rbc
645
657
  - lib/compass/commands/registry.rb
658
+ - lib/compass/commands/registry.rbc
646
659
  - lib/compass/commands/sprite.rb
660
+ - lib/compass/commands/sprite.rbc
647
661
  - lib/compass/commands/stamp_pattern.rb
662
+ - lib/compass/commands/stamp_pattern.rbc
648
663
  - lib/compass/commands/unpack_extension.rb
664
+ - lib/compass/commands/unpack_extension.rbc
649
665
  - lib/compass/commands/update_project.rb
666
+ - lib/compass/commands/update_project.rbc
650
667
  - lib/compass/commands/validate_project.rb
668
+ - lib/compass/commands/validate_project.rbc
651
669
  - lib/compass/commands/watch_project.rb
670
+ - lib/compass/commands/watch_project.rbc
652
671
  - lib/compass/commands/write_configuration.rb
672
+ - lib/compass/commands/write_configuration.rbc
653
673
  - lib/compass/commands.rb
674
+ - lib/compass/commands.rbc
654
675
  - lib/compass/compiler.rb
655
676
  - lib/compass/compiler.rbc
656
677
  - lib/compass/configuration/adapters.rb
@@ -678,22 +699,36 @@ files:
678
699
  - lib/compass/errors.rb
679
700
  - lib/compass/errors.rbc
680
701
  - lib/compass/exec/command_option_parser.rb
702
+ - lib/compass/exec/command_option_parser.rbc
681
703
  - lib/compass/exec/global_options_parser.rb
704
+ - lib/compass/exec/global_options_parser.rbc
682
705
  - lib/compass/exec/helpers.rb
706
+ - lib/compass/exec/helpers.rbc
683
707
  - lib/compass/exec/project_options_parser.rb
708
+ - lib/compass/exec/project_options_parser.rbc
684
709
  - lib/compass/exec/sub_command_ui.rb
710
+ - lib/compass/exec/sub_command_ui.rbc
685
711
  - lib/compass/exec/switch_ui.rb
686
712
  - lib/compass/exec.rb
713
+ - lib/compass/exec.rbc
687
714
  - lib/compass/frameworks.rb
688
715
  - lib/compass/frameworks.rbc
689
716
  - lib/compass/grid_builder.rb
717
+ - lib/compass/grid_builder.rbc
690
718
  - lib/compass/installers/bare_installer.rb
719
+ - lib/compass/installers/bare_installer.rbc
691
720
  - lib/compass/installers/base.rb
721
+ - lib/compass/installers/base.rbc
692
722
  - lib/compass/installers/manifest.rb
723
+ - lib/compass/installers/manifest.rbc
693
724
  - lib/compass/installers/manifest_installer.rb
725
+ - lib/compass/installers/manifest_installer.rbc
694
726
  - lib/compass/installers/template_context.rb
727
+ - lib/compass/installers/template_context.rbc
695
728
  - lib/compass/installers.rb
729
+ - lib/compass/installers.rbc
696
730
  - lib/compass/logger.rb
731
+ - lib/compass/logger.rbc
697
732
  - lib/compass/quick_cache.rb
698
733
  - lib/compass/quick_cache.rbc
699
734
  - lib/compass/rails.rb
@@ -707,6 +742,8 @@ files:
707
742
  - lib/compass/sass_extensions/functions/display.rbc
708
743
  - lib/compass/sass_extensions/functions/enumerate.rb
709
744
  - lib/compass/sass_extensions/functions/enumerate.rbc
745
+ - lib/compass/sass_extensions/functions/env.rb
746
+ - lib/compass/sass_extensions/functions/env.rbc
710
747
  - lib/compass/sass_extensions/functions/font_files.rb
711
748
  - lib/compass/sass_extensions/functions/font_files.rbc
712
749
  - lib/compass/sass_extensions/functions/gradient_support.rb
@@ -741,17 +778,24 @@ files:
741
778
  - lib/compass/sass_extensions/sprites/image.rb
742
779
  - lib/compass/sass_extensions/sprites/image.rbc
743
780
  - lib/compass/sass_extensions/sprites/image_methods.rb
781
+ - lib/compass/sass_extensions/sprites/image_methods.rbc
744
782
  - lib/compass/sass_extensions/sprites/image_row.rb
783
+ - lib/compass/sass_extensions/sprites/image_row.rbc
745
784
  - lib/compass/sass_extensions/sprites/layout_methods.rb
785
+ - lib/compass/sass_extensions/sprites/layout_methods.rbc
746
786
  - lib/compass/sass_extensions/sprites/row_fitter.rb
787
+ - lib/compass/sass_extensions/sprites/row_fitter.rbc
747
788
  - lib/compass/sass_extensions/sprites/sprite_map.rb
748
789
  - lib/compass/sass_extensions/sprites/sprite_map.rbc
749
790
  - lib/compass/sass_extensions/sprites/sprite_methods.rb
791
+ - lib/compass/sass_extensions/sprites/sprite_methods.rbc
750
792
  - lib/compass/sass_extensions/sprites/sprites.rbc
751
793
  - lib/compass/sass_extensions/sprites.rb
752
794
  - lib/compass/sass_extensions/sprites.rbc
753
795
  - lib/compass/sass_extensions.rb
754
796
  - lib/compass/sass_extensions.rbc
797
+ - lib/compass/sprite_importer/binding.rb
798
+ - lib/compass/sprite_importer/content.erb
755
799
  - lib/compass/sprite_importer.rb
756
800
  - lib/compass/sprite_importer.rbc
757
801
  - lib/compass/stats.rb
@@ -763,8 +807,14 @@ files:
763
807
  - lib/compass/version.rbc
764
808
  - lib/compass.rb
765
809
  - lib/compass.rbc
810
+ - test/fixtures/extensions/only_stylesheets/compass_init.rb
811
+ - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
812
+ - test/fixtures/fonts/bgrove.base64.txt
813
+ - test/fixtures/fonts/bgrove.ttf
766
814
  - test/fixtures/sprites/public/images/bad_extensions/ten-by-ten.gif
767
815
  - test/fixtures/sprites/public/images/bad_extensions/twenty-by-twenty.jpg
816
+ - test/fixtures/sprites/public/images/bool/false.png
817
+ - test/fixtures/sprites/public/images/bool/true.png
768
818
  - test/fixtures/sprites/public/images/colors/blue.png
769
819
  - test/fixtures/sprites/public/images/colors/yellow.png
770
820
  - test/fixtures/sprites/public/images/image_row/large.png
@@ -863,6 +913,8 @@ files:
863
913
  - test/fixtures/stylesheets/compass/css/stretching.css
864
914
  - test/fixtures/stylesheets/compass/css/text_shadow.css
865
915
  - test/fixtures/stylesheets/compass/css/transform.css
916
+ - test/fixtures/stylesheets/compass/css/transition.css
917
+ - test/fixtures/stylesheets/compass/css/user-interface.css
866
918
  - test/fixtures/stylesheets/compass/css/utilities.css
867
919
  - test/fixtures/stylesheets/compass/css/vertical_rhythm.css
868
920
  - test/fixtures/stylesheets/compass/images/100x150.gif
@@ -1117,7 +1169,7 @@ files:
1117
1169
  - test/fixtures/stylesheets/compass/images/flag/za.png
1118
1170
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1119
1171
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1120
- - test/fixtures/stylesheets/compass/images/flag-s8c3c755a68.png
1172
+ - test/fixtures/stylesheets/compass/images/flag-s8f1e8fdb9b.png
1121
1173
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1122
1174
  - test/fixtures/stylesheets/compass/sass/box.sass
1123
1175
  - test/fixtures/stylesheets/compass/sass/box_shadow.scss
@@ -1139,8 +1191,14 @@ files:
1139
1191
  - test/fixtures/stylesheets/compass/sass/stretching.sass
1140
1192
  - test/fixtures/stylesheets/compass/sass/text_shadow.scss
1141
1193
  - test/fixtures/stylesheets/compass/sass/transform.scss
1194
+ - test/fixtures/stylesheets/compass/sass/transition.scss
1195
+ - test/fixtures/stylesheets/compass/sass/user-interface.scss
1142
1196
  - test/fixtures/stylesheets/compass/sass/utilities.scss
1143
1197
  - test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
1198
+ - test/fixtures/stylesheets/envtest/config.rb
1199
+ - test/fixtures/stylesheets/envtest/css/env.css
1200
+ - test/fixtures/stylesheets/envtest/sass/env.scss
1201
+ - test/fixtures/stylesheets/envtest/tmp/env.css
1144
1202
  - test/fixtures/stylesheets/error/config.rb
1145
1203
  - test/fixtures/stylesheets/error/sass/screen.sass
1146
1204
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1155,68 +1213,99 @@ files:
1155
1213
  - test/fixtures/stylesheets/relative/sass/ie.sass
1156
1214
  - test/fixtures/stylesheets/relative/sass/print.sass
1157
1215
  - test/fixtures/stylesheets/relative/sass/screen.sass
1216
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
1217
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
1218
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
1219
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss
1220
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css
1221
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
1222
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
1158
1223
  - test/fixtures/stylesheets/valid/config.rb
1159
1224
  - test/fixtures/stylesheets/valid/sass/simple.sass
1160
1225
  - test/helpers/command_line.rb
1226
+ - test/helpers/command_line.rbc
1161
1227
  - test/helpers/diff.rb
1228
+ - test/helpers/diff.rbc
1162
1229
  - test/helpers/io.rb
1230
+ - test/helpers/io.rbc
1163
1231
  - test/helpers/rails.rb
1232
+ - test/helpers/rails.rbc
1164
1233
  - test/helpers/test_case.rb
1234
+ - test/helpers/test_case.rbc
1165
1235
  - test/integrations/compass_test.rb
1236
+ - test/integrations/compass_test.rbc
1166
1237
  - test/integrations/rails_integration_test.rb
1238
+ - test/integrations/rails_integration_test.rbc
1167
1239
  - test/integrations/sprites_test.rb
1240
+ - test/integrations/sprites_test.rbc
1168
1241
  - test/integrations/test_rails_helper.rb
1169
1242
  - test/test_helper.rb
1170
- - test/tmp/compass_rails/public/images/selectors-sef52c5c63a.png
1243
+ - test/test_helper.rbc
1244
+ - test/tmp/compass_rails/public/images/selectors-s4c703bbc05.png
1171
1245
  - test/units/actions_test.rb
1246
+ - test/units/actions_test.rbc
1172
1247
  - test/units/command_line_test.rb
1248
+ - test/units/command_line_test.rbc
1173
1249
  - test/units/compass_png_test.rb
1250
+ - test/units/compass_png_test.rbc
1174
1251
  - test/units/configuration_test.rb
1252
+ - test/units/configuration_test.rbc
1175
1253
  - test/units/rails_configuration_test.rb
1254
+ - test/units/rails_configuration_test.rbc
1176
1255
  - test/units/sass_extensions_test.rb
1256
+ - test/units/sass_extensions_test.rbc
1177
1257
  - test/units/sprites/engine_test.rb
1258
+ - test/units/sprites/engine_test.rbc
1178
1259
  - test/units/sprites/image_row_test.rb
1260
+ - test/units/sprites/image_row_test.rbc
1179
1261
  - test/units/sprites/image_test.rb
1262
+ - test/units/sprites/image_test.rbc
1180
1263
  - test/units/sprites/importer_test.rb
1264
+ - test/units/sprites/importer_test.rbc
1181
1265
  - test/units/sprites/row_fitter_test.rb
1266
+ - test/units/sprites/row_fitter_test.rbc
1182
1267
  - test/units/sprites/sprite_command_test.rb
1268
+ - test/units/sprites/sprite_command_test.rbc
1183
1269
  - test/units/sprites/sprite_map_test.rb
1270
+ - test/units/sprites/sprite_map_test.rbc
1184
1271
  - features/command_line.feature
1185
1272
  - features/extensions.feature
1186
1273
  - features/rails_integration.feature
1187
1274
  - features/step_definitions/command_line_steps.rb
1188
1275
  - features/step_definitions/extension_steps.rb
1189
- has_rdoc: true
1190
1276
  homepage: http://compass-style.org
1191
1277
  licenses: []
1192
-
1193
1278
  post_install_message:
1194
1279
  rdoc_options: []
1195
-
1196
- require_paths:
1280
+ require_paths:
1197
1281
  - lib
1198
- required_ruby_version: !ruby/object:Gem::Requirement
1282
+ required_ruby_version: !ruby/object:Gem::Requirement
1199
1283
  none: false
1200
- requirements:
1201
- - - ">="
1202
- - !ruby/object:Gem::Version
1203
- version: "0"
1204
- required_rubygems_version: !ruby/object:Gem::Requirement
1284
+ requirements:
1285
+ - - ! '>='
1286
+ - !ruby/object:Gem::Version
1287
+ version: '0'
1288
+ required_rubygems_version: !ruby/object:Gem::Requirement
1205
1289
  none: false
1206
- requirements:
1207
- - - ">"
1208
- - !ruby/object:Gem::Version
1290
+ requirements:
1291
+ - - ! '>'
1292
+ - !ruby/object:Gem::Version
1209
1293
  version: 1.3.1
1210
1294
  requirements: []
1211
-
1212
1295
  rubyforge_project:
1213
- rubygems_version: 1.5.3
1296
+ rubygems_version: 1.8.10
1214
1297
  signing_key:
1215
1298
  specification_version: 3
1216
1299
  summary: A Real Stylesheet Framework
1217
- test_files:
1300
+ test_files:
1301
+ - test/fixtures/extensions/only_stylesheets/compass_init.rb
1302
+ - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
1303
+ - test/fixtures/fonts/bgrove.base64.txt
1304
+ - test/fixtures/fonts/bgrove.ttf
1218
1305
  - test/fixtures/sprites/public/images/bad_extensions/ten-by-ten.gif
1219
1306
  - test/fixtures/sprites/public/images/bad_extensions/twenty-by-twenty.jpg
1307
+ - test/fixtures/sprites/public/images/bool/false.png
1308
+ - test/fixtures/sprites/public/images/bool/true.png
1220
1309
  - test/fixtures/sprites/public/images/colors/blue.png
1221
1310
  - test/fixtures/sprites/public/images/colors/yellow.png
1222
1311
  - test/fixtures/sprites/public/images/image_row/large.png
@@ -1315,6 +1404,8 @@ test_files:
1315
1404
  - test/fixtures/stylesheets/compass/css/stretching.css
1316
1405
  - test/fixtures/stylesheets/compass/css/text_shadow.css
1317
1406
  - test/fixtures/stylesheets/compass/css/transform.css
1407
+ - test/fixtures/stylesheets/compass/css/transition.css
1408
+ - test/fixtures/stylesheets/compass/css/user-interface.css
1318
1409
  - test/fixtures/stylesheets/compass/css/utilities.css
1319
1410
  - test/fixtures/stylesheets/compass/css/vertical_rhythm.css
1320
1411
  - test/fixtures/stylesheets/compass/images/100x150.gif
@@ -1569,7 +1660,7 @@ test_files:
1569
1660
  - test/fixtures/stylesheets/compass/images/flag/za.png
1570
1661
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1571
1662
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1572
- - test/fixtures/stylesheets/compass/images/flag-s8c3c755a68.png
1663
+ - test/fixtures/stylesheets/compass/images/flag-s8f1e8fdb9b.png
1573
1664
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1574
1665
  - test/fixtures/stylesheets/compass/sass/box.sass
1575
1666
  - test/fixtures/stylesheets/compass/sass/box_shadow.scss
@@ -1591,8 +1682,14 @@ test_files:
1591
1682
  - test/fixtures/stylesheets/compass/sass/stretching.sass
1592
1683
  - test/fixtures/stylesheets/compass/sass/text_shadow.scss
1593
1684
  - test/fixtures/stylesheets/compass/sass/transform.scss
1685
+ - test/fixtures/stylesheets/compass/sass/transition.scss
1686
+ - test/fixtures/stylesheets/compass/sass/user-interface.scss
1594
1687
  - test/fixtures/stylesheets/compass/sass/utilities.scss
1595
1688
  - test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
1689
+ - test/fixtures/stylesheets/envtest/config.rb
1690
+ - test/fixtures/stylesheets/envtest/css/env.css
1691
+ - test/fixtures/stylesheets/envtest/sass/env.scss
1692
+ - test/fixtures/stylesheets/envtest/tmp/env.css
1596
1693
  - test/fixtures/stylesheets/error/config.rb
1597
1694
  - test/fixtures/stylesheets/error/sass/screen.sass
1598
1695
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1607,32 +1704,61 @@ test_files:
1607
1704
  - test/fixtures/stylesheets/relative/sass/ie.sass
1608
1705
  - test/fixtures/stylesheets/relative/sass/print.sass
1609
1706
  - test/fixtures/stylesheets/relative/sass/screen.sass
1707
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
1708
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
1709
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
1710
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss
1711
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css
1712
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
1713
+ - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
1610
1714
  - test/fixtures/stylesheets/valid/config.rb
1611
1715
  - test/fixtures/stylesheets/valid/sass/simple.sass
1612
1716
  - test/helpers/command_line.rb
1717
+ - test/helpers/command_line.rbc
1613
1718
  - test/helpers/diff.rb
1719
+ - test/helpers/diff.rbc
1614
1720
  - test/helpers/io.rb
1721
+ - test/helpers/io.rbc
1615
1722
  - test/helpers/rails.rb
1723
+ - test/helpers/rails.rbc
1616
1724
  - test/helpers/test_case.rb
1725
+ - test/helpers/test_case.rbc
1617
1726
  - test/integrations/compass_test.rb
1727
+ - test/integrations/compass_test.rbc
1618
1728
  - test/integrations/rails_integration_test.rb
1729
+ - test/integrations/rails_integration_test.rbc
1619
1730
  - test/integrations/sprites_test.rb
1731
+ - test/integrations/sprites_test.rbc
1620
1732
  - test/integrations/test_rails_helper.rb
1621
1733
  - test/test_helper.rb
1622
- - test/tmp/compass_rails/public/images/selectors-sef52c5c63a.png
1734
+ - test/test_helper.rbc
1735
+ - test/tmp/compass_rails/public/images/selectors-s4c703bbc05.png
1623
1736
  - test/units/actions_test.rb
1737
+ - test/units/actions_test.rbc
1624
1738
  - test/units/command_line_test.rb
1739
+ - test/units/command_line_test.rbc
1625
1740
  - test/units/compass_png_test.rb
1741
+ - test/units/compass_png_test.rbc
1626
1742
  - test/units/configuration_test.rb
1743
+ - test/units/configuration_test.rbc
1627
1744
  - test/units/rails_configuration_test.rb
1745
+ - test/units/rails_configuration_test.rbc
1628
1746
  - test/units/sass_extensions_test.rb
1747
+ - test/units/sass_extensions_test.rbc
1629
1748
  - test/units/sprites/engine_test.rb
1749
+ - test/units/sprites/engine_test.rbc
1630
1750
  - test/units/sprites/image_row_test.rb
1751
+ - test/units/sprites/image_row_test.rbc
1631
1752
  - test/units/sprites/image_test.rb
1753
+ - test/units/sprites/image_test.rbc
1632
1754
  - test/units/sprites/importer_test.rb
1755
+ - test/units/sprites/importer_test.rbc
1633
1756
  - test/units/sprites/row_fitter_test.rb
1757
+ - test/units/sprites/row_fitter_test.rbc
1634
1758
  - test/units/sprites/sprite_command_test.rb
1759
+ - test/units/sprites/sprite_command_test.rbc
1635
1760
  - test/units/sprites/sprite_map_test.rb
1761
+ - test/units/sprites/sprite_map_test.rbc
1636
1762
  - features/command_line.feature
1637
1763
  - features/extensions.feature
1638
1764
  - features/rails_integration.feature