compass 0.12.0 → 0.12.7

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 (212) hide show
  1. checksums.yaml +7 -0
  2. data/README.markdown +18 -46
  3. data/Rakefile +34 -3
  4. data/bin/compass +2 -1
  5. data/features/command_line.feature +1 -0
  6. data/features/step_definitions/command_line_steps.rb +1 -1
  7. data/frameworks/compass/stylesheets/compass/_css3.scss +4 -0
  8. data/frameworks/compass/stylesheets/compass/_support.scss +4 -0
  9. data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +7 -3
  10. data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +4 -10
  11. data/frameworks/compass/stylesheets/compass/css3/_box.scss +2 -2
  12. data/frameworks/compass/stylesheets/compass/css3/_columns.scss +107 -10
  13. data/frameworks/compass/stylesheets/compass/css3/_filter.scss +23 -0
  14. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +4 -4
  15. data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +77 -0
  16. data/frameworks/compass/stylesheets/compass/css3/_images.scss +2 -2
  17. data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +13 -7
  18. data/frameworks/compass/stylesheets/compass/css3/_regions.scss +22 -0
  19. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +52 -13
  20. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +20 -20
  21. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +128 -61
  22. data/frameworks/compass/stylesheets/compass/reset/_utilities.scss +4 -2
  23. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +69 -62
  24. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +35 -9
  25. data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +1 -1
  26. data/lib/compass/actions.rb +6 -4
  27. data/lib/compass/commands.rb +4 -3
  28. data/lib/compass/commands/extension_command.rb +60 -0
  29. data/lib/compass/commands/project_base.rb +7 -1
  30. data/lib/compass/commands/update_project.rb +2 -2
  31. data/lib/compass/compiler.rb +1 -2
  32. data/lib/compass/configuration/adapters.rb +8 -2
  33. data/lib/compass/configuration/data.rb +1 -0
  34. data/lib/compass/exec/global_options_parser.rb +8 -1
  35. data/lib/compass/exec/project_options_parser.rb +8 -0
  36. data/lib/compass/sass_extensions/functions/colors.rb +14 -0
  37. data/lib/compass/sass_extensions/functions/constants.rb +9 -0
  38. data/lib/compass/sass_extensions/functions/font_files.rb +4 -2
  39. data/lib/compass/sass_extensions/functions/gradient_support.rb +11 -4
  40. data/lib/compass/sass_extensions/functions/math.rb +1 -1
  41. data/lib/compass/sass_extensions/functions/sprites.rb +10 -2
  42. data/lib/compass/sass_extensions/sprites/engines.rb +3 -3
  43. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +8 -6
  44. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +3 -2
  45. data/lib/compass/sprite_importer.rb +1 -1
  46. data/lib/compass/version.rb +15 -11
  47. data/test/fixtures/stylesheets/blueprint/css/screen.css +3 -4
  48. data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +6 -8
  49. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -2
  50. data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +1 -1
  51. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +8 -2
  52. data/test/fixtures/stylesheets/compass/css/border_radius.css +0 -6
  53. data/test/fixtures/stylesheets/compass/css/columns.css +126 -12
  54. data/test/fixtures/stylesheets/compass/css/filters.css +29 -0
  55. data/test/fixtures/stylesheets/compass/css/fonts.css +1 -1
  56. data/test/fixtures/stylesheets/compass/css/gradients.css +1 -25
  57. data/test/fixtures/stylesheets/compass/css/grid_background.css +7 -14
  58. data/test/fixtures/stylesheets/compass/css/hyphenation.css +16 -0
  59. data/test/fixtures/stylesheets/compass/css/lists.css +6 -8
  60. data/test/fixtures/stylesheets/compass/css/pie.css +0 -1
  61. data/test/fixtures/stylesheets/compass/css/regions.css +7 -0
  62. data/test/fixtures/stylesheets/compass/css/replacement.css +59 -0
  63. data/test/fixtures/stylesheets/compass/css/reset.css +2 -2
  64. data/test/fixtures/stylesheets/compass/css/text_shadow.css +22 -4
  65. data/test/fixtures/stylesheets/compass/css/transform.css +108 -0
  66. data/test/fixtures/stylesheets/compass/css/transition.css +67 -10
  67. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +25 -25
  68. data/test/fixtures/stylesheets/compass/sass/columns.scss +19 -0
  69. data/test/fixtures/stylesheets/compass/sass/filters.scss +24 -0
  70. data/test/fixtures/stylesheets/compass/sass/gradients.sass +2 -4
  71. data/test/fixtures/stylesheets/compass/sass/hyphenation.scss +11 -0
  72. data/test/fixtures/stylesheets/compass/sass/regions.scss +4 -0
  73. data/test/fixtures/stylesheets/compass/sass/replacement.scss +22 -0
  74. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +6 -1
  75. data/test/fixtures/stylesheets/compass/sass/transition.scss +12 -0
  76. data/test/helpers/test_case.rb +8 -1
  77. data/test/integrations/sprites_test.rb +5 -5
  78. data/test/test_helper.rb +2 -1
  79. data/test/units/compass_module_test.rb +1 -1
  80. data/test/units/configuration_test.rb +15 -0
  81. data/test/units/regressions_test.rb +35 -0
  82. data/test/units/sass_extensions_test.rb +33 -11
  83. metadata +62 -222
  84. data/VERSION.yml +0 -5
  85. data/bin/compass.compiled.rbc +0 -707
  86. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  87. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  88. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  89. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  90. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  91. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf +0 -0
  92. data/lib/compass.rbc +0 -796
  93. data/lib/compass/actions.rbc +0 -2736
  94. data/lib/compass/app_integration.rbc +0 -836
  95. data/lib/compass/app_integration/merb.rbc +0 -106
  96. data/lib/compass/app_integration/rails.rbc +0 -2096
  97. data/lib/compass/app_integration/rails/configuration_defaults.rbc +0 -2430
  98. data/lib/compass/app_integration/rails/installer.rbc +0 -3677
  99. data/lib/compass/app_integration/stand_alone.rbc +0 -589
  100. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +0 -721
  101. data/lib/compass/app_integration/stand_alone/installer.rbc +0 -1487
  102. data/lib/compass/browser_support.rbc +0 -1144
  103. data/lib/compass/commands.rbc +0 -307
  104. data/lib/compass/commands/base.rbc +0 -1044
  105. data/lib/compass/commands/clean_project.rbc +0 -1856
  106. data/lib/compass/commands/create_project.rbc +0 -2691
  107. data/lib/compass/commands/default.rbc +0 -1677
  108. data/lib/compass/commands/generate_grid_background.rbc +0 -1939
  109. data/lib/compass/commands/help.rbc +0 -1921
  110. data/lib/compass/commands/imports.rbc +0 -969
  111. data/lib/compass/commands/installer_command.rbc +0 -807
  112. data/lib/compass/commands/interactive.rbc +0 -1341
  113. data/lib/compass/commands/list_frameworks.rbc +0 -1111
  114. data/lib/compass/commands/print_version.rbc +0 -2478
  115. data/lib/compass/commands/project_base.rbc +0 -2085
  116. data/lib/compass/commands/project_stats.rbc +0 -4202
  117. data/lib/compass/commands/registry.rbc +0 -1350
  118. data/lib/compass/commands/sprite.rbc +0 -2212
  119. data/lib/compass/commands/stamp_pattern.rbc +0 -2011
  120. data/lib/compass/commands/unpack_extension.rbc +0 -2348
  121. data/lib/compass/commands/update_project.rbc +0 -3002
  122. data/lib/compass/commands/validate_project.rbc +0 -1686
  123. data/lib/compass/commands/watch_project.rbc +0 -4155
  124. data/lib/compass/commands/write_configuration.rbc +0 -2896
  125. data/lib/compass/compiler.rbc +0 -4913
  126. data/lib/compass/configuration.rbc +0 -1398
  127. data/lib/compass/configuration/adapters.rbc +0 -2088
  128. data/lib/compass/configuration/comments.rbc +0 -843
  129. data/lib/compass/configuration/data.rbc +0 -2633
  130. data/lib/compass/configuration/defaults.rbc +0 -3617
  131. data/lib/compass/configuration/file_data.rbc +0 -643
  132. data/lib/compass/configuration/helpers.rbc +0 -3500
  133. data/lib/compass/configuration/inheritance.rbc +0 -3592
  134. data/lib/compass/configuration/paths.rbc +0 -412
  135. data/lib/compass/configuration/serialization.rbc +0 -1996
  136. data/lib/compass/dependencies.rbc +0 -232
  137. data/lib/compass/errors.rbc +0 -176
  138. data/lib/compass/exec.rbc +0 -500
  139. data/lib/compass/exec/command_option_parser.rbc +0 -676
  140. data/lib/compass/exec/global_options_parser.rbc +0 -1306
  141. data/lib/compass/exec/helpers.rbc +0 -758
  142. data/lib/compass/exec/project_options_parser.rbc +0 -1515
  143. data/lib/compass/exec/sub_command_ui.rbc +0 -1191
  144. data/lib/compass/frameworks.rbc +0 -3640
  145. data/lib/compass/grid_builder.rbc +0 -0
  146. data/lib/compass/installers.rbc +0 -152
  147. data/lib/compass/installers/bare_installer.rbc +0 -939
  148. data/lib/compass/installers/base.rbc +0 -4427
  149. data/lib/compass/installers/manifest.rbc +0 -3335
  150. data/lib/compass/installers/manifest_installer.rbc +0 -1591
  151. data/lib/compass/installers/template_context.rbc +0 -1030
  152. data/lib/compass/logger.rbc +0 -2317
  153. data/lib/compass/quick_cache.rbc +0 -324
  154. data/lib/compass/sass_extensions.rbc +0 -213
  155. data/lib/compass/sass_extensions/functions.rbc +0 -808
  156. data/lib/compass/sass_extensions/functions/colors.rbc +0 -1279
  157. data/lib/compass/sass_extensions/functions/constants.rbc +0 -1921
  158. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +0 -1966
  159. data/lib/compass/sass_extensions/functions/display.rbc +0 -1227
  160. data/lib/compass/sass_extensions/functions/enumerate.rbc +0 -446
  161. data/lib/compass/sass_extensions/functions/env.rbc +0 -299
  162. data/lib/compass/sass_extensions/functions/font_files.rbc +0 -821
  163. data/lib/compass/sass_extensions/functions/gradient_support.rbc +0 -14147
  164. data/lib/compass/sass_extensions/functions/image_size.rbc +0 -3152
  165. data/lib/compass/sass_extensions/functions/inline_image.rbc +0 -1678
  166. data/lib/compass/sass_extensions/functions/lists.rbc +0 -2601
  167. data/lib/compass/sass_extensions/functions/selectors.rbc +0 -1592
  168. data/lib/compass/sass_extensions/functions/sprites.rbc +0 -3792
  169. data/lib/compass/sass_extensions/functions/trig.rbc +0 -811
  170. data/lib/compass/sass_extensions/functions/urls.rbc +0 -5248
  171. data/lib/compass/sass_extensions/monkey_patches.rbc +0 -134
  172. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +0 -2169
  173. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +0 -660
  174. data/lib/compass/sass_extensions/sprites.rbc +0 -363
  175. data/lib/compass/sass_extensions/sprites/base.rbc +0 -4529
  176. data/lib/compass/sass_extensions/sprites/engines.rbc +0 -662
  177. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +0 -1074
  178. data/lib/compass/sass_extensions/sprites/image.rbc +0 -2961
  179. data/lib/compass/sass_extensions/sprites/image_methods.rbc +0 -900
  180. data/lib/compass/sass_extensions/sprites/image_row.rbc +0 -1168
  181. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +0 -3236
  182. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +0 -2067
  183. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +0 -1991
  184. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +0 -3190
  185. data/lib/compass/sass_extensions/sprites/sprites.rbc +0 -1573
  186. data/lib/compass/sprite_importer.rbc +0 -3573
  187. data/lib/compass/util.rbc +0 -552
  188. data/lib/compass/version.rbc +0 -1245
  189. data/test/fixtures/stylesheets/busted_image_urls/tmp/screen.css +0 -9
  190. data/test/fixtures/stylesheets/envtest/tmp/env.css +0 -2
  191. data/test/helpers/command_line.rbc +0 -2820
  192. data/test/helpers/diff.rbc +0 -1104
  193. data/test/helpers/io.rbc +0 -962
  194. data/test/helpers/rails.rbc +0 -1116
  195. data/test/helpers/test_case.rbc +0 -1255
  196. data/test/integrations/compass_test.rbc +0 -6589
  197. data/test/integrations/rails_integration_test.rbc +0 -1342
  198. data/test/integrations/sprites_test.rbc +0 -6192
  199. data/test/test_helper.rbc +0 -1694
  200. data/test/units/actions_test.rbc +0 -644
  201. data/test/units/command_line_test.rbc +0 -1532
  202. data/test/units/compass_png_test.rbc +0 -0
  203. data/test/units/configuration_test.rbc +0 -3833
  204. data/test/units/rails_configuration_test.rbc +0 -1032
  205. data/test/units/sass_extensions_test.rbc +0 -3586
  206. data/test/units/sprites/engine_test.rbc +0 -962
  207. data/test/units/sprites/image_row_test.rbc +0 -1578
  208. data/test/units/sprites/image_test.rbc +0 -2836
  209. data/test/units/sprites/importer_test.rbc +0 -2620
  210. data/test/units/sprites/row_fitter_test.rbc +0 -1479
  211. data/test/units/sprites/sprite_command_test.rbc +0 -1147
  212. data/test/units/sprites/sprite_map_test.rbc +0 -6515
@@ -0,0 +1,35 @@
1
+ require 'test_helper'
2
+ require 'compass'
3
+ require 'compass/exec'
4
+ require 'stringio'
5
+
6
+ class RegressionsTest < Test::Unit::TestCase
7
+ include Compass::CommandLineHelper
8
+ setup do
9
+ Compass.reset_configuration!
10
+ end
11
+
12
+ after do
13
+ Compass.reset_configuration!
14
+ end
15
+
16
+ def test_issue911_sprites_with_globbing_and_line_comments
17
+ within_tmp_directory do
18
+ compass "create --bare issue911"
19
+ FileUtils.mkdir_p "issue911/images/sprites/a"
20
+ FileUtils.mkdir_p "issue911/images/sprites/b"
21
+ open "issue911/images/sprites/a/foo.png", "wb" do |f|
22
+ f.write(Compass::PNG.new(5,10, [255,0,255]).to_blob)
23
+ end
24
+ open "issue911/images/sprites/b/bar.png", "wb" do |f|
25
+ f.write(Compass::PNG.new(5,10, [255,255,0]).to_blob)
26
+ end
27
+ Dir.chdir "issue911" do
28
+ result = compile_for_project(<<-SCSS)
29
+ @import "sprites/**/*.png";
30
+ SCSS
31
+ Sass::Engine.new(result, :syntax => :scss).render # raises an error if we generated invalid css
32
+ end
33
+ end
34
+ end
35
+ end
@@ -23,7 +23,7 @@ class SassExtensionsTest < Test::Unit::TestCase
23
23
  def test_enumerate
24
24
  assert_equal ".grid-1, .grid-2, .grid-3", evaluate(%Q{enumerate(".grid", 1, 3, "-")})
25
25
  end
26
-
26
+
27
27
  def test_append_selector
28
28
  assert_equal "div.bar", evaluate(%Q{append_selector("div", ".bar")})
29
29
  assert_equal ".foo1.bar1, .foo1.bar2, .foo2.bar1, .foo2.bar2", evaluate(%Q{append_selector(".foo1, .foo2", ".bar1, .bar2")})
@@ -59,30 +59,40 @@ class SassExtensionsTest < Test::Unit::TestCase
59
59
  assert_equal "25%", evaluate("saturation(adjust-saturation(hsl(50deg, 50%, 50%), -25%))")
60
60
  end
61
61
 
62
+ def test_shade
63
+ assert_equal evaluate("mix(black, #ff0, 25%)"), evaluate("shade(#ff0, 25%)")
64
+ assert_equal evaluate("mix(black, #ff0, 0%)"), evaluate("shade(#ff0, 0%)")
65
+ end
66
+
67
+ def test_tint
68
+ assert_equal evaluate("mix(white, #ff0, 75%)"), evaluate("tint(#ff0, 75%)")
69
+ assert_equal evaluate("mix(white, #ff0, 100%)"), evaluate("tint(#ff0, 100%)")
70
+ end
71
+
62
72
  def test_if_function
63
73
  assert_equal "no", evaluate("if(false, yes, no)")
64
74
  assert_equal "yes", evaluate("if(true, yes, no)")
65
75
  end
66
76
 
67
77
  def test_math_functions
68
- assert_equal "0.841", evaluate("sin(1)")
69
- assert_equal "0.841px", evaluate("sin(1px)")
78
+ assert_equal "0.84147", evaluate("sin(1)")
79
+ assert_equal "0.84147px", evaluate("sin(1px)")
70
80
  assert_equal "0.0", evaluate("sin(pi())")
71
81
  assert_equal "1", evaluate("sin(pi() / 2)")
72
82
  assert_equal "0.0", evaluate("sin(180deg)")
73
83
  assert_equal "-1", evaluate("sin(3* pi() / 2)")
74
84
  assert_equal "-1", evaluate("cos(pi())")
75
85
  assert_equal "1", evaluate("cos(360deg)")
76
- assert_equal "-0.176", evaluate("sin(270)")
86
+ assert_equal "-0.17605", evaluate("sin(270)")
77
87
  assert_equal "1", evaluate("cos(2*pi())")
78
88
  assert_equal "0.0", evaluate("cos(pi() / 2)")
79
89
  assert_equal "0.0", evaluate("cos(3* pi() / 2)")
80
90
  assert_equal "0.0", evaluate("tan(pi())")
81
91
  assert_equal "0.0", evaluate("tan(360deg)")
82
- assert_equal "0.959", evaluate("sin(360)")
92
+ assert_equal "0.95892", evaluate("sin(360)")
83
93
  assert evaluate("tan(pi()/2 - 0.0001)").to_f > 1000, evaluate("tan(pi()/2 - 0.0001)")
84
94
  assert evaluate("tan(pi()/2 + 0.0001)").to_f < -1000, evaluate("tan(pi()/2 - 0.0001)")
85
- assert_equal "0.693px", evaluate("logarithm(2px)")
95
+ assert_equal "0.69315px", evaluate("logarithm(2px)")
86
96
  assert_equal "0", evaluate("logarithm(1)")
87
97
  assert_equal "1", evaluate("logarithm(e())")
88
98
  assert_equal "1", evaluate("logarithm($number: e())")
@@ -93,7 +103,7 @@ class SassExtensionsTest < Test::Unit::TestCase
93
103
  assert_equal "5px", evaluate("square-root($number: 25px)")
94
104
  assert_equal "25px", evaluate("pow(5px, 2)")
95
105
  assert_equal "25px", evaluate("pow($number: 5px, $exponent: 2)")
96
- assert_equal "79.432px", evaluate("pow(5px, e())")
106
+ assert_equal "79.43236px", evaluate("pow(5px, e())")
97
107
  end
98
108
 
99
109
  def test_blank
@@ -126,6 +136,18 @@ class SassExtensionsTest < Test::Unit::TestCase
126
136
  evaluate("font-files('/font/name.woff')")
127
137
  end
128
138
 
139
+ assert_nothing_raised Sass::SyntaxError do
140
+ evaluate("font-files('/font/name.svg#fontId')")
141
+ end
142
+
143
+ assert_nothing_raised Sass::SyntaxError do
144
+ evaluate("font-files('/font/name.eot?#iefix')")
145
+ end
146
+
147
+ assert_nothing_raised Sass::SyntaxError do
148
+ evaluate("font-files('/font/name.svg?mightbedynamic=something%20+escaped#fontId')")
149
+ end
150
+
129
151
  assert_raises Sass::SyntaxError do
130
152
  evaluate("font-files('/font/name.ext')")
131
153
  end
@@ -154,16 +176,16 @@ class SassExtensionsTest < Test::Unit::TestCase
154
176
  base64_string = File.read(File.join(Compass.configuration.fonts_path, "bgrove.base64.txt")).chomp
155
177
  assert_equal "url('data:font/truetype;base64,#{base64_string}') format('truetype')", evaluate("inline_font_files('bgrove.ttf', truetype)")
156
178
  end
157
-
158
-
179
+
180
+
159
181
  def test_image_size_should_respond_to_to_path
160
182
  object = mock()
161
183
  object.expects(:to_path).returns('foo.jpg')
162
184
  object.expects(:respond_to?).with(:to_path).returns(true)
163
-
185
+
164
186
  Compass::SassExtensions::Functions::ImageSize::ImageProperties.new(object)
165
187
  end
166
-
188
+
167
189
  def test_reject
168
190
  assert_equal "b d", evaluate("reject(a b c d, a, c)")
169
191
  assert_equal "a b c d", evaluate("reject(a b c d, e)")
metadata CHANGED
@@ -1,54 +1,38 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass
3
3
  version: !ruby/object:Gem::Version
4
- hash: 47
5
- prerelease:
6
- segments:
7
- - 0
8
- - 12
9
- - 0
10
- version: 0.12.0
4
+ version: 0.12.7
11
5
  platform: ruby
12
6
  authors:
13
7
  - Chris Eppstein
8
+ - Scott Davis
14
9
  - Eric A. Meyer
15
10
  - Brandon Mathis
11
+ - Anthony Short
16
12
  - Nico Hagenburger
17
- - Scott Davis
18
13
  autorequire:
19
14
  bindir: bin
20
15
  cert_chain: []
21
16
 
22
- date: 2012-03-12 00:00:00 -07:00
23
- default_executable:
17
+ date: 2014-07-17 00:00:00 Z
24
18
  dependencies:
25
19
  - !ruby/object:Gem::Dependency
26
20
  name: sass
27
21
  prerelease: false
28
22
  requirement: &id001 !ruby/object:Gem::Requirement
29
- none: false
30
23
  requirements:
31
24
  - - ~>
32
25
  - !ruby/object:Gem::Version
33
- hash: 5
34
- segments:
35
- - 3
36
- - 1
37
- version: "3.1"
26
+ version: 3.2.19
38
27
  type: :runtime
39
28
  version_requirements: *id001
40
29
  - !ruby/object:Gem::Dependency
41
30
  name: chunky_png
42
31
  prerelease: false
43
32
  requirement: &id002 !ruby/object:Gem::Requirement
44
- none: false
45
33
  requirements:
46
34
  - - ~>
47
35
  - !ruby/object:Gem::Version
48
- hash: 11
49
- segments:
50
- - 1
51
- - 2
52
36
  version: "1.2"
53
37
  type: :runtime
54
38
  version_requirements: *id002
@@ -56,19 +40,13 @@ dependencies:
56
40
  name: fssm
57
41
  prerelease: false
58
42
  requirement: &id003 !ruby/object:Gem::Requirement
59
- none: false
60
43
  requirements:
61
44
  - - ">="
62
45
  - !ruby/object:Gem::Version
63
- hash: 25
64
- segments:
65
- - 0
66
- - 2
67
- - 7
68
46
  version: 0.2.7
69
47
  type: :runtime
70
48
  version_requirements: *id003
71
- description: Compass is a Sass-based Stylesheet Framework that streamlines the creation and maintainance of CSS.
49
+ description: Compass is a Sass-based Stylesheet Framework that streamlines the creation and maintenance of CSS.
72
50
  email: chris@eppsteins.net
73
51
  executables:
74
52
  - compass
@@ -77,12 +55,11 @@ extensions: []
77
55
  extra_rdoc_files: []
78
56
 
79
57
  files:
80
- - README.markdown
81
58
  - LICENSE.markdown
82
- - VERSION.yml
59
+ - README.markdown
83
60
  - Rakefile
84
61
  - bin/compass
85
- - bin/compass.compiled.rbc
62
+ - examples/README.markdown
86
63
  - examples/blueprint_default/config.rb
87
64
  - examples/blueprint_default/images/grid.png
88
65
  - examples/blueprint_default/index.html.haml
@@ -159,7 +136,6 @@ files:
159
136
  - examples/compass/images/emblem/symbolic-link.png
160
137
  - examples/compass/images/emblem/system.png
161
138
  - examples/compass/images/emblem/unreadable.png
162
- - examples/compass/images/emblem-a043c4f148.png
163
139
  - examples/compass/images/flag/ad.png
164
140
  - examples/compass/images/flag/ae.png
165
141
  - examples/compass/images/flag/af.png
@@ -407,8 +383,6 @@ files:
407
383
  - examples/compass/images/flag/za.png
408
384
  - examples/compass/images/flag/zm.png
409
385
  - examples/compass/images/flag/zw.png
410
- - examples/compass/images/flag-03c3b29b35.png
411
- - examples/compass/images/flag-21cfbfbfc8.png
412
386
  - examples/compass/images/icon-chrome.png
413
387
  - examples/compass/images/icon-firefox.png
414
388
  - examples/compass/images/icon-ie.png
@@ -428,6 +402,8 @@ files:
428
402
  - examples/css3/bootstrap.rb
429
403
  - examples/css3/clean.rb
430
404
  - 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
431
407
  - examples/css3/gradients.html.haml
432
408
  - examples/css3/images/button_bg.png
433
409
  - examples/css3/images/example.png
@@ -442,7 +418,6 @@ files:
442
418
  - examples/ninesixty/config.rb
443
419
  - examples/ninesixty/src/grid.scss
444
420
  - examples/ninesixty/src/text.scss
445
- - examples/README.markdown
446
421
  - examples/susy/bootstrap.rb
447
422
  - examples/susy/clean.rb
448
423
  - examples/susy/config.rb
@@ -459,11 +434,10 @@ files:
459
434
  - examples/yui/templates.html.haml
460
435
  - examples/yui/test.jpg
461
436
  - examples/yui/typography.html.haml
462
- - examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf
463
- - examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf
464
- - examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
465
- - examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
466
- - examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf
437
+ - features/command_line.feature
438
+ - features/extensions.feature
439
+ - features/step_definitions/command_line_steps.rb
440
+ - features/step_definitions/extension_steps.rb
467
441
  - frameworks/blueprint/stylesheets/_blueprint.scss
468
442
  - frameworks/blueprint/stylesheets/blueprint/_buttons.scss
469
443
  - frameworks/blueprint/stylesheets/blueprint/_colors.scss
@@ -488,11 +462,12 @@ files:
488
462
  - frameworks/blueprint/templates/basic/partials/_base.sass
489
463
  - frameworks/blueprint/templates/basic/print.sass
490
464
  - frameworks/blueprint/templates/basic/screen.sass
465
+ - frameworks/blueprint/templates/buttons/buttons.sass
491
466
  - frameworks/blueprint/templates/buttons/buttons/cross.png
492
467
  - frameworks/blueprint/templates/buttons/buttons/key.png
493
468
  - frameworks/blueprint/templates/buttons/buttons/tick.png
494
- - frameworks/blueprint/templates/buttons/buttons.sass
495
469
  - frameworks/blueprint/templates/buttons/manifest.rb
470
+ - frameworks/blueprint/templates/link_icons/link_icons.sass
496
471
  - frameworks/blueprint/templates/link_icons/link_icons/doc.png
497
472
  - frameworks/blueprint/templates/link_icons/link_icons/email.png
498
473
  - frameworks/blueprint/templates/link_icons/link_icons/external.png
@@ -501,7 +476,6 @@ files:
501
476
  - frameworks/blueprint/templates/link_icons/link_icons/pdf.png
502
477
  - frameworks/blueprint/templates/link_icons/link_icons/visited.png
503
478
  - frameworks/blueprint/templates/link_icons/link_icons/xls.png
504
- - frameworks/blueprint/templates/link_icons/link_icons.sass
505
479
  - frameworks/blueprint/templates/link_icons/manifest.rb
506
480
  - frameworks/blueprint/templates/project/grid.png
507
481
  - frameworks/blueprint/templates/project/ie.sass
@@ -536,11 +510,14 @@ files:
536
510
  - frameworks/compass/stylesheets/compass/css3/_box-sizing.scss
537
511
  - frameworks/compass/stylesheets/compass/css3/_box.scss
538
512
  - frameworks/compass/stylesheets/compass/css3/_columns.scss
513
+ - frameworks/compass/stylesheets/compass/css3/_filter.scss
539
514
  - frameworks/compass/stylesheets/compass/css3/_font-face.scss
515
+ - frameworks/compass/stylesheets/compass/css3/_hyphenation.scss
540
516
  - frameworks/compass/stylesheets/compass/css3/_images.scss
541
517
  - frameworks/compass/stylesheets/compass/css3/_inline-block.scss
542
518
  - frameworks/compass/stylesheets/compass/css3/_opacity.scss
543
519
  - frameworks/compass/stylesheets/compass/css3/_pie.scss
520
+ - frameworks/compass/stylesheets/compass/css3/_regions.scss
544
521
  - frameworks/compass/stylesheets/compass/css3/_shared.scss
545
522
  - frameworks/compass/stylesheets/compass/css3/_text-shadow.scss
546
523
  - frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss
@@ -608,211 +585,115 @@ files:
608
585
  - frameworks/compass/templates/pie/LICENSE
609
586
  - frameworks/compass/templates/pie/LICENSE-APACHE2.txt
610
587
  - frameworks/compass/templates/pie/LICENSE-GPL2.txt
611
- - frameworks/compass/templates/pie/manifest.rb
612
588
  - frameworks/compass/templates/pie/PIE.htc
589
+ - frameworks/compass/templates/pie/manifest.rb
613
590
  - frameworks/compass/templates/pie/pie.scss
591
+ - frameworks/compass/templates/project/USAGE.markdown
614
592
  - frameworks/compass/templates/project/ie.sass
615
593
  - frameworks/compass/templates/project/manifest.rb
616
594
  - frameworks/compass/templates/project/print.sass
617
595
  - frameworks/compass/templates/project/screen.sass
618
- - frameworks/compass/templates/project/USAGE.markdown
596
+ - lib/compass.rb
619
597
  - lib/compass/actions.rb
620
- - lib/compass/actions.rbc
621
- - lib/compass/app_integration/merb.rbc
622
- - lib/compass/app_integration/rails/configuration_defaults.rbc
623
- - lib/compass/app_integration/rails/installer.rbc
598
+ - lib/compass/app_integration.rb
624
599
  - lib/compass/app_integration/rails.rb
625
- - lib/compass/app_integration/rails.rbc
600
+ - lib/compass/app_integration/stand_alone.rb
626
601
  - lib/compass/app_integration/stand_alone/configuration_defaults.rb
627
- - lib/compass/app_integration/stand_alone/configuration_defaults.rbc
628
602
  - lib/compass/app_integration/stand_alone/installer.rb
629
- - lib/compass/app_integration/stand_alone/installer.rbc
630
- - lib/compass/app_integration/stand_alone.rb
631
- - lib/compass/app_integration/stand_alone.rbc
632
- - lib/compass/app_integration.rb
633
- - lib/compass/app_integration.rbc
634
603
  - lib/compass/browser_support.rb
635
- - lib/compass/browser_support.rbc
604
+ - lib/compass/commands.rb
636
605
  - lib/compass/commands/base.rb
637
- - lib/compass/commands/base.rbc
638
606
  - lib/compass/commands/clean_project.rb
639
- - lib/compass/commands/clean_project.rbc
640
607
  - lib/compass/commands/create_project.rb
641
- - lib/compass/commands/create_project.rbc
642
608
  - lib/compass/commands/default.rb
643
- - lib/compass/commands/default.rbc
609
+ - lib/compass/commands/extension_command.rb
644
610
  - lib/compass/commands/generate_grid_background.rb
645
- - lib/compass/commands/generate_grid_background.rbc
646
611
  - lib/compass/commands/help.rb
647
- - lib/compass/commands/help.rbc
648
612
  - lib/compass/commands/imports.rb
649
- - lib/compass/commands/imports.rbc
650
613
  - lib/compass/commands/installer_command.rb
651
- - lib/compass/commands/installer_command.rbc
652
614
  - lib/compass/commands/interactive.rb
653
- - lib/compass/commands/interactive.rbc
654
615
  - lib/compass/commands/list_frameworks.rb
655
- - lib/compass/commands/list_frameworks.rbc
656
616
  - lib/compass/commands/print_version.rb
657
- - lib/compass/commands/print_version.rbc
658
617
  - lib/compass/commands/project_base.rb
659
- - lib/compass/commands/project_base.rbc
660
618
  - lib/compass/commands/project_stats.rb
661
- - lib/compass/commands/project_stats.rbc
662
619
  - lib/compass/commands/project_structure.rb
663
620
  - lib/compass/commands/registry.rb
664
- - lib/compass/commands/registry.rbc
665
621
  - lib/compass/commands/sprite.rb
666
- - lib/compass/commands/sprite.rbc
667
622
  - lib/compass/commands/stamp_pattern.rb
668
- - lib/compass/commands/stamp_pattern.rbc
669
623
  - lib/compass/commands/unpack_extension.rb
670
- - lib/compass/commands/unpack_extension.rbc
671
624
  - lib/compass/commands/update_project.rb
672
- - lib/compass/commands/update_project.rbc
673
625
  - lib/compass/commands/validate_project.rb
674
- - lib/compass/commands/validate_project.rbc
675
626
  - lib/compass/commands/watch_project.rb
676
- - lib/compass/commands/watch_project.rbc
677
627
  - lib/compass/commands/write_configuration.rb
678
- - lib/compass/commands/write_configuration.rbc
679
- - lib/compass/commands.rb
680
- - lib/compass/commands.rbc
681
628
  - lib/compass/compiler.rb
682
- - lib/compass/compiler.rbc
629
+ - lib/compass/configuration.rb
683
630
  - lib/compass/configuration/adapters.rb
684
- - lib/compass/configuration/adapters.rbc
685
631
  - lib/compass/configuration/comments.rb
686
- - lib/compass/configuration/comments.rbc
687
632
  - lib/compass/configuration/data.rb
688
- - lib/compass/configuration/data.rbc
689
633
  - lib/compass/configuration/defaults.rb
690
- - lib/compass/configuration/defaults.rbc
691
634
  - lib/compass/configuration/file_data.rb
692
- - lib/compass/configuration/file_data.rbc
693
635
  - lib/compass/configuration/helpers.rb
694
- - lib/compass/configuration/helpers.rbc
695
636
  - lib/compass/configuration/inheritance.rb
696
- - lib/compass/configuration/inheritance.rbc
697
637
  - lib/compass/configuration/paths.rb
698
- - lib/compass/configuration/paths.rbc
699
638
  - lib/compass/configuration/serialization.rb
700
- - lib/compass/configuration/serialization.rbc
701
- - lib/compass/configuration.rb
702
- - lib/compass/configuration.rbc
703
639
  - lib/compass/dependencies.rb
704
- - lib/compass/dependencies.rbc
705
640
  - lib/compass/errors.rb
706
- - lib/compass/errors.rbc
641
+ - lib/compass/exec.rb
707
642
  - lib/compass/exec/command_option_parser.rb
708
- - lib/compass/exec/command_option_parser.rbc
709
643
  - lib/compass/exec/global_options_parser.rb
710
- - lib/compass/exec/global_options_parser.rbc
711
644
  - lib/compass/exec/helpers.rb
712
- - lib/compass/exec/helpers.rbc
713
645
  - lib/compass/exec/project_options_parser.rb
714
- - lib/compass/exec/project_options_parser.rbc
715
646
  - lib/compass/exec/sub_command_ui.rb
716
- - lib/compass/exec/sub_command_ui.rbc
717
647
  - lib/compass/exec/switch_ui.rb
718
- - lib/compass/exec.rb
719
- - lib/compass/exec.rbc
720
648
  - lib/compass/frameworks.rb
721
- - lib/compass/frameworks.rbc
722
649
  - lib/compass/grid_builder.rb
723
- - lib/compass/grid_builder.rbc
650
+ - lib/compass/installers.rb
724
651
  - lib/compass/installers/bare_installer.rb
725
- - lib/compass/installers/bare_installer.rbc
726
652
  - lib/compass/installers/base.rb
727
- - lib/compass/installers/base.rbc
728
653
  - lib/compass/installers/manifest.rb
729
- - lib/compass/installers/manifest.rbc
730
654
  - lib/compass/installers/manifest_installer.rb
731
- - lib/compass/installers/manifest_installer.rbc
732
655
  - lib/compass/installers/template_context.rb
733
- - lib/compass/installers/template_context.rbc
734
- - lib/compass/installers.rb
735
- - lib/compass/installers.rbc
736
656
  - lib/compass/logger.rb
737
- - lib/compass/logger.rbc
738
657
  - lib/compass/quick_cache.rb
739
- - lib/compass/quick_cache.rbc
740
658
  - lib/compass/rails.rb
659
+ - lib/compass/sass_extensions.rb
660
+ - lib/compass/sass_extensions/functions.rb
741
661
  - lib/compass/sass_extensions/functions/colors.rb
742
- - lib/compass/sass_extensions/functions/colors.rbc
743
662
  - lib/compass/sass_extensions/functions/constants.rb
744
- - lib/compass/sass_extensions/functions/constants.rbc
745
663
  - lib/compass/sass_extensions/functions/cross_browser_support.rb
746
- - lib/compass/sass_extensions/functions/cross_browser_support.rbc
747
664
  - lib/compass/sass_extensions/functions/display.rb
748
- - lib/compass/sass_extensions/functions/display.rbc
749
665
  - lib/compass/sass_extensions/functions/enumerate.rb
750
- - lib/compass/sass_extensions/functions/enumerate.rbc
751
666
  - lib/compass/sass_extensions/functions/env.rb
752
- - lib/compass/sass_extensions/functions/env.rbc
753
667
  - lib/compass/sass_extensions/functions/font_files.rb
754
- - lib/compass/sass_extensions/functions/font_files.rbc
755
668
  - lib/compass/sass_extensions/functions/gradient_support.rb
756
- - lib/compass/sass_extensions/functions/gradient_support.rbc
757
669
  - lib/compass/sass_extensions/functions/image_size.rb
758
- - lib/compass/sass_extensions/functions/image_size.rbc
759
670
  - lib/compass/sass_extensions/functions/inline_image.rb
760
- - lib/compass/sass_extensions/functions/inline_image.rbc
761
671
  - lib/compass/sass_extensions/functions/lists.rb
762
- - lib/compass/sass_extensions/functions/lists.rbc
763
672
  - lib/compass/sass_extensions/functions/math.rb
764
673
  - lib/compass/sass_extensions/functions/selectors.rb
765
- - lib/compass/sass_extensions/functions/selectors.rbc
766
674
  - lib/compass/sass_extensions/functions/sprites.rb
767
- - lib/compass/sass_extensions/functions/sprites.rbc
768
- - lib/compass/sass_extensions/functions/trig.rbc
769
675
  - lib/compass/sass_extensions/functions/urls.rb
770
- - lib/compass/sass_extensions/functions/urls.rbc
771
- - lib/compass/sass_extensions/functions.rb
772
- - lib/compass/sass_extensions/functions.rbc
676
+ - lib/compass/sass_extensions/monkey_patches.rb
773
677
  - lib/compass/sass_extensions/monkey_patches/browser_support.rb
774
- - lib/compass/sass_extensions/monkey_patches/browser_support.rbc
775
678
  - lib/compass/sass_extensions/monkey_patches/traversal.rb
776
- - lib/compass/sass_extensions/monkey_patches/traversal.rbc
777
- - lib/compass/sass_extensions/monkey_patches.rb
778
- - lib/compass/sass_extensions/monkey_patches.rbc
779
- - lib/compass/sass_extensions/sprites/base.rbc
780
- - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
781
- - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc
679
+ - lib/compass/sass_extensions/sprites.rb
782
680
  - lib/compass/sass_extensions/sprites/engines.rb
783
- - lib/compass/sass_extensions/sprites/engines.rbc
681
+ - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
784
682
  - lib/compass/sass_extensions/sprites/image.rb
785
- - lib/compass/sass_extensions/sprites/image.rbc
786
683
  - lib/compass/sass_extensions/sprites/image_methods.rb
787
- - lib/compass/sass_extensions/sprites/image_methods.rbc
788
684
  - lib/compass/sass_extensions/sprites/image_row.rb
789
- - lib/compass/sass_extensions/sprites/image_row.rbc
790
685
  - lib/compass/sass_extensions/sprites/layout_methods.rb
791
- - lib/compass/sass_extensions/sprites/layout_methods.rbc
792
686
  - lib/compass/sass_extensions/sprites/row_fitter.rb
793
- - lib/compass/sass_extensions/sprites/row_fitter.rbc
794
687
  - lib/compass/sass_extensions/sprites/sprite_map.rb
795
- - lib/compass/sass_extensions/sprites/sprite_map.rbc
796
688
  - lib/compass/sass_extensions/sprites/sprite_methods.rb
797
- - lib/compass/sass_extensions/sprites/sprite_methods.rbc
798
- - lib/compass/sass_extensions/sprites/sprites.rbc
799
- - lib/compass/sass_extensions/sprites.rb
800
- - lib/compass/sass_extensions/sprites.rbc
801
- - lib/compass/sass_extensions.rb
802
- - lib/compass/sass_extensions.rbc
689
+ - lib/compass/sprite_importer.rb
803
690
  - lib/compass/sprite_importer/binding.rb
804
691
  - lib/compass/sprite_importer/content.erb
805
- - lib/compass/sprite_importer.rb
806
- - lib/compass/sprite_importer.rbc
807
692
  - lib/compass/stats.rb
808
693
  - lib/compass/test_case.rb
809
694
  - lib/compass/util.rb
810
- - lib/compass/util.rbc
811
695
  - lib/compass/validator.rb
812
696
  - lib/compass/version.rb
813
- - lib/compass/version.rbc
814
- - lib/compass.rb
815
- - lib/compass.rbc
816
697
  - test/fixtures/extensions/only_stylesheets/compass_init.rb
817
698
  - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
818
699
  - test/fixtures/fonts/bgrove.base64.txt
@@ -900,7 +781,6 @@ files:
900
781
  - test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
901
782
  - test/fixtures/stylesheets/busted_image_urls/images/grid.png
902
783
  - test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
903
- - test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
904
784
  - test/fixtures/stylesheets/compass/100x150.jpg
905
785
  - test/fixtures/stylesheets/compass/config.rb
906
786
  - test/fixtures/stylesheets/compass/css/background-clip.css
@@ -909,10 +789,12 @@ files:
909
789
  - test/fixtures/stylesheets/compass/css/box.css
910
790
  - test/fixtures/stylesheets/compass/css/box_shadow.css
911
791
  - test/fixtures/stylesheets/compass/css/columns.css
792
+ - test/fixtures/stylesheets/compass/css/filters.css
912
793
  - test/fixtures/stylesheets/compass/css/fonts.css
913
794
  - test/fixtures/stylesheets/compass/css/force-wrap.css
914
795
  - test/fixtures/stylesheets/compass/css/gradients.css
915
796
  - test/fixtures/stylesheets/compass/css/grid_background.css
797
+ - test/fixtures/stylesheets/compass/css/hyphenation.css
916
798
  - test/fixtures/stylesheets/compass/css/image_size.css
917
799
  - test/fixtures/stylesheets/compass/css/images.css
918
800
  - test/fixtures/stylesheets/compass/css/layout.css
@@ -921,6 +803,8 @@ files:
921
803
  - test/fixtures/stylesheets/compass/css/opacity.css
922
804
  - test/fixtures/stylesheets/compass/css/pie.css
923
805
  - test/fixtures/stylesheets/compass/css/print.css
806
+ - test/fixtures/stylesheets/compass/css/regions.css
807
+ - test/fixtures/stylesheets/compass/css/replacement.css
924
808
  - test/fixtures/stylesheets/compass/css/reset.css
925
809
  - test/fixtures/stylesheets/compass/css/sprites.css
926
810
  - test/fixtures/stylesheets/compass/css/stretching.css
@@ -935,6 +819,7 @@ files:
935
819
  - test/fixtures/stylesheets/compass/images/100x150.jpg
936
820
  - test/fixtures/stylesheets/compass/images/100x150.png
937
821
  - test/fixtures/stylesheets/compass/images/4x6.png
822
+ - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
938
823
  - test/fixtures/stylesheets/compass/images/flag/ad.png
939
824
  - test/fixtures/stylesheets/compass/images/flag/ae.png
940
825
  - test/fixtures/stylesheets/compass/images/flag/af.png
@@ -1182,17 +1067,18 @@ files:
1182
1067
  - test/fixtures/stylesheets/compass/images/flag/za.png
1183
1068
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1184
1069
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1185
- - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
1186
1070
  - test/fixtures/stylesheets/compass/sass/background-clip.scss
1187
1071
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1188
1072
  - test/fixtures/stylesheets/compass/sass/box-sizeing.scss
1189
1073
  - test/fixtures/stylesheets/compass/sass/box.sass
1190
1074
  - test/fixtures/stylesheets/compass/sass/box_shadow.scss
1191
1075
  - test/fixtures/stylesheets/compass/sass/columns.scss
1076
+ - test/fixtures/stylesheets/compass/sass/filters.scss
1192
1077
  - test/fixtures/stylesheets/compass/sass/fonts.sass
1193
1078
  - test/fixtures/stylesheets/compass/sass/force-wrap.scss
1194
1079
  - test/fixtures/stylesheets/compass/sass/gradients.sass
1195
1080
  - test/fixtures/stylesheets/compass/sass/grid_background.scss
1081
+ - test/fixtures/stylesheets/compass/sass/hyphenation.scss
1196
1082
  - test/fixtures/stylesheets/compass/sass/image_size.sass
1197
1083
  - test/fixtures/stylesheets/compass/sass/images.scss
1198
1084
  - test/fixtures/stylesheets/compass/sass/layout.sass
@@ -1201,6 +1087,8 @@ files:
1201
1087
  - test/fixtures/stylesheets/compass/sass/opacity.scss
1202
1088
  - test/fixtures/stylesheets/compass/sass/pie.scss
1203
1089
  - test/fixtures/stylesheets/compass/sass/print.sass
1090
+ - test/fixtures/stylesheets/compass/sass/regions.scss
1091
+ - test/fixtures/stylesheets/compass/sass/replacement.scss
1204
1092
  - test/fixtures/stylesheets/compass/sass/reset.sass
1205
1093
  - test/fixtures/stylesheets/compass/sass/sprites.scss
1206
1094
  - test/fixtures/stylesheets/compass/sass/stretching.sass
@@ -1213,7 +1101,6 @@ files:
1213
1101
  - test/fixtures/stylesheets/envtest/config.rb
1214
1102
  - test/fixtures/stylesheets/envtest/css/env.css
1215
1103
  - test/fixtures/stylesheets/envtest/sass/env.scss
1216
- - test/fixtures/stylesheets/envtest/tmp/env.css
1217
1104
  - test/fixtures/stylesheets/error/config.rb
1218
1105
  - test/fixtures/stylesheets/error/sass/screen.sass
1219
1106
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1238,87 +1125,54 @@ files:
1238
1125
  - test/fixtures/stylesheets/valid/config.rb
1239
1126
  - test/fixtures/stylesheets/valid/sass/simple.sass
1240
1127
  - test/helpers/command_line.rb
1241
- - test/helpers/command_line.rbc
1242
1128
  - test/helpers/diff.rb
1243
- - test/helpers/diff.rbc
1244
1129
  - test/helpers/io.rb
1245
- - test/helpers/io.rbc
1246
1130
  - test/helpers/rails.rb
1247
- - test/helpers/rails.rbc
1248
1131
  - test/helpers/test_case.rb
1249
- - test/helpers/test_case.rbc
1250
1132
  - test/integrations/compass_test.rb
1251
- - test/integrations/compass_test.rbc
1252
- - test/integrations/rails_integration_test.rbc
1253
1133
  - test/integrations/sprites_test.rb
1254
- - test/integrations/sprites_test.rbc
1255
1134
  - test/test_helper.rb
1256
- - test/test_helper.rbc
1257
1135
  - test/units/actions_test.rb
1258
- - test/units/actions_test.rbc
1259
1136
  - test/units/command_line_test.rb
1260
- - test/units/command_line_test.rbc
1261
1137
  - test/units/compass_module_test.rb
1262
1138
  - test/units/compass_png_test.rb
1263
- - test/units/compass_png_test.rbc
1264
1139
  - test/units/compiler_test.rb
1265
1140
  - test/units/configuration_test.rb
1266
- - test/units/configuration_test.rbc
1267
- - test/units/rails_configuration_test.rbc
1141
+ - test/units/regressions_test.rb
1268
1142
  - test/units/sass_extensions_test.rb
1269
- - test/units/sass_extensions_test.rbc
1270
1143
  - test/units/sprites/engine_test.rb
1271
- - test/units/sprites/engine_test.rbc
1272
1144
  - test/units/sprites/image_row_test.rb
1273
- - test/units/sprites/image_row_test.rbc
1274
1145
  - test/units/sprites/image_test.rb
1275
- - test/units/sprites/image_test.rbc
1276
1146
  - test/units/sprites/importer_test.rb
1277
- - test/units/sprites/importer_test.rbc
1278
1147
  - test/units/sprites/layout_test.rb
1279
1148
  - test/units/sprites/row_fitter_test.rb
1280
- - test/units/sprites/row_fitter_test.rbc
1281
1149
  - test/units/sprites/sprite_command_test.rb
1282
- - test/units/sprites/sprite_command_test.rbc
1283
1150
  - test/units/sprites/sprite_map_test.rb
1284
- - test/units/sprites/sprite_map_test.rbc
1285
- - features/command_line.feature
1286
- - features/extensions.feature
1287
- - features/step_definitions/command_line_steps.rb
1288
- - features/step_definitions/extension_steps.rb
1289
- has_rdoc: true
1290
1151
  homepage: http://compass-style.org
1291
1152
  licenses: []
1292
1153
 
1154
+ metadata: {}
1155
+
1293
1156
  post_install_message:
1294
1157
  rdoc_options: []
1295
1158
 
1296
1159
  require_paths:
1297
1160
  - lib
1298
1161
  required_ruby_version: !ruby/object:Gem::Requirement
1299
- none: false
1300
1162
  requirements:
1301
- - - ">="
1163
+ - &id004
1164
+ - ">="
1302
1165
  - !ruby/object:Gem::Version
1303
- hash: 3
1304
- segments:
1305
- - 0
1306
1166
  version: "0"
1307
1167
  required_rubygems_version: !ruby/object:Gem::Requirement
1308
- none: false
1309
1168
  requirements:
1310
- - - ">="
1311
- - !ruby/object:Gem::Version
1312
- hash: 3
1313
- segments:
1314
- - 0
1315
- version: "0"
1169
+ - *id004
1316
1170
  requirements: []
1317
1171
 
1318
1172
  rubyforge_project:
1319
- rubygems_version: 1.4.2
1173
+ rubygems_version: 2.2.1
1320
1174
  signing_key:
1321
- specification_version: 3
1175
+ specification_version: 4
1322
1176
  summary: A Real Stylesheet Framework
1323
1177
  test_files:
1324
1178
  - test/fixtures/extensions/only_stylesheets/compass_init.rb
@@ -1408,7 +1262,6 @@ test_files:
1408
1262
  - test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
1409
1263
  - test/fixtures/stylesheets/busted_image_urls/images/grid.png
1410
1264
  - test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
1411
- - test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
1412
1265
  - test/fixtures/stylesheets/compass/100x150.jpg
1413
1266
  - test/fixtures/stylesheets/compass/config.rb
1414
1267
  - test/fixtures/stylesheets/compass/css/background-clip.css
@@ -1417,10 +1270,12 @@ test_files:
1417
1270
  - test/fixtures/stylesheets/compass/css/box.css
1418
1271
  - test/fixtures/stylesheets/compass/css/box_shadow.css
1419
1272
  - test/fixtures/stylesheets/compass/css/columns.css
1273
+ - test/fixtures/stylesheets/compass/css/filters.css
1420
1274
  - test/fixtures/stylesheets/compass/css/fonts.css
1421
1275
  - test/fixtures/stylesheets/compass/css/force-wrap.css
1422
1276
  - test/fixtures/stylesheets/compass/css/gradients.css
1423
1277
  - test/fixtures/stylesheets/compass/css/grid_background.css
1278
+ - test/fixtures/stylesheets/compass/css/hyphenation.css
1424
1279
  - test/fixtures/stylesheets/compass/css/image_size.css
1425
1280
  - test/fixtures/stylesheets/compass/css/images.css
1426
1281
  - test/fixtures/stylesheets/compass/css/layout.css
@@ -1429,6 +1284,8 @@ test_files:
1429
1284
  - test/fixtures/stylesheets/compass/css/opacity.css
1430
1285
  - test/fixtures/stylesheets/compass/css/pie.css
1431
1286
  - test/fixtures/stylesheets/compass/css/print.css
1287
+ - test/fixtures/stylesheets/compass/css/regions.css
1288
+ - test/fixtures/stylesheets/compass/css/replacement.css
1432
1289
  - test/fixtures/stylesheets/compass/css/reset.css
1433
1290
  - test/fixtures/stylesheets/compass/css/sprites.css
1434
1291
  - test/fixtures/stylesheets/compass/css/stretching.css
@@ -1697,10 +1554,12 @@ test_files:
1697
1554
  - test/fixtures/stylesheets/compass/sass/box.sass
1698
1555
  - test/fixtures/stylesheets/compass/sass/box_shadow.scss
1699
1556
  - test/fixtures/stylesheets/compass/sass/columns.scss
1557
+ - test/fixtures/stylesheets/compass/sass/filters.scss
1700
1558
  - test/fixtures/stylesheets/compass/sass/fonts.sass
1701
1559
  - test/fixtures/stylesheets/compass/sass/force-wrap.scss
1702
1560
  - test/fixtures/stylesheets/compass/sass/gradients.sass
1703
1561
  - test/fixtures/stylesheets/compass/sass/grid_background.scss
1562
+ - test/fixtures/stylesheets/compass/sass/hyphenation.scss
1704
1563
  - test/fixtures/stylesheets/compass/sass/image_size.sass
1705
1564
  - test/fixtures/stylesheets/compass/sass/images.scss
1706
1565
  - test/fixtures/stylesheets/compass/sass/layout.sass
@@ -1709,6 +1568,8 @@ test_files:
1709
1568
  - test/fixtures/stylesheets/compass/sass/opacity.scss
1710
1569
  - test/fixtures/stylesheets/compass/sass/pie.scss
1711
1570
  - test/fixtures/stylesheets/compass/sass/print.sass
1571
+ - test/fixtures/stylesheets/compass/sass/regions.scss
1572
+ - test/fixtures/stylesheets/compass/sass/replacement.scss
1712
1573
  - test/fixtures/stylesheets/compass/sass/reset.sass
1713
1574
  - test/fixtures/stylesheets/compass/sass/sprites.scss
1714
1575
  - test/fixtures/stylesheets/compass/sass/stretching.sass
@@ -1721,7 +1582,6 @@ test_files:
1721
1582
  - test/fixtures/stylesheets/envtest/config.rb
1722
1583
  - test/fixtures/stylesheets/envtest/css/env.css
1723
1584
  - test/fixtures/stylesheets/envtest/sass/env.scss
1724
- - test/fixtures/stylesheets/envtest/tmp/env.css
1725
1585
  - test/fixtures/stylesheets/error/config.rb
1726
1586
  - test/fixtures/stylesheets/error/sass/screen.sass
1727
1587
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1746,51 +1606,31 @@ test_files:
1746
1606
  - test/fixtures/stylesheets/valid/config.rb
1747
1607
  - test/fixtures/stylesheets/valid/sass/simple.sass
1748
1608
  - test/helpers/command_line.rb
1749
- - test/helpers/command_line.rbc
1750
1609
  - test/helpers/diff.rb
1751
- - test/helpers/diff.rbc
1752
1610
  - test/helpers/io.rb
1753
- - test/helpers/io.rbc
1754
1611
  - test/helpers/rails.rb
1755
- - test/helpers/rails.rbc
1756
1612
  - test/helpers/test_case.rb
1757
- - test/helpers/test_case.rbc
1758
1613
  - test/integrations/compass_test.rb
1759
- - test/integrations/compass_test.rbc
1760
- - test/integrations/rails_integration_test.rbc
1761
1614
  - test/integrations/sprites_test.rb
1762
- - test/integrations/sprites_test.rbc
1763
1615
  - test/test_helper.rb
1764
- - test/test_helper.rbc
1765
1616
  - test/units/actions_test.rb
1766
- - test/units/actions_test.rbc
1767
1617
  - test/units/command_line_test.rb
1768
- - test/units/command_line_test.rbc
1769
1618
  - test/units/compass_module_test.rb
1770
1619
  - test/units/compass_png_test.rb
1771
- - test/units/compass_png_test.rbc
1772
1620
  - test/units/compiler_test.rb
1773
1621
  - test/units/configuration_test.rb
1774
- - test/units/configuration_test.rbc
1775
- - test/units/rails_configuration_test.rbc
1622
+ - test/units/regressions_test.rb
1776
1623
  - test/units/sass_extensions_test.rb
1777
- - test/units/sass_extensions_test.rbc
1778
1624
  - test/units/sprites/engine_test.rb
1779
- - test/units/sprites/engine_test.rbc
1780
1625
  - test/units/sprites/image_row_test.rb
1781
- - test/units/sprites/image_row_test.rbc
1782
1626
  - test/units/sprites/image_test.rb
1783
- - test/units/sprites/image_test.rbc
1784
1627
  - test/units/sprites/importer_test.rb
1785
- - test/units/sprites/importer_test.rbc
1786
1628
  - test/units/sprites/layout_test.rb
1787
1629
  - test/units/sprites/row_fitter_test.rb
1788
- - test/units/sprites/row_fitter_test.rbc
1789
1630
  - test/units/sprites/sprite_command_test.rb
1790
- - test/units/sprites/sprite_command_test.rbc
1791
1631
  - test/units/sprites/sprite_map_test.rb
1792
- - test/units/sprites/sprite_map_test.rbc
1793
1632
  - features/command_line.feature
1794
1633
  - features/extensions.feature
1795
1634
  - features/step_definitions/command_line_steps.rb
1796
1635
  - features/step_definitions/extension_steps.rb
1636
+ has_rdoc: