compass 0.12.7 → 0.13.alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (216) hide show
  1. data/README.markdown +4 -6
  2. data/VERSION.yml +6 -0
  3. data/bin/compass +1 -2
  4. data/bin/compass.compiled.rbc +707 -0
  5. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  6. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  7. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  8. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  9. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  10. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf +0 -0
  11. data/features/step_definitions/command_line_steps.rb +1 -1
  12. data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +38 -41
  13. data/frameworks/compass/stylesheets/compass/_css3.scss +1 -3
  14. data/frameworks/compass/stylesheets/compass/_support.scss +0 -4
  15. data/frameworks/compass/stylesheets/compass/css3/_animation.scss +127 -0
  16. data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +3 -4
  17. data/frameworks/compass/stylesheets/compass/css3/_box.scss +2 -2
  18. data/frameworks/compass/stylesheets/compass/css3/_columns.scss +11 -97
  19. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +4 -4
  20. data/frameworks/compass/stylesheets/compass/css3/_images.scss +2 -2
  21. data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +7 -13
  22. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +38 -0
  23. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +13 -52
  24. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +14 -14
  25. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +60 -127
  26. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +21 -0
  27. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +8 -6
  28. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +9 -35
  29. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +9 -5
  30. data/lib/compass.rbc +796 -0
  31. data/lib/compass/actions.rb +4 -6
  32. data/lib/compass/actions.rbc +2736 -0
  33. data/lib/compass/app_integration.rbc +836 -0
  34. data/lib/compass/app_integration/merb.rbc +106 -0
  35. data/lib/compass/app_integration/rails.rbc +2096 -0
  36. data/lib/compass/app_integration/rails/configuration_defaults.rbc +2430 -0
  37. data/lib/compass/app_integration/rails/installer.rbc +3677 -0
  38. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  39. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  40. data/lib/compass/app_integration/stand_alone/installer.rbc +1487 -0
  41. data/lib/compass/browser_support.rbc +1144 -0
  42. data/lib/compass/commands.rbc +307 -0
  43. data/lib/compass/commands/base.rbc +1044 -0
  44. data/lib/compass/commands/clean_project.rbc +1856 -0
  45. data/lib/compass/commands/create_project.rbc +2691 -0
  46. data/lib/compass/commands/default.rbc +1677 -0
  47. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  48. data/lib/compass/commands/help.rbc +1921 -0
  49. data/lib/compass/commands/imports.rbc +969 -0
  50. data/lib/compass/commands/installer_command.rbc +807 -0
  51. data/lib/compass/commands/interactive.rbc +1341 -0
  52. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  53. data/lib/compass/commands/print_version.rbc +2478 -0
  54. data/lib/compass/commands/project_base.rb +1 -7
  55. data/lib/compass/commands/project_base.rbc +2085 -0
  56. data/lib/compass/commands/project_stats.rbc +4202 -0
  57. data/lib/compass/commands/registry.rbc +1350 -0
  58. data/lib/compass/commands/sprite.rbc +2212 -0
  59. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  60. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  61. data/lib/compass/commands/update_project.rb +2 -2
  62. data/lib/compass/commands/update_project.rbc +3002 -0
  63. data/lib/compass/commands/validate_project.rbc +1686 -0
  64. data/lib/compass/commands/watch_project.rbc +4155 -0
  65. data/lib/compass/commands/write_configuration.rbc +2896 -0
  66. data/lib/compass/compiler.rb +2 -1
  67. data/lib/compass/compiler.rbc +4913 -0
  68. data/lib/compass/configuration.rbc +1398 -0
  69. data/lib/compass/configuration/adapters.rbc +2088 -0
  70. data/lib/compass/configuration/comments.rbc +843 -0
  71. data/lib/compass/configuration/data.rbc +2633 -0
  72. data/lib/compass/configuration/defaults.rbc +3617 -0
  73. data/lib/compass/configuration/file_data.rbc +643 -0
  74. data/lib/compass/configuration/helpers.rbc +3500 -0
  75. data/lib/compass/configuration/inheritance.rbc +3592 -0
  76. data/lib/compass/configuration/paths.rbc +412 -0
  77. data/lib/compass/configuration/serialization.rbc +1996 -0
  78. data/lib/compass/dependencies.rbc +232 -0
  79. data/lib/compass/errors.rbc +176 -0
  80. data/lib/compass/exec.rbc +500 -0
  81. data/lib/compass/exec/command_option_parser.rbc +676 -0
  82. data/lib/compass/exec/global_options_parser.rb +1 -1
  83. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  84. data/lib/compass/exec/helpers.rbc +758 -0
  85. data/lib/compass/exec/project_options_parser.rb +0 -8
  86. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  87. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  88. data/lib/compass/frameworks.rbc +3640 -0
  89. data/lib/compass/grid_builder.rbc +0 -0
  90. data/lib/compass/installers.rbc +152 -0
  91. data/lib/compass/installers/bare_installer.rbc +939 -0
  92. data/lib/compass/installers/base.rbc +4427 -0
  93. data/lib/compass/installers/manifest.rbc +3335 -0
  94. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  95. data/lib/compass/installers/template_context.rbc +1030 -0
  96. data/lib/compass/logger.rbc +2317 -0
  97. data/lib/compass/quick_cache.rbc +324 -0
  98. data/lib/compass/sass_extensions.rbc +213 -0
  99. data/lib/compass/sass_extensions/functions.rbc +808 -0
  100. data/lib/compass/sass_extensions/functions/colors.rb +0 -14
  101. data/lib/compass/sass_extensions/functions/colors.rbc +1279 -0
  102. data/lib/compass/sass_extensions/functions/constants.rb +0 -9
  103. data/lib/compass/sass_extensions/functions/constants.rbc +1921 -0
  104. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1966 -0
  105. data/lib/compass/sass_extensions/functions/display.rbc +1227 -0
  106. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  107. data/lib/compass/sass_extensions/functions/env.rb +18 -0
  108. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  109. data/lib/compass/sass_extensions/functions/font_files.rbc +821 -0
  110. data/lib/compass/sass_extensions/functions/gradient_support.rb +4 -11
  111. data/lib/compass/sass_extensions/functions/gradient_support.rbc +14147 -0
  112. data/lib/compass/sass_extensions/functions/image_size.rbc +3152 -0
  113. data/lib/compass/sass_extensions/functions/inline_image.rbc +1678 -0
  114. data/lib/compass/sass_extensions/functions/lists.rbc +2601 -0
  115. data/lib/compass/sass_extensions/functions/math.rb +1 -1
  116. data/lib/compass/sass_extensions/functions/selectors.rbc +1592 -0
  117. data/lib/compass/sass_extensions/functions/sprites.rb +11 -14
  118. data/lib/compass/sass_extensions/functions/sprites.rbc +3792 -0
  119. data/lib/compass/sass_extensions/functions/trig.rbc +811 -0
  120. data/lib/compass/sass_extensions/functions/urls.rbc +5248 -0
  121. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  122. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2169 -0
  123. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +660 -0
  124. data/lib/compass/sass_extensions/sprites.rbc +363 -0
  125. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  126. data/lib/compass/sass_extensions/sprites/engines.rb +3 -3
  127. data/lib/compass/sass_extensions/sprites/engines.rbc +662 -0
  128. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +6 -8
  129. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +1074 -0
  130. data/lib/compass/sass_extensions/sprites/image.rbc +2961 -0
  131. data/lib/compass/sass_extensions/sprites/image_methods.rb +1 -0
  132. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  133. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  134. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  135. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  136. data/lib/compass/sass_extensions/sprites/sprite_map.rb +0 -1
  137. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +1991 -0
  138. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +3 -13
  139. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  140. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  141. data/lib/compass/sprite_importer.rb +6 -10
  142. data/lib/compass/sprite_importer.rbc +3573 -0
  143. data/lib/compass/sprite_importer/content.erb +14 -12
  144. data/lib/compass/util.rbc +552 -0
  145. data/lib/compass/version.rb +11 -15
  146. data/lib/compass/version.rbc +1245 -0
  147. data/test/fixtures/sprites/public/images/numeric/200.png +0 -0
  148. data/test/fixtures/stylesheets/blueprint/css/screen.css +3 -2
  149. data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +8 -6
  150. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +2 -1
  151. data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +1 -1
  152. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +2 -41
  153. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +3 -5
  154. data/test/fixtures/stylesheets/busted_image_urls/tmp/screen.css +9 -0
  155. data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +41 -0
  156. data/test/fixtures/stylesheets/compass/css/animation.css +41 -0
  157. data/test/fixtures/stylesheets/compass/css/columns.css +12 -120
  158. data/test/fixtures/stylesheets/compass/css/fonts.css +1 -1
  159. data/test/fixtures/stylesheets/compass/css/gradients.css +25 -1
  160. data/test/fixtures/stylesheets/compass/css/grid_background.css +14 -7
  161. data/test/fixtures/stylesheets/compass/css/lists.css +8 -6
  162. data/test/fixtures/stylesheets/compass/css/pie.css +1 -0
  163. data/test/fixtures/stylesheets/compass/css/reset.css +1 -1
  164. data/test/fixtures/stylesheets/compass/css/text_shadow.css +4 -22
  165. data/test/fixtures/stylesheets/compass/css/transition.css +16 -66
  166. data/test/fixtures/stylesheets/compass/css/user-interface.css +10 -0
  167. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +21 -21
  168. data/test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss +19 -0
  169. data/test/fixtures/stylesheets/compass/sass/animation.scss +13 -0
  170. data/test/fixtures/stylesheets/compass/sass/columns.scss +0 -18
  171. data/test/fixtures/stylesheets/compass/sass/gradients.sass +4 -2
  172. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +1 -6
  173. data/test/fixtures/stylesheets/compass/sass/transition.scss +1 -12
  174. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +7 -0
  175. data/test/fixtures/stylesheets/envtest/css/env.css +8 -0
  176. data/test/fixtures/stylesheets/envtest/sass/env.scss +16 -0
  177. data/test/fixtures/stylesheets/envtest/tmp/env.css +14 -0
  178. data/test/helpers/command_line.rbc +2820 -0
  179. data/test/helpers/diff.rbc +1104 -0
  180. data/test/helpers/io.rbc +962 -0
  181. data/test/helpers/rails.rbc +1116 -0
  182. data/test/helpers/test_case.rb +1 -8
  183. data/test/helpers/test_case.rbc +1255 -0
  184. data/test/integrations/compass_test.rb +10 -1
  185. data/test/integrations/compass_test.rbc +6589 -0
  186. data/test/integrations/rails_integration_test.rbc +1342 -0
  187. data/test/integrations/sprites_test.rb +70 -27
  188. data/test/integrations/sprites_test.rbc +6192 -0
  189. data/test/test_helper.rb +1 -2
  190. data/test/test_helper.rbc +1694 -0
  191. data/test/units/actions_test.rbc +644 -0
  192. data/test/units/command_line_test.rbc +1532 -0
  193. data/test/units/compass_module_test.rb +1 -1
  194. data/test/units/compass_png_test.rbc +0 -0
  195. data/test/units/configuration_test.rbc +3833 -0
  196. data/test/units/rails_configuration_test.rbc +1032 -0
  197. data/test/units/sass_extensions_test.rb +11 -21
  198. data/test/units/sass_extensions_test.rbc +3586 -0
  199. data/test/units/sprites/engine_test.rbc +962 -0
  200. data/test/units/sprites/image_row_test.rbc +1578 -0
  201. data/test/units/sprites/image_test.rbc +2836 -0
  202. data/test/units/sprites/importer_test.rbc +2620 -0
  203. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  204. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  205. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  206. metadata +241 -94
  207. checksums.yaml +0 -7
  208. data/frameworks/compass/stylesheets/compass/css3/_filter.scss +0 -23
  209. data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +0 -77
  210. data/test/fixtures/stylesheets/compass/css/filters.css +0 -29
  211. data/test/fixtures/stylesheets/compass/css/hyphenation.css +0 -16
  212. data/test/fixtures/stylesheets/compass/css/replacement.css +0 -59
  213. data/test/fixtures/stylesheets/compass/sass/filters.scss +0 -24
  214. data/test/fixtures/stylesheets/compass/sass/hyphenation.scss +0 -11
  215. data/test/fixtures/stylesheets/compass/sass/replacement.scss +0 -22
  216. data/test/units/regressions_test.rb +0 -35
metadata CHANGED
@@ -1,9 +1,10 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: compass
3
- version: !ruby/object:Gem::Version
4
- version: 0.12.7
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.13.alpha.0
5
+ prerelease: 5
5
6
  platform: ruby
6
- authors:
7
+ authors:
7
8
  - Chris Eppstein
8
9
  - Scott Davis
9
10
  - Eric A. Meyer
@@ -13,53 +14,55 @@ authors:
13
14
  autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
-
17
- date: 2014-07-17 00:00:00 Z
18
- dependencies:
19
- - !ruby/object:Gem::Dependency
17
+ date: 2012-05-06 00:00:00.000000000Z
18
+ dependencies:
19
+ - !ruby/object:Gem::Dependency
20
20
  name: sass
21
- prerelease: false
22
- requirement: &id001 !ruby/object:Gem::Requirement
23
- requirements:
21
+ requirement: &70099030004620 !ruby/object:Gem::Requirement
22
+ none: false
23
+ requirements:
24
24
  - - ~>
25
- - !ruby/object:Gem::Version
26
- version: 3.2.19
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.0.alpha.93
27
27
  type: :runtime
28
- version_requirements: *id001
29
- - !ruby/object:Gem::Dependency
30
- name: chunky_png
31
28
  prerelease: false
32
- requirement: &id002 !ruby/object:Gem::Requirement
33
- requirements:
29
+ version_requirements: *70099030004620
30
+ - !ruby/object:Gem::Dependency
31
+ name: chunky_png
32
+ requirement: &70099030004080 !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
34
35
  - - ~>
35
- - !ruby/object:Gem::Version
36
- version: "1.2"
36
+ - !ruby/object:Gem::Version
37
+ version: '1.2'
37
38
  type: :runtime
38
- version_requirements: *id002
39
- - !ruby/object:Gem::Dependency
40
- name: fssm
41
39
  prerelease: false
42
- requirement: &id003 !ruby/object:Gem::Requirement
43
- requirements:
44
- - - ">="
45
- - !ruby/object:Gem::Version
40
+ version_requirements: *70099030004080
41
+ - !ruby/object:Gem::Dependency
42
+ name: fssm
43
+ requirement: &70099030003600 !ruby/object:Gem::Requirement
44
+ none: false
45
+ requirements:
46
+ - - ! '>='
47
+ - !ruby/object:Gem::Version
46
48
  version: 0.2.7
47
49
  type: :runtime
48
- version_requirements: *id003
49
- description: Compass is a Sass-based Stylesheet Framework that streamlines the creation and maintenance of CSS.
50
+ prerelease: false
51
+ version_requirements: *70099030003600
52
+ description: Compass is a Sass-based Stylesheet Framework that streamlines the creation
53
+ and maintainance of CSS.
50
54
  email: chris@eppsteins.net
51
- executables:
55
+ executables:
52
56
  - compass
53
57
  extensions: []
54
-
55
58
  extra_rdoc_files: []
56
-
57
- files:
58
- - LICENSE.markdown
59
+ files:
59
60
  - README.markdown
61
+ - LICENSE.markdown
62
+ - VERSION.yml
60
63
  - Rakefile
61
64
  - bin/compass
62
- - examples/README.markdown
65
+ - bin/compass.compiled.rbc
63
66
  - examples/blueprint_default/config.rb
64
67
  - examples/blueprint_default/images/grid.png
65
68
  - examples/blueprint_default/index.html.haml
@@ -136,6 +139,7 @@ files:
136
139
  - examples/compass/images/emblem/symbolic-link.png
137
140
  - examples/compass/images/emblem/system.png
138
141
  - examples/compass/images/emblem/unreadable.png
142
+ - examples/compass/images/emblem-a043c4f148.png
139
143
  - examples/compass/images/flag/ad.png
140
144
  - examples/compass/images/flag/ae.png
141
145
  - examples/compass/images/flag/af.png
@@ -383,6 +387,8 @@ files:
383
387
  - examples/compass/images/flag/za.png
384
388
  - examples/compass/images/flag/zm.png
385
389
  - examples/compass/images/flag/zw.png
390
+ - examples/compass/images/flag-03c3b29b35.png
391
+ - examples/compass/images/flag-21cfbfbfc8.png
386
392
  - examples/compass/images/icon-chrome.png
387
393
  - examples/compass/images/icon-firefox.png
388
394
  - examples/compass/images/icon-ie.png
@@ -402,8 +408,6 @@ files:
402
408
  - examples/css3/bootstrap.rb
403
409
  - examples/css3/clean.rb
404
410
  - examples/css3/config.rb
405
- - examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
406
- - examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
407
411
  - examples/css3/gradients.html.haml
408
412
  - examples/css3/images/button_bg.png
409
413
  - examples/css3/images/example.png
@@ -418,6 +422,7 @@ files:
418
422
  - examples/ninesixty/config.rb
419
423
  - examples/ninesixty/src/grid.scss
420
424
  - examples/ninesixty/src/text.scss
425
+ - examples/README.markdown
421
426
  - examples/susy/bootstrap.rb
422
427
  - examples/susy/clean.rb
423
428
  - examples/susy/config.rb
@@ -434,10 +439,11 @@ files:
434
439
  - examples/yui/templates.html.haml
435
440
  - examples/yui/test.jpg
436
441
  - examples/yui/typography.html.haml
437
- - features/command_line.feature
438
- - features/extensions.feature
439
- - features/step_definitions/command_line_steps.rb
440
- - features/step_definitions/extension_steps.rb
442
+ - examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf
443
+ - examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf
444
+ - examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
445
+ - examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
446
+ - examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf
441
447
  - frameworks/blueprint/stylesheets/_blueprint.scss
442
448
  - frameworks/blueprint/stylesheets/blueprint/_buttons.scss
443
449
  - frameworks/blueprint/stylesheets/blueprint/_colors.scss
@@ -462,12 +468,11 @@ files:
462
468
  - frameworks/blueprint/templates/basic/partials/_base.sass
463
469
  - frameworks/blueprint/templates/basic/print.sass
464
470
  - frameworks/blueprint/templates/basic/screen.sass
465
- - frameworks/blueprint/templates/buttons/buttons.sass
466
471
  - frameworks/blueprint/templates/buttons/buttons/cross.png
467
472
  - frameworks/blueprint/templates/buttons/buttons/key.png
468
473
  - frameworks/blueprint/templates/buttons/buttons/tick.png
474
+ - frameworks/blueprint/templates/buttons/buttons.sass
469
475
  - frameworks/blueprint/templates/buttons/manifest.rb
470
- - frameworks/blueprint/templates/link_icons/link_icons.sass
471
476
  - frameworks/blueprint/templates/link_icons/link_icons/doc.png
472
477
  - frameworks/blueprint/templates/link_icons/link_icons/email.png
473
478
  - frameworks/blueprint/templates/link_icons/link_icons/external.png
@@ -476,6 +481,7 @@ files:
476
481
  - frameworks/blueprint/templates/link_icons/link_icons/pdf.png
477
482
  - frameworks/blueprint/templates/link_icons/link_icons/visited.png
478
483
  - frameworks/blueprint/templates/link_icons/link_icons/xls.png
484
+ - frameworks/blueprint/templates/link_icons/link_icons.sass
479
485
  - frameworks/blueprint/templates/link_icons/manifest.rb
480
486
  - frameworks/blueprint/templates/project/grid.png
481
487
  - frameworks/blueprint/templates/project/ie.sass
@@ -501,6 +507,7 @@ files:
501
507
  - frameworks/compass/stylesheets/compass/_support.scss
502
508
  - frameworks/compass/stylesheets/compass/_typography.scss
503
509
  - frameworks/compass/stylesheets/compass/_utilities.scss
510
+ - frameworks/compass/stylesheets/compass/css3/_animation.scss
504
511
  - frameworks/compass/stylesheets/compass/css3/_appearance.scss
505
512
  - frameworks/compass/stylesheets/compass/css3/_background-clip.scss
506
513
  - frameworks/compass/stylesheets/compass/css3/_background-origin.scss
@@ -510,9 +517,7 @@ files:
510
517
  - frameworks/compass/stylesheets/compass/css3/_box-sizing.scss
511
518
  - frameworks/compass/stylesheets/compass/css3/_box.scss
512
519
  - frameworks/compass/stylesheets/compass/css3/_columns.scss
513
- - frameworks/compass/stylesheets/compass/css3/_filter.scss
514
520
  - frameworks/compass/stylesheets/compass/css3/_font-face.scss
515
- - frameworks/compass/stylesheets/compass/css3/_hyphenation.scss
516
521
  - frameworks/compass/stylesheets/compass/css3/_images.scss
517
522
  - frameworks/compass/stylesheets/compass/css3/_inline-block.scss
518
523
  - frameworks/compass/stylesheets/compass/css3/_opacity.scss
@@ -585,115 +590,212 @@ files:
585
590
  - frameworks/compass/templates/pie/LICENSE
586
591
  - frameworks/compass/templates/pie/LICENSE-APACHE2.txt
587
592
  - frameworks/compass/templates/pie/LICENSE-GPL2.txt
588
- - frameworks/compass/templates/pie/PIE.htc
589
593
  - frameworks/compass/templates/pie/manifest.rb
594
+ - frameworks/compass/templates/pie/PIE.htc
590
595
  - frameworks/compass/templates/pie/pie.scss
591
- - frameworks/compass/templates/project/USAGE.markdown
592
596
  - frameworks/compass/templates/project/ie.sass
593
597
  - frameworks/compass/templates/project/manifest.rb
594
598
  - frameworks/compass/templates/project/print.sass
595
599
  - frameworks/compass/templates/project/screen.sass
596
- - lib/compass.rb
600
+ - frameworks/compass/templates/project/USAGE.markdown
597
601
  - lib/compass/actions.rb
598
- - lib/compass/app_integration.rb
602
+ - lib/compass/actions.rbc
603
+ - lib/compass/app_integration/merb.rbc
604
+ - lib/compass/app_integration/rails/configuration_defaults.rbc
605
+ - lib/compass/app_integration/rails/installer.rbc
599
606
  - lib/compass/app_integration/rails.rb
600
- - lib/compass/app_integration/stand_alone.rb
607
+ - lib/compass/app_integration/rails.rbc
601
608
  - lib/compass/app_integration/stand_alone/configuration_defaults.rb
609
+ - lib/compass/app_integration/stand_alone/configuration_defaults.rbc
602
610
  - lib/compass/app_integration/stand_alone/installer.rb
611
+ - lib/compass/app_integration/stand_alone/installer.rbc
612
+ - lib/compass/app_integration/stand_alone.rb
613
+ - lib/compass/app_integration/stand_alone.rbc
614
+ - lib/compass/app_integration.rb
615
+ - lib/compass/app_integration.rbc
603
616
  - lib/compass/browser_support.rb
604
- - lib/compass/commands.rb
617
+ - lib/compass/browser_support.rbc
605
618
  - lib/compass/commands/base.rb
619
+ - lib/compass/commands/base.rbc
606
620
  - lib/compass/commands/clean_project.rb
621
+ - lib/compass/commands/clean_project.rbc
607
622
  - lib/compass/commands/create_project.rb
623
+ - lib/compass/commands/create_project.rbc
608
624
  - lib/compass/commands/default.rb
625
+ - lib/compass/commands/default.rbc
609
626
  - lib/compass/commands/extension_command.rb
610
627
  - lib/compass/commands/generate_grid_background.rb
628
+ - lib/compass/commands/generate_grid_background.rbc
611
629
  - lib/compass/commands/help.rb
630
+ - lib/compass/commands/help.rbc
612
631
  - lib/compass/commands/imports.rb
632
+ - lib/compass/commands/imports.rbc
613
633
  - lib/compass/commands/installer_command.rb
634
+ - lib/compass/commands/installer_command.rbc
614
635
  - lib/compass/commands/interactive.rb
636
+ - lib/compass/commands/interactive.rbc
615
637
  - lib/compass/commands/list_frameworks.rb
638
+ - lib/compass/commands/list_frameworks.rbc
616
639
  - lib/compass/commands/print_version.rb
640
+ - lib/compass/commands/print_version.rbc
617
641
  - lib/compass/commands/project_base.rb
642
+ - lib/compass/commands/project_base.rbc
618
643
  - lib/compass/commands/project_stats.rb
644
+ - lib/compass/commands/project_stats.rbc
619
645
  - lib/compass/commands/project_structure.rb
620
646
  - lib/compass/commands/registry.rb
647
+ - lib/compass/commands/registry.rbc
621
648
  - lib/compass/commands/sprite.rb
649
+ - lib/compass/commands/sprite.rbc
622
650
  - lib/compass/commands/stamp_pattern.rb
651
+ - lib/compass/commands/stamp_pattern.rbc
623
652
  - lib/compass/commands/unpack_extension.rb
653
+ - lib/compass/commands/unpack_extension.rbc
624
654
  - lib/compass/commands/update_project.rb
655
+ - lib/compass/commands/update_project.rbc
625
656
  - lib/compass/commands/validate_project.rb
657
+ - lib/compass/commands/validate_project.rbc
626
658
  - lib/compass/commands/watch_project.rb
659
+ - lib/compass/commands/watch_project.rbc
627
660
  - lib/compass/commands/write_configuration.rb
661
+ - lib/compass/commands/write_configuration.rbc
662
+ - lib/compass/commands.rb
663
+ - lib/compass/commands.rbc
628
664
  - lib/compass/compiler.rb
629
- - lib/compass/configuration.rb
665
+ - lib/compass/compiler.rbc
630
666
  - lib/compass/configuration/adapters.rb
667
+ - lib/compass/configuration/adapters.rbc
631
668
  - lib/compass/configuration/comments.rb
669
+ - lib/compass/configuration/comments.rbc
632
670
  - lib/compass/configuration/data.rb
671
+ - lib/compass/configuration/data.rbc
633
672
  - lib/compass/configuration/defaults.rb
673
+ - lib/compass/configuration/defaults.rbc
634
674
  - lib/compass/configuration/file_data.rb
675
+ - lib/compass/configuration/file_data.rbc
635
676
  - lib/compass/configuration/helpers.rb
677
+ - lib/compass/configuration/helpers.rbc
636
678
  - lib/compass/configuration/inheritance.rb
679
+ - lib/compass/configuration/inheritance.rbc
637
680
  - lib/compass/configuration/paths.rb
681
+ - lib/compass/configuration/paths.rbc
638
682
  - lib/compass/configuration/serialization.rb
683
+ - lib/compass/configuration/serialization.rbc
684
+ - lib/compass/configuration.rb
685
+ - lib/compass/configuration.rbc
639
686
  - lib/compass/dependencies.rb
687
+ - lib/compass/dependencies.rbc
640
688
  - lib/compass/errors.rb
641
- - lib/compass/exec.rb
689
+ - lib/compass/errors.rbc
642
690
  - lib/compass/exec/command_option_parser.rb
691
+ - lib/compass/exec/command_option_parser.rbc
643
692
  - lib/compass/exec/global_options_parser.rb
693
+ - lib/compass/exec/global_options_parser.rbc
644
694
  - lib/compass/exec/helpers.rb
695
+ - lib/compass/exec/helpers.rbc
645
696
  - lib/compass/exec/project_options_parser.rb
697
+ - lib/compass/exec/project_options_parser.rbc
646
698
  - lib/compass/exec/sub_command_ui.rb
699
+ - lib/compass/exec/sub_command_ui.rbc
647
700
  - lib/compass/exec/switch_ui.rb
701
+ - lib/compass/exec.rb
702
+ - lib/compass/exec.rbc
648
703
  - lib/compass/frameworks.rb
704
+ - lib/compass/frameworks.rbc
649
705
  - lib/compass/grid_builder.rb
650
- - lib/compass/installers.rb
706
+ - lib/compass/grid_builder.rbc
651
707
  - lib/compass/installers/bare_installer.rb
708
+ - lib/compass/installers/bare_installer.rbc
652
709
  - lib/compass/installers/base.rb
710
+ - lib/compass/installers/base.rbc
653
711
  - lib/compass/installers/manifest.rb
712
+ - lib/compass/installers/manifest.rbc
654
713
  - lib/compass/installers/manifest_installer.rb
714
+ - lib/compass/installers/manifest_installer.rbc
655
715
  - lib/compass/installers/template_context.rb
716
+ - lib/compass/installers/template_context.rbc
717
+ - lib/compass/installers.rb
718
+ - lib/compass/installers.rbc
656
719
  - lib/compass/logger.rb
720
+ - lib/compass/logger.rbc
657
721
  - lib/compass/quick_cache.rb
722
+ - lib/compass/quick_cache.rbc
658
723
  - lib/compass/rails.rb
659
- - lib/compass/sass_extensions.rb
660
- - lib/compass/sass_extensions/functions.rb
661
724
  - lib/compass/sass_extensions/functions/colors.rb
725
+ - lib/compass/sass_extensions/functions/colors.rbc
662
726
  - lib/compass/sass_extensions/functions/constants.rb
727
+ - lib/compass/sass_extensions/functions/constants.rbc
663
728
  - lib/compass/sass_extensions/functions/cross_browser_support.rb
729
+ - lib/compass/sass_extensions/functions/cross_browser_support.rbc
664
730
  - lib/compass/sass_extensions/functions/display.rb
731
+ - lib/compass/sass_extensions/functions/display.rbc
665
732
  - lib/compass/sass_extensions/functions/enumerate.rb
733
+ - lib/compass/sass_extensions/functions/enumerate.rbc
666
734
  - lib/compass/sass_extensions/functions/env.rb
735
+ - lib/compass/sass_extensions/functions/env.rbc
667
736
  - lib/compass/sass_extensions/functions/font_files.rb
737
+ - lib/compass/sass_extensions/functions/font_files.rbc
668
738
  - lib/compass/sass_extensions/functions/gradient_support.rb
739
+ - lib/compass/sass_extensions/functions/gradient_support.rbc
669
740
  - lib/compass/sass_extensions/functions/image_size.rb
741
+ - lib/compass/sass_extensions/functions/image_size.rbc
670
742
  - lib/compass/sass_extensions/functions/inline_image.rb
743
+ - lib/compass/sass_extensions/functions/inline_image.rbc
671
744
  - lib/compass/sass_extensions/functions/lists.rb
745
+ - lib/compass/sass_extensions/functions/lists.rbc
672
746
  - lib/compass/sass_extensions/functions/math.rb
673
747
  - lib/compass/sass_extensions/functions/selectors.rb
748
+ - lib/compass/sass_extensions/functions/selectors.rbc
674
749
  - lib/compass/sass_extensions/functions/sprites.rb
750
+ - lib/compass/sass_extensions/functions/sprites.rbc
751
+ - lib/compass/sass_extensions/functions/trig.rbc
675
752
  - lib/compass/sass_extensions/functions/urls.rb
676
- - lib/compass/sass_extensions/monkey_patches.rb
753
+ - lib/compass/sass_extensions/functions/urls.rbc
754
+ - lib/compass/sass_extensions/functions.rb
755
+ - lib/compass/sass_extensions/functions.rbc
677
756
  - lib/compass/sass_extensions/monkey_patches/browser_support.rb
757
+ - lib/compass/sass_extensions/monkey_patches/browser_support.rbc
678
758
  - lib/compass/sass_extensions/monkey_patches/traversal.rb
679
- - lib/compass/sass_extensions/sprites.rb
680
- - lib/compass/sass_extensions/sprites/engines.rb
759
+ - lib/compass/sass_extensions/monkey_patches/traversal.rbc
760
+ - lib/compass/sass_extensions/monkey_patches.rb
761
+ - lib/compass/sass_extensions/monkey_patches.rbc
762
+ - lib/compass/sass_extensions/sprites/base.rbc
681
763
  - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
764
+ - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc
765
+ - lib/compass/sass_extensions/sprites/engines.rb
766
+ - lib/compass/sass_extensions/sprites/engines.rbc
682
767
  - lib/compass/sass_extensions/sprites/image.rb
768
+ - lib/compass/sass_extensions/sprites/image.rbc
683
769
  - lib/compass/sass_extensions/sprites/image_methods.rb
770
+ - lib/compass/sass_extensions/sprites/image_methods.rbc
684
771
  - lib/compass/sass_extensions/sprites/image_row.rb
772
+ - lib/compass/sass_extensions/sprites/image_row.rbc
685
773
  - lib/compass/sass_extensions/sprites/layout_methods.rb
774
+ - lib/compass/sass_extensions/sprites/layout_methods.rbc
686
775
  - lib/compass/sass_extensions/sprites/row_fitter.rb
776
+ - lib/compass/sass_extensions/sprites/row_fitter.rbc
687
777
  - lib/compass/sass_extensions/sprites/sprite_map.rb
778
+ - lib/compass/sass_extensions/sprites/sprite_map.rbc
688
779
  - lib/compass/sass_extensions/sprites/sprite_methods.rb
689
- - lib/compass/sprite_importer.rb
780
+ - lib/compass/sass_extensions/sprites/sprite_methods.rbc
781
+ - lib/compass/sass_extensions/sprites/sprites.rbc
782
+ - lib/compass/sass_extensions/sprites.rb
783
+ - lib/compass/sass_extensions/sprites.rbc
784
+ - lib/compass/sass_extensions.rb
785
+ - lib/compass/sass_extensions.rbc
690
786
  - lib/compass/sprite_importer/binding.rb
691
787
  - lib/compass/sprite_importer/content.erb
788
+ - lib/compass/sprite_importer.rb
789
+ - lib/compass/sprite_importer.rbc
692
790
  - lib/compass/stats.rb
693
791
  - lib/compass/test_case.rb
694
792
  - lib/compass/util.rb
793
+ - lib/compass/util.rbc
695
794
  - lib/compass/validator.rb
696
795
  - lib/compass/version.rb
796
+ - lib/compass/version.rbc
797
+ - lib/compass.rb
798
+ - lib/compass.rbc
697
799
  - test/fixtures/extensions/only_stylesheets/compass_init.rb
698
800
  - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
699
801
  - test/fixtures/fonts/bgrove.base64.txt
@@ -712,6 +814,7 @@ files:
712
814
  - test/fixtures/sprites/public/images/ko/default_background.png
713
815
  - test/fixtures/sprites/public/images/ko/starbg26x27.png
714
816
  - test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
817
+ - test/fixtures/sprites/public/images/numeric/200.png
715
818
  - test/fixtures/sprites/public/images/prefix/20-by-20.png
716
819
  - test/fixtures/sprites/public/images/prefix/ten-by-ten.png
717
820
  - test/fixtures/sprites/public/images/repeat_x/five.png
@@ -781,20 +884,21 @@ files:
781
884
  - test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
782
885
  - test/fixtures/stylesheets/busted_image_urls/images/grid.png
783
886
  - test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
887
+ - test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
784
888
  - test/fixtures/stylesheets/compass/100x150.jpg
785
889
  - test/fixtures/stylesheets/compass/config.rb
890
+ - test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
891
+ - test/fixtures/stylesheets/compass/css/animation.css
786
892
  - test/fixtures/stylesheets/compass/css/background-clip.css
787
893
  - test/fixtures/stylesheets/compass/css/border_radius.css
788
894
  - test/fixtures/stylesheets/compass/css/box-sizeing.css
789
895
  - test/fixtures/stylesheets/compass/css/box.css
790
896
  - test/fixtures/stylesheets/compass/css/box_shadow.css
791
897
  - test/fixtures/stylesheets/compass/css/columns.css
792
- - test/fixtures/stylesheets/compass/css/filters.css
793
898
  - test/fixtures/stylesheets/compass/css/fonts.css
794
899
  - test/fixtures/stylesheets/compass/css/force-wrap.css
795
900
  - test/fixtures/stylesheets/compass/css/gradients.css
796
901
  - test/fixtures/stylesheets/compass/css/grid_background.css
797
- - test/fixtures/stylesheets/compass/css/hyphenation.css
798
902
  - test/fixtures/stylesheets/compass/css/image_size.css
799
903
  - test/fixtures/stylesheets/compass/css/images.css
800
904
  - test/fixtures/stylesheets/compass/css/layout.css
@@ -804,7 +908,6 @@ files:
804
908
  - test/fixtures/stylesheets/compass/css/pie.css
805
909
  - test/fixtures/stylesheets/compass/css/print.css
806
910
  - test/fixtures/stylesheets/compass/css/regions.css
807
- - test/fixtures/stylesheets/compass/css/replacement.css
808
911
  - test/fixtures/stylesheets/compass/css/reset.css
809
912
  - test/fixtures/stylesheets/compass/css/sprites.css
810
913
  - test/fixtures/stylesheets/compass/css/stretching.css
@@ -819,7 +922,6 @@ files:
819
922
  - test/fixtures/stylesheets/compass/images/100x150.jpg
820
923
  - test/fixtures/stylesheets/compass/images/100x150.png
821
924
  - test/fixtures/stylesheets/compass/images/4x6.png
822
- - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
823
925
  - test/fixtures/stylesheets/compass/images/flag/ad.png
824
926
  - test/fixtures/stylesheets/compass/images/flag/ae.png
825
927
  - test/fixtures/stylesheets/compass/images/flag/af.png
@@ -1067,18 +1169,19 @@ files:
1067
1169
  - test/fixtures/stylesheets/compass/images/flag/za.png
1068
1170
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1069
1171
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1172
+ - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
1173
+ - test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
1174
+ - test/fixtures/stylesheets/compass/sass/animation.scss
1070
1175
  - test/fixtures/stylesheets/compass/sass/background-clip.scss
1071
1176
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1072
1177
  - test/fixtures/stylesheets/compass/sass/box-sizeing.scss
1073
1178
  - test/fixtures/stylesheets/compass/sass/box.sass
1074
1179
  - test/fixtures/stylesheets/compass/sass/box_shadow.scss
1075
1180
  - test/fixtures/stylesheets/compass/sass/columns.scss
1076
- - test/fixtures/stylesheets/compass/sass/filters.scss
1077
1181
  - test/fixtures/stylesheets/compass/sass/fonts.sass
1078
1182
  - test/fixtures/stylesheets/compass/sass/force-wrap.scss
1079
1183
  - test/fixtures/stylesheets/compass/sass/gradients.sass
1080
1184
  - test/fixtures/stylesheets/compass/sass/grid_background.scss
1081
- - test/fixtures/stylesheets/compass/sass/hyphenation.scss
1082
1185
  - test/fixtures/stylesheets/compass/sass/image_size.sass
1083
1186
  - test/fixtures/stylesheets/compass/sass/images.scss
1084
1187
  - test/fixtures/stylesheets/compass/sass/layout.sass
@@ -1088,7 +1191,6 @@ files:
1088
1191
  - test/fixtures/stylesheets/compass/sass/pie.scss
1089
1192
  - test/fixtures/stylesheets/compass/sass/print.sass
1090
1193
  - test/fixtures/stylesheets/compass/sass/regions.scss
1091
- - test/fixtures/stylesheets/compass/sass/replacement.scss
1092
1194
  - test/fixtures/stylesheets/compass/sass/reset.sass
1093
1195
  - test/fixtures/stylesheets/compass/sass/sprites.scss
1094
1196
  - test/fixtures/stylesheets/compass/sass/stretching.sass
@@ -1101,6 +1203,7 @@ files:
1101
1203
  - test/fixtures/stylesheets/envtest/config.rb
1102
1204
  - test/fixtures/stylesheets/envtest/css/env.css
1103
1205
  - test/fixtures/stylesheets/envtest/sass/env.scss
1206
+ - test/fixtures/stylesheets/envtest/tmp/env.css
1104
1207
  - test/fixtures/stylesheets/error/config.rb
1105
1208
  - test/fixtures/stylesheets/error/sass/screen.sass
1106
1209
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1125,56 +1228,79 @@ files:
1125
1228
  - test/fixtures/stylesheets/valid/config.rb
1126
1229
  - test/fixtures/stylesheets/valid/sass/simple.sass
1127
1230
  - test/helpers/command_line.rb
1231
+ - test/helpers/command_line.rbc
1128
1232
  - test/helpers/diff.rb
1233
+ - test/helpers/diff.rbc
1129
1234
  - test/helpers/io.rb
1235
+ - test/helpers/io.rbc
1130
1236
  - test/helpers/rails.rb
1237
+ - test/helpers/rails.rbc
1131
1238
  - test/helpers/test_case.rb
1239
+ - test/helpers/test_case.rbc
1132
1240
  - test/integrations/compass_test.rb
1241
+ - test/integrations/compass_test.rbc
1242
+ - test/integrations/rails_integration_test.rbc
1133
1243
  - test/integrations/sprites_test.rb
1244
+ - test/integrations/sprites_test.rbc
1134
1245
  - test/test_helper.rb
1246
+ - test/test_helper.rbc
1135
1247
  - test/units/actions_test.rb
1248
+ - test/units/actions_test.rbc
1136
1249
  - test/units/command_line_test.rb
1250
+ - test/units/command_line_test.rbc
1137
1251
  - test/units/compass_module_test.rb
1138
1252
  - test/units/compass_png_test.rb
1253
+ - test/units/compass_png_test.rbc
1139
1254
  - test/units/compiler_test.rb
1140
1255
  - test/units/configuration_test.rb
1141
- - test/units/regressions_test.rb
1256
+ - test/units/configuration_test.rbc
1257
+ - test/units/rails_configuration_test.rbc
1142
1258
  - test/units/sass_extensions_test.rb
1259
+ - test/units/sass_extensions_test.rbc
1143
1260
  - test/units/sprites/engine_test.rb
1261
+ - test/units/sprites/engine_test.rbc
1144
1262
  - test/units/sprites/image_row_test.rb
1263
+ - test/units/sprites/image_row_test.rbc
1145
1264
  - test/units/sprites/image_test.rb
1265
+ - test/units/sprites/image_test.rbc
1146
1266
  - test/units/sprites/importer_test.rb
1267
+ - test/units/sprites/importer_test.rbc
1147
1268
  - test/units/sprites/layout_test.rb
1148
1269
  - test/units/sprites/row_fitter_test.rb
1270
+ - test/units/sprites/row_fitter_test.rbc
1149
1271
  - test/units/sprites/sprite_command_test.rb
1272
+ - test/units/sprites/sprite_command_test.rbc
1150
1273
  - test/units/sprites/sprite_map_test.rb
1274
+ - test/units/sprites/sprite_map_test.rbc
1275
+ - features/command_line.feature
1276
+ - features/extensions.feature
1277
+ - features/step_definitions/command_line_steps.rb
1278
+ - features/step_definitions/extension_steps.rb
1151
1279
  homepage: http://compass-style.org
1152
1280
  licenses: []
1153
-
1154
- metadata: {}
1155
-
1156
1281
  post_install_message:
1157
1282
  rdoc_options: []
1158
-
1159
- require_paths:
1283
+ require_paths:
1160
1284
  - lib
1161
- required_ruby_version: !ruby/object:Gem::Requirement
1162
- requirements:
1163
- - &id004
1164
- - ">="
1165
- - !ruby/object:Gem::Version
1166
- version: "0"
1167
- required_rubygems_version: !ruby/object:Gem::Requirement
1168
- requirements:
1169
- - *id004
1285
+ required_ruby_version: !ruby/object:Gem::Requirement
1286
+ none: false
1287
+ requirements:
1288
+ - - ! '>='
1289
+ - !ruby/object:Gem::Version
1290
+ version: '0'
1291
+ required_rubygems_version: !ruby/object:Gem::Requirement
1292
+ none: false
1293
+ requirements:
1294
+ - - ! '>'
1295
+ - !ruby/object:Gem::Version
1296
+ version: 1.3.1
1170
1297
  requirements: []
1171
-
1172
1298
  rubyforge_project:
1173
- rubygems_version: 2.2.1
1299
+ rubygems_version: 1.8.10
1174
1300
  signing_key:
1175
- specification_version: 4
1301
+ specification_version: 3
1176
1302
  summary: A Real Stylesheet Framework
1177
- test_files:
1303
+ test_files:
1178
1304
  - test/fixtures/extensions/only_stylesheets/compass_init.rb
1179
1305
  - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
1180
1306
  - test/fixtures/fonts/bgrove.base64.txt
@@ -1193,6 +1319,7 @@ test_files:
1193
1319
  - test/fixtures/sprites/public/images/ko/default_background.png
1194
1320
  - test/fixtures/sprites/public/images/ko/starbg26x27.png
1195
1321
  - test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
1322
+ - test/fixtures/sprites/public/images/numeric/200.png
1196
1323
  - test/fixtures/sprites/public/images/prefix/20-by-20.png
1197
1324
  - test/fixtures/sprites/public/images/prefix/ten-by-ten.png
1198
1325
  - test/fixtures/sprites/public/images/repeat_x/five.png
@@ -1262,20 +1389,21 @@ test_files:
1262
1389
  - test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
1263
1390
  - test/fixtures/stylesheets/busted_image_urls/images/grid.png
1264
1391
  - test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
1392
+ - test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
1265
1393
  - test/fixtures/stylesheets/compass/100x150.jpg
1266
1394
  - test/fixtures/stylesheets/compass/config.rb
1395
+ - test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
1396
+ - test/fixtures/stylesheets/compass/css/animation.css
1267
1397
  - test/fixtures/stylesheets/compass/css/background-clip.css
1268
1398
  - test/fixtures/stylesheets/compass/css/border_radius.css
1269
1399
  - test/fixtures/stylesheets/compass/css/box-sizeing.css
1270
1400
  - test/fixtures/stylesheets/compass/css/box.css
1271
1401
  - test/fixtures/stylesheets/compass/css/box_shadow.css
1272
1402
  - test/fixtures/stylesheets/compass/css/columns.css
1273
- - test/fixtures/stylesheets/compass/css/filters.css
1274
1403
  - test/fixtures/stylesheets/compass/css/fonts.css
1275
1404
  - test/fixtures/stylesheets/compass/css/force-wrap.css
1276
1405
  - test/fixtures/stylesheets/compass/css/gradients.css
1277
1406
  - test/fixtures/stylesheets/compass/css/grid_background.css
1278
- - test/fixtures/stylesheets/compass/css/hyphenation.css
1279
1407
  - test/fixtures/stylesheets/compass/css/image_size.css
1280
1408
  - test/fixtures/stylesheets/compass/css/images.css
1281
1409
  - test/fixtures/stylesheets/compass/css/layout.css
@@ -1285,7 +1413,6 @@ test_files:
1285
1413
  - test/fixtures/stylesheets/compass/css/pie.css
1286
1414
  - test/fixtures/stylesheets/compass/css/print.css
1287
1415
  - test/fixtures/stylesheets/compass/css/regions.css
1288
- - test/fixtures/stylesheets/compass/css/replacement.css
1289
1416
  - test/fixtures/stylesheets/compass/css/reset.css
1290
1417
  - test/fixtures/stylesheets/compass/css/sprites.css
1291
1418
  - test/fixtures/stylesheets/compass/css/stretching.css
@@ -1548,18 +1675,18 @@ test_files:
1548
1675
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1549
1676
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1550
1677
  - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
1678
+ - test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
1679
+ - test/fixtures/stylesheets/compass/sass/animation.scss
1551
1680
  - test/fixtures/stylesheets/compass/sass/background-clip.scss
1552
1681
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1553
1682
  - test/fixtures/stylesheets/compass/sass/box-sizeing.scss
1554
1683
  - test/fixtures/stylesheets/compass/sass/box.sass
1555
1684
  - test/fixtures/stylesheets/compass/sass/box_shadow.scss
1556
1685
  - test/fixtures/stylesheets/compass/sass/columns.scss
1557
- - test/fixtures/stylesheets/compass/sass/filters.scss
1558
1686
  - test/fixtures/stylesheets/compass/sass/fonts.sass
1559
1687
  - test/fixtures/stylesheets/compass/sass/force-wrap.scss
1560
1688
  - test/fixtures/stylesheets/compass/sass/gradients.sass
1561
1689
  - test/fixtures/stylesheets/compass/sass/grid_background.scss
1562
- - test/fixtures/stylesheets/compass/sass/hyphenation.scss
1563
1690
  - test/fixtures/stylesheets/compass/sass/image_size.sass
1564
1691
  - test/fixtures/stylesheets/compass/sass/images.scss
1565
1692
  - test/fixtures/stylesheets/compass/sass/layout.sass
@@ -1569,7 +1696,6 @@ test_files:
1569
1696
  - test/fixtures/stylesheets/compass/sass/pie.scss
1570
1697
  - test/fixtures/stylesheets/compass/sass/print.sass
1571
1698
  - test/fixtures/stylesheets/compass/sass/regions.scss
1572
- - test/fixtures/stylesheets/compass/sass/replacement.scss
1573
1699
  - test/fixtures/stylesheets/compass/sass/reset.sass
1574
1700
  - test/fixtures/stylesheets/compass/sass/sprites.scss
1575
1701
  - test/fixtures/stylesheets/compass/sass/stretching.sass
@@ -1582,6 +1708,7 @@ test_files:
1582
1708
  - test/fixtures/stylesheets/envtest/config.rb
1583
1709
  - test/fixtures/stylesheets/envtest/css/env.css
1584
1710
  - test/fixtures/stylesheets/envtest/sass/env.scss
1711
+ - test/fixtures/stylesheets/envtest/tmp/env.css
1585
1712
  - test/fixtures/stylesheets/error/config.rb
1586
1713
  - test/fixtures/stylesheets/error/sass/screen.sass
1587
1714
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1606,31 +1733,51 @@ test_files:
1606
1733
  - test/fixtures/stylesheets/valid/config.rb
1607
1734
  - test/fixtures/stylesheets/valid/sass/simple.sass
1608
1735
  - test/helpers/command_line.rb
1736
+ - test/helpers/command_line.rbc
1609
1737
  - test/helpers/diff.rb
1738
+ - test/helpers/diff.rbc
1610
1739
  - test/helpers/io.rb
1740
+ - test/helpers/io.rbc
1611
1741
  - test/helpers/rails.rb
1742
+ - test/helpers/rails.rbc
1612
1743
  - test/helpers/test_case.rb
1744
+ - test/helpers/test_case.rbc
1613
1745
  - test/integrations/compass_test.rb
1746
+ - test/integrations/compass_test.rbc
1747
+ - test/integrations/rails_integration_test.rbc
1614
1748
  - test/integrations/sprites_test.rb
1749
+ - test/integrations/sprites_test.rbc
1615
1750
  - test/test_helper.rb
1751
+ - test/test_helper.rbc
1616
1752
  - test/units/actions_test.rb
1753
+ - test/units/actions_test.rbc
1617
1754
  - test/units/command_line_test.rb
1755
+ - test/units/command_line_test.rbc
1618
1756
  - test/units/compass_module_test.rb
1619
1757
  - test/units/compass_png_test.rb
1758
+ - test/units/compass_png_test.rbc
1620
1759
  - test/units/compiler_test.rb
1621
1760
  - test/units/configuration_test.rb
1622
- - test/units/regressions_test.rb
1761
+ - test/units/configuration_test.rbc
1762
+ - test/units/rails_configuration_test.rbc
1623
1763
  - test/units/sass_extensions_test.rb
1764
+ - test/units/sass_extensions_test.rbc
1624
1765
  - test/units/sprites/engine_test.rb
1766
+ - test/units/sprites/engine_test.rbc
1625
1767
  - test/units/sprites/image_row_test.rb
1768
+ - test/units/sprites/image_row_test.rbc
1626
1769
  - test/units/sprites/image_test.rb
1770
+ - test/units/sprites/image_test.rbc
1627
1771
  - test/units/sprites/importer_test.rb
1772
+ - test/units/sprites/importer_test.rbc
1628
1773
  - test/units/sprites/layout_test.rb
1629
1774
  - test/units/sprites/row_fitter_test.rb
1775
+ - test/units/sprites/row_fitter_test.rbc
1630
1776
  - test/units/sprites/sprite_command_test.rb
1777
+ - test/units/sprites/sprite_command_test.rbc
1631
1778
  - test/units/sprites/sprite_map_test.rb
1779
+ - test/units/sprites/sprite_map_test.rbc
1632
1780
  - features/command_line.feature
1633
1781
  - features/extensions.feature
1634
1782
  - features/step_definitions/command_line_steps.rb
1635
1783
  - features/step_definitions/extension_steps.rb
1636
- has_rdoc: