compass 0.12.2 → 0.13.alpha.4
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.
- data/README.markdown +5 -5
- data/Rakefile +14 -9
- data/VERSION.yml +5 -4
- data/features/command_line.feature +8 -50
- data/features/step_definitions/command_line_steps.rb +3 -2
- data/frameworks/compass/stylesheets/compass/_css3.scss +3 -0
- data/frameworks/compass/stylesheets/compass/_support.scss +4 -4
- data/frameworks/compass/stylesheets/compass/css3/_animation.scss +121 -0
- data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +14 -9
- data/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +32 -36
- data/frameworks/compass/stylesheets/compass/css3/_background-origin.scss +32 -35
- data/frameworks/compass/stylesheets/compass/css3/_background-size.scss +12 -15
- data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +27 -48
- data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +22 -35
- data/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss +12 -8
- data/frameworks/compass/stylesheets/compass/css3/_box.scss +58 -83
- data/frameworks/compass/stylesheets/compass/css3/_columns.scss +113 -71
- data/frameworks/compass/stylesheets/compass/css3/_filter.scss +38 -18
- data/frameworks/compass/stylesheets/compass/css3/_flexbox.scss +294 -0
- data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +13 -22
- data/frameworks/compass/stylesheets/compass/css3/_images.scss +45 -48
- data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +1 -1
- data/frameworks/compass/stylesheets/compass/css3/_regions.scss +12 -8
- data/frameworks/compass/stylesheets/compass/css3/_selection.scss +31 -0
- data/frameworks/compass/stylesheets/compass/css3/_shared.scss +226 -2
- data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +21 -26
- data/frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss +3 -3
- data/frameworks/compass/stylesheets/compass/css3/_transform.scss +8 -8
- data/frameworks/compass/stylesheets/compass/css3/_transition.scss +3 -3
- data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +43 -4
- data/frameworks/compass/stylesheets/compass/typography/_units.scss +152 -0
- data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +180 -102
- data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +5 -3
- data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +6 -3
- data/frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss +1 -1
- data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +7 -3
- data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +2 -2
- data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +32 -13
- data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss +14 -9
- data/lib/compass/actions.rb +5 -1
- data/lib/compass/commands/project_base.rb +7 -1
- data/lib/compass/commands/update_project.rb +2 -3
- data/lib/compass/commands/watch_project.rb +11 -113
- data/lib/compass/commands.rb +1 -1
- data/lib/compass/compiler.rb +6 -0
- data/lib/compass/configuration/data.rb +1 -1
- data/lib/compass/configuration/helpers.rb +2 -0
- data/lib/compass/exec/global_options_parser.rb +1 -1
- data/lib/compass/exec/project_options_parser.rb +13 -1
- data/lib/compass/logger.rb +2 -0
- data/lib/compass/sass_extensions/functions/cross_browser_support.rb +1 -1
- data/lib/compass/sass_extensions/functions/env.rb +18 -0
- data/lib/compass/sass_extensions/functions/gradient_support.rb +101 -29
- data/lib/compass/sass_extensions/functions/image_size.rb +2 -1
- data/lib/compass/sass_extensions/functions/math.rb +14 -2
- data/lib/compass/sass_extensions/functions/sprites.rb +82 -22
- data/lib/compass/sass_extensions/functions/urls.rb +37 -6
- data/lib/compass/sass_extensions/functions/utility.rb +10 -0
- data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +5 -1
- data/lib/compass/sass_extensions/sprites/engines.rb +3 -3
- data/lib/compass/sass_extensions/sprites/image.rb +7 -2
- data/lib/compass/sass_extensions/sprites/image_methods.rb +5 -1
- data/lib/compass/sass_extensions/sprites/images.rb +29 -0
- data/lib/compass/sass_extensions/sprites/layout/diagonal.rb +42 -0
- data/lib/compass/sass_extensions/sprites/layout/horizontal.rb +66 -0
- data/lib/compass/sass_extensions/sprites/layout/smart.rb +33 -0
- data/lib/compass/sass_extensions/sprites/layout/vertical.rb +68 -0
- data/lib/compass/sass_extensions/sprites/layout.rb +39 -0
- data/lib/compass/sass_extensions/sprites/layout_methods.rb +9 -115
- data/lib/compass/sass_extensions/sprites/sprite_map.rb +5 -1
- data/lib/compass/sass_extensions/sprites/sprite_methods.rb +9 -14
- data/lib/compass/sass_extensions/sprites.rb +2 -0
- data/lib/compass/sprite_importer/content.erb +29 -24
- data/lib/compass/sprite_importer.rb +7 -11
- data/lib/compass/watcher/compiler.rb +59 -0
- data/lib/compass/watcher/project_watcher.rb +111 -0
- data/lib/compass/watcher/watch.rb +33 -0
- data/lib/compass/watcher.rb +11 -0
- data/lib/compass.rb +2 -2
- data/test/fixtures/sprites/public/images/numeric/200.png +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/config.rb +32 -0
- data/test/fixtures/stylesheets/busted_font_urls/css/screen.css +7 -0
- data/test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/sass/screen.sass +11 -0
- data/test/fixtures/stylesheets/busted_font_urls/tmp/screen.css +7 -0
- data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +33 -0
- data/test/fixtures/stylesheets/compass/css/animation.css +33 -0
- data/test/fixtures/stylesheets/compass/css/background-clip.css +5 -0
- data/test/fixtures/stylesheets/compass/css/background-origin.css +15 -0
- data/test/fixtures/stylesheets/compass/css/background-size.css +24 -0
- data/test/fixtures/stylesheets/compass/css/columns.css +32 -61
- data/test/fixtures/stylesheets/compass/css/flexbox.css +121 -0
- data/test/fixtures/stylesheets/compass/css/gradients.css +65 -37
- data/test/fixtures/stylesheets/compass/css/grid_background.css +10 -17
- data/test/fixtures/stylesheets/compass/css/hyphenation.css +4 -2
- data/test/fixtures/stylesheets/compass/css/lists.css +5 -5
- data/test/fixtures/stylesheets/compass/css/pie.css +0 -3
- data/test/fixtures/stylesheets/compass/css/regions.css +4 -2
- data/test/fixtures/stylesheets/compass/css/selection.css +13 -0
- data/test/fixtures/stylesheets/compass/css/sprites.css +251 -250
- data/test/fixtures/stylesheets/compass/css/text_shadow.css +6 -6
- data/test/fixtures/stylesheets/compass/css/transition.css +6 -0
- data/test/fixtures/stylesheets/compass/css/units.css +30 -0
- data/test/fixtures/stylesheets/compass/css/user-interface.css +22 -1
- data/test/fixtures/stylesheets/compass/css/utilities.css +15 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +196 -27
- data/test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png +0 -0
- data/test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss +19 -0
- data/test/fixtures/stylesheets/compass/sass/animation.scss +13 -0
- data/test/fixtures/stylesheets/compass/sass/background-clip.scss +4 -2
- data/test/fixtures/stylesheets/compass/sass/background-origin.scss +10 -0
- data/test/fixtures/stylesheets/compass/sass/background-size.scss +12 -0
- data/test/fixtures/stylesheets/compass/sass/columns.scss +10 -9
- data/test/fixtures/stylesheets/compass/sass/flexbox.scss +44 -0
- data/test/fixtures/stylesheets/compass/sass/gradients.sass +32 -3
- data/test/fixtures/stylesheets/compass/sass/selection.scss +13 -0
- data/test/fixtures/stylesheets/compass/sass/transition.scss +1 -1
- data/test/fixtures/stylesheets/compass/sass/units.scss +45 -0
- data/test/fixtures/stylesheets/compass/sass/user-interface.scss +13 -1
- data/test/fixtures/stylesheets/compass/sass/utilities.scss +10 -0
- data/test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss +208 -7
- data/test/fixtures/stylesheets/envtest/css/env.css +8 -0
- data/test/fixtures/stylesheets/envtest/sass/env.scss +16 -0
- data/test/fixtures/stylesheets/envtest/tmp/env.css +4 -4
- data/test/fixtures/stylesheets/valid/css/simple.css +4 -0
- data/test/helpers/diff.rb +1 -1
- data/test/integrations/compass_test.rb +23 -14
- data/test/integrations/sprites_test.rb +305 -63
- data/test/test_helper.rb +4 -13
- data/test/units/command_line_test.rb +0 -2
- data/test/units/compass_module_test.rb +1 -1
- data/test/units/configuration_test.rb +12 -0
- data/test/units/regressions_test.rb +8 -8
- data/test/units/sass_extensions_test.rb +13 -11
- data/test/units/sass_extenstions/gradients_test.rb +33 -0
- data/test/units/sprites/image_test.rb +5 -0
- data/test/units/sprites/images_test.rb +46 -0
- data/test/units/sprites/layout_test.rb +29 -4
- data/test/units/watcher/compiler_test.rb +39 -0
- data/test/units/watcher/project_watcher_test.rb +73 -0
- data/test/units/watcher/watch_test.rb +42 -0
- metadata +137 -241
- data/examples/compass/images/emblem-a043c4f148.png +0 -0
- data/examples/compass/images/flag-03c3b29b35.png +0 -0
- data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
- data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
- data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
- data/frameworks/blueprint/stylesheets/_blueprint.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/_buttons.scss +0 -101
- data/frameworks/blueprint/stylesheets/blueprint/_colors.scss +0 -36
- data/frameworks/blueprint/stylesheets/blueprint/_debug.scss +0 -28
- data/frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss +0 -88
- data/frameworks/blueprint/stylesheets/blueprint/_form.scss +0 -66
- data/frameworks/blueprint/stylesheets/blueprint/_grid.scss +0 -258
- data/frameworks/blueprint/stylesheets/blueprint/_ie.scss +0 -111
- data/frameworks/blueprint/stylesheets/blueprint/_interaction.scss +0 -66
- data/frameworks/blueprint/stylesheets/blueprint/_link-icons.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/_liquid.scss +0 -152
- data/frameworks/blueprint/stylesheets/blueprint/_print.scss +0 -86
- data/frameworks/blueprint/stylesheets/blueprint/_reset.scss +0 -3
- data/frameworks/blueprint/stylesheets/blueprint/_rtl.scss +0 -121
- data/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +0 -52
- data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +0 -90
- data/frameworks/blueprint/stylesheets/blueprint/_utilities.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +0 -83
- data/frameworks/blueprint/templates/basic/grid.png +0 -0
- data/frameworks/blueprint/templates/basic/ie.sass +0 -4
- data/frameworks/blueprint/templates/basic/manifest.rb +0 -30
- data/frameworks/blueprint/templates/basic/partials/_base.sass +0 -10
- data/frameworks/blueprint/templates/basic/print.sass +0 -4
- data/frameworks/blueprint/templates/basic/screen.sass +0 -12
- data/frameworks/blueprint/templates/buttons/buttons/cross.png +0 -0
- data/frameworks/blueprint/templates/buttons/buttons/key.png +0 -0
- data/frameworks/blueprint/templates/buttons/buttons/tick.png +0 -0
- data/frameworks/blueprint/templates/buttons/buttons.sass +0 -49
- data/frameworks/blueprint/templates/buttons/manifest.rb +0 -17
- data/frameworks/blueprint/templates/link_icons/link_icons/doc.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/email.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/external.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/feed.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/im.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/pdf.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/visited.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/xls.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons.sass +0 -13
- data/frameworks/blueprint/templates/link_icons/manifest.rb +0 -23
- data/frameworks/blueprint/templates/project/grid.png +0 -0
- data/frameworks/blueprint/templates/project/ie.sass +0 -16
- data/frameworks/blueprint/templates/project/manifest.rb +0 -30
- data/frameworks/blueprint/templates/project/partials/_base.sass +0 -11
- data/frameworks/blueprint/templates/project/print.sass +0 -8
- data/frameworks/blueprint/templates/project/screen.sass +0 -46
- data/frameworks/blueprint/templates/semantic/grid.png +0 -0
- data/frameworks/blueprint/templates/semantic/ie.sass +0 -16
- data/frameworks/blueprint/templates/semantic/manifest.rb +0 -33
- data/frameworks/blueprint/templates/semantic/partials/_base.sass +0 -10
- data/frameworks/blueprint/templates/semantic/partials/_form.sass +0 -6
- data/frameworks/blueprint/templates/semantic/partials/_page.sass +0 -17
- data/frameworks/blueprint/templates/semantic/partials/_two_col.sass +0 -38
- data/frameworks/blueprint/templates/semantic/print.sass +0 -5
- data/frameworks/blueprint/templates/semantic/screen.sass +0 -14
- data/lib/compass/commands/generate_grid_background.rb +0 -96
- data/lib/compass/grid_builder.rb +0 -102
- data/test/fixtures/stylesheets/blueprint/config.rb +0 -14
- data/test/fixtures/stylesheets/blueprint/css/ie.css +0 -76
- data/test/fixtures/stylesheets/blueprint/css/print.css +0 -56
- data/test/fixtures/stylesheets/blueprint/css/screen.css +0 -815
- data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +0 -56
- data/test/fixtures/stylesheets/blueprint/css/single-imports/colors.css +0 -80
- data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +0 -11
- data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +0 -30
- data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +0 -42
- data/test/fixtures/stylesheets/blueprint/css/single-imports/grid.css +0 -435
- data/test/fixtures/stylesheets/blueprint/css/single-imports/ie.css +0 -76
- data/test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css +0 -46
- data/test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css +0 -40
- data/test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css +0 -651
- data/test/fixtures/stylesheets/blueprint/css/single-imports/print.css +0 -60
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +0 -69
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +0 -42
- data/test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css +0 -437
- data/test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css +0 -45
- data/test/fixtures/stylesheets/blueprint/css/single-imports/typography.css +0 -146
- data/test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css +0 -35
- data/test/fixtures/stylesheets/blueprint/images/grid.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/doc.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/email.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/external.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/feed.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/im.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/visited.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/xls.png +0 -0
- data/test/fixtures/stylesheets/blueprint/sass/ie.sass +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/print.sass +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/screen.sass +0 -18
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss +0 -4
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss +0 -34
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss +0 -13
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss +0 -1
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss +0 -3
- data/test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png +0 -0
- data/test/units/compass_png_test.rb +0 -46
- /data/{examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf → test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf} +0 -0
metadata
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: compass
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 0
|
|
8
|
-
- 12
|
|
9
|
-
- 2
|
|
10
|
-
version: 0.12.2
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.13.alpha.4
|
|
5
|
+
prerelease: 5
|
|
11
6
|
platform: ruby
|
|
12
|
-
authors:
|
|
7
|
+
authors:
|
|
13
8
|
- Chris Eppstein
|
|
14
9
|
- Scott Davis
|
|
15
10
|
- Eric A. Meyer
|
|
@@ -19,64 +14,64 @@ authors:
|
|
|
19
14
|
autorequire:
|
|
20
15
|
bindir: bin
|
|
21
16
|
cert_chain: []
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
- !ruby/object:Gem::Dependency
|
|
17
|
+
date: 2013-04-03 00:00:00.000000000 Z
|
|
18
|
+
dependencies:
|
|
19
|
+
- !ruby/object:Gem::Dependency
|
|
26
20
|
name: sass
|
|
27
|
-
|
|
28
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
21
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
22
|
none: false
|
|
30
|
-
requirements:
|
|
23
|
+
requirements:
|
|
31
24
|
- - ~>
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
|
|
34
|
-
segments:
|
|
35
|
-
- 3
|
|
36
|
-
- 1
|
|
37
|
-
version: "3.1"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.2.5
|
|
38
27
|
type: :runtime
|
|
39
|
-
version_requirements: *id001
|
|
40
|
-
- !ruby/object:Gem::Dependency
|
|
41
|
-
name: chunky_png
|
|
42
28
|
prerelease: false
|
|
43
|
-
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
44
30
|
none: false
|
|
45
|
-
requirements:
|
|
31
|
+
requirements:
|
|
46
32
|
- - ~>
|
|
47
|
-
- !ruby/object:Gem::Version
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: 3.2.5
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
name: chunky_png
|
|
37
|
+
requirement: !ruby/object:Gem::Requirement
|
|
38
|
+
none: false
|
|
39
|
+
requirements:
|
|
40
|
+
- - ~>
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '1.2'
|
|
53
43
|
type: :runtime
|
|
54
|
-
version_requirements: *id002
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: fssm
|
|
57
44
|
prerelease: false
|
|
58
|
-
|
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
46
|
+
none: false
|
|
47
|
+
requirements:
|
|
48
|
+
- - ~>
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: '1.2'
|
|
51
|
+
- !ruby/object:Gem::Dependency
|
|
52
|
+
name: listen
|
|
53
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
54
|
none: false
|
|
60
|
-
requirements:
|
|
61
|
-
- -
|
|
62
|
-
- !ruby/object:Gem::Version
|
|
63
|
-
|
|
64
|
-
segments:
|
|
65
|
-
- 0
|
|
66
|
-
- 2
|
|
67
|
-
- 7
|
|
68
|
-
version: 0.2.7
|
|
55
|
+
requirements:
|
|
56
|
+
- - <=
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: 0.9.9
|
|
69
59
|
type: :runtime
|
|
70
|
-
|
|
71
|
-
|
|
60
|
+
prerelease: false
|
|
61
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
62
|
+
none: false
|
|
63
|
+
requirements:
|
|
64
|
+
- - <=
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: 0.9.9
|
|
67
|
+
description: Compass is a Sass-based Stylesheet Framework that streamlines the creation
|
|
68
|
+
and maintenance of CSS.
|
|
72
69
|
email: chris@eppsteins.net
|
|
73
|
-
executables:
|
|
70
|
+
executables:
|
|
74
71
|
- compass
|
|
75
72
|
extensions: []
|
|
76
|
-
|
|
77
73
|
extra_rdoc_files: []
|
|
78
|
-
|
|
79
|
-
files:
|
|
74
|
+
files:
|
|
80
75
|
- README.markdown
|
|
81
76
|
- LICENSE.markdown
|
|
82
77
|
- VERSION.yml
|
|
@@ -158,7 +153,6 @@ files:
|
|
|
158
153
|
- examples/compass/images/emblem/symbolic-link.png
|
|
159
154
|
- examples/compass/images/emblem/system.png
|
|
160
155
|
- examples/compass/images/emblem/unreadable.png
|
|
161
|
-
- examples/compass/images/emblem-a043c4f148.png
|
|
162
156
|
- examples/compass/images/flag/ad.png
|
|
163
157
|
- examples/compass/images/flag/ae.png
|
|
164
158
|
- examples/compass/images/flag/af.png
|
|
@@ -406,8 +400,6 @@ files:
|
|
|
406
400
|
- examples/compass/images/flag/za.png
|
|
407
401
|
- examples/compass/images/flag/zm.png
|
|
408
402
|
- examples/compass/images/flag/zw.png
|
|
409
|
-
- examples/compass/images/flag-03c3b29b35.png
|
|
410
|
-
- examples/compass/images/flag-21cfbfbfc8.png
|
|
411
403
|
- examples/compass/images/icon-chrome.png
|
|
412
404
|
- examples/compass/images/icon-firefox.png
|
|
413
405
|
- examples/compass/images/icon-ie.png
|
|
@@ -458,65 +450,8 @@ files:
|
|
|
458
450
|
- examples/yui/templates.html.haml
|
|
459
451
|
- examples/yui/test.jpg
|
|
460
452
|
- examples/yui/typography.html.haml
|
|
461
|
-
- examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf
|
|
462
|
-
- examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf
|
|
463
453
|
- examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
|
|
464
454
|
- examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
|
|
465
|
-
- examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf
|
|
466
|
-
- frameworks/blueprint/stylesheets/_blueprint.scss
|
|
467
|
-
- frameworks/blueprint/stylesheets/blueprint/_buttons.scss
|
|
468
|
-
- frameworks/blueprint/stylesheets/blueprint/_colors.scss
|
|
469
|
-
- frameworks/blueprint/stylesheets/blueprint/_debug.scss
|
|
470
|
-
- frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss
|
|
471
|
-
- frameworks/blueprint/stylesheets/blueprint/_form.scss
|
|
472
|
-
- frameworks/blueprint/stylesheets/blueprint/_grid.scss
|
|
473
|
-
- frameworks/blueprint/stylesheets/blueprint/_ie.scss
|
|
474
|
-
- frameworks/blueprint/stylesheets/blueprint/_interaction.scss
|
|
475
|
-
- frameworks/blueprint/stylesheets/blueprint/_link-icons.scss
|
|
476
|
-
- frameworks/blueprint/stylesheets/blueprint/_liquid.scss
|
|
477
|
-
- frameworks/blueprint/stylesheets/blueprint/_print.scss
|
|
478
|
-
- frameworks/blueprint/stylesheets/blueprint/_reset.scss
|
|
479
|
-
- frameworks/blueprint/stylesheets/blueprint/_rtl.scss
|
|
480
|
-
- frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss
|
|
481
|
-
- frameworks/blueprint/stylesheets/blueprint/_typography.scss
|
|
482
|
-
- frameworks/blueprint/stylesheets/blueprint/_utilities.scss
|
|
483
|
-
- frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss
|
|
484
|
-
- frameworks/blueprint/templates/basic/grid.png
|
|
485
|
-
- frameworks/blueprint/templates/basic/ie.sass
|
|
486
|
-
- frameworks/blueprint/templates/basic/manifest.rb
|
|
487
|
-
- frameworks/blueprint/templates/basic/partials/_base.sass
|
|
488
|
-
- frameworks/blueprint/templates/basic/print.sass
|
|
489
|
-
- frameworks/blueprint/templates/basic/screen.sass
|
|
490
|
-
- frameworks/blueprint/templates/buttons/buttons/cross.png
|
|
491
|
-
- frameworks/blueprint/templates/buttons/buttons/key.png
|
|
492
|
-
- frameworks/blueprint/templates/buttons/buttons/tick.png
|
|
493
|
-
- frameworks/blueprint/templates/buttons/buttons.sass
|
|
494
|
-
- frameworks/blueprint/templates/buttons/manifest.rb
|
|
495
|
-
- frameworks/blueprint/templates/link_icons/link_icons/doc.png
|
|
496
|
-
- frameworks/blueprint/templates/link_icons/link_icons/email.png
|
|
497
|
-
- frameworks/blueprint/templates/link_icons/link_icons/external.png
|
|
498
|
-
- frameworks/blueprint/templates/link_icons/link_icons/feed.png
|
|
499
|
-
- frameworks/blueprint/templates/link_icons/link_icons/im.png
|
|
500
|
-
- frameworks/blueprint/templates/link_icons/link_icons/pdf.png
|
|
501
|
-
- frameworks/blueprint/templates/link_icons/link_icons/visited.png
|
|
502
|
-
- frameworks/blueprint/templates/link_icons/link_icons/xls.png
|
|
503
|
-
- frameworks/blueprint/templates/link_icons/link_icons.sass
|
|
504
|
-
- frameworks/blueprint/templates/link_icons/manifest.rb
|
|
505
|
-
- frameworks/blueprint/templates/project/grid.png
|
|
506
|
-
- frameworks/blueprint/templates/project/ie.sass
|
|
507
|
-
- frameworks/blueprint/templates/project/manifest.rb
|
|
508
|
-
- frameworks/blueprint/templates/project/partials/_base.sass
|
|
509
|
-
- frameworks/blueprint/templates/project/print.sass
|
|
510
|
-
- frameworks/blueprint/templates/project/screen.sass
|
|
511
|
-
- frameworks/blueprint/templates/semantic/grid.png
|
|
512
|
-
- frameworks/blueprint/templates/semantic/ie.sass
|
|
513
|
-
- frameworks/blueprint/templates/semantic/manifest.rb
|
|
514
|
-
- frameworks/blueprint/templates/semantic/partials/_base.sass
|
|
515
|
-
- frameworks/blueprint/templates/semantic/partials/_form.sass
|
|
516
|
-
- frameworks/blueprint/templates/semantic/partials/_page.sass
|
|
517
|
-
- frameworks/blueprint/templates/semantic/partials/_two_col.sass
|
|
518
|
-
- frameworks/blueprint/templates/semantic/print.sass
|
|
519
|
-
- frameworks/blueprint/templates/semantic/screen.sass
|
|
520
455
|
- frameworks/compass/stylesheets/_compass.scss
|
|
521
456
|
- frameworks/compass/stylesheets/_lemonade.scss
|
|
522
457
|
- frameworks/compass/stylesheets/compass/_css3.scss
|
|
@@ -526,6 +461,7 @@ files:
|
|
|
526
461
|
- frameworks/compass/stylesheets/compass/_support.scss
|
|
527
462
|
- frameworks/compass/stylesheets/compass/_typography.scss
|
|
528
463
|
- frameworks/compass/stylesheets/compass/_utilities.scss
|
|
464
|
+
- frameworks/compass/stylesheets/compass/css3/_animation.scss
|
|
529
465
|
- frameworks/compass/stylesheets/compass/css3/_appearance.scss
|
|
530
466
|
- frameworks/compass/stylesheets/compass/css3/_background-clip.scss
|
|
531
467
|
- frameworks/compass/stylesheets/compass/css3/_background-origin.scss
|
|
@@ -536,6 +472,7 @@ files:
|
|
|
536
472
|
- frameworks/compass/stylesheets/compass/css3/_box.scss
|
|
537
473
|
- frameworks/compass/stylesheets/compass/css3/_columns.scss
|
|
538
474
|
- frameworks/compass/stylesheets/compass/css3/_filter.scss
|
|
475
|
+
- frameworks/compass/stylesheets/compass/css3/_flexbox.scss
|
|
539
476
|
- frameworks/compass/stylesheets/compass/css3/_font-face.scss
|
|
540
477
|
- frameworks/compass/stylesheets/compass/css3/_hyphenation.scss
|
|
541
478
|
- frameworks/compass/stylesheets/compass/css3/_images.scss
|
|
@@ -543,6 +480,7 @@ files:
|
|
|
543
480
|
- frameworks/compass/stylesheets/compass/css3/_opacity.scss
|
|
544
481
|
- frameworks/compass/stylesheets/compass/css3/_pie.scss
|
|
545
482
|
- frameworks/compass/stylesheets/compass/css3/_regions.scss
|
|
483
|
+
- frameworks/compass/stylesheets/compass/css3/_selection.scss
|
|
546
484
|
- frameworks/compass/stylesheets/compass/css3/_shared.scss
|
|
547
485
|
- frameworks/compass/stylesheets/compass/css3/_text-shadow.scss
|
|
548
486
|
- frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss
|
|
@@ -557,6 +495,7 @@ files:
|
|
|
557
495
|
- frameworks/compass/stylesheets/compass/typography/_links.scss
|
|
558
496
|
- frameworks/compass/stylesheets/compass/typography/_lists.scss
|
|
559
497
|
- frameworks/compass/stylesheets/compass/typography/_text.scss
|
|
498
|
+
- frameworks/compass/stylesheets/compass/typography/_units.scss
|
|
560
499
|
- frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss
|
|
561
500
|
- frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss
|
|
562
501
|
- frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss
|
|
@@ -630,7 +569,6 @@ files:
|
|
|
630
569
|
- lib/compass/commands/create_project.rb
|
|
631
570
|
- lib/compass/commands/default.rb
|
|
632
571
|
- lib/compass/commands/extension_command.rb
|
|
633
|
-
- lib/compass/commands/generate_grid_background.rb
|
|
634
572
|
- lib/compass/commands/help.rb
|
|
635
573
|
- lib/compass/commands/imports.rb
|
|
636
574
|
- lib/compass/commands/installer_command.rb
|
|
@@ -670,7 +608,6 @@ files:
|
|
|
670
608
|
- lib/compass/exec/switch_ui.rb
|
|
671
609
|
- lib/compass/exec.rb
|
|
672
610
|
- lib/compass/frameworks.rb
|
|
673
|
-
- lib/compass/grid_builder.rb
|
|
674
611
|
- lib/compass/installers/bare_installer.rb
|
|
675
612
|
- lib/compass/installers/base.rb
|
|
676
613
|
- lib/compass/installers/manifest.rb
|
|
@@ -695,6 +632,7 @@ files:
|
|
|
695
632
|
- lib/compass/sass_extensions/functions/selectors.rb
|
|
696
633
|
- lib/compass/sass_extensions/functions/sprites.rb
|
|
697
634
|
- lib/compass/sass_extensions/functions/urls.rb
|
|
635
|
+
- lib/compass/sass_extensions/functions/utility.rb
|
|
698
636
|
- lib/compass/sass_extensions/functions.rb
|
|
699
637
|
- lib/compass/sass_extensions/monkey_patches/browser_support.rb
|
|
700
638
|
- lib/compass/sass_extensions/monkey_patches/traversal.rb
|
|
@@ -704,6 +642,12 @@ files:
|
|
|
704
642
|
- lib/compass/sass_extensions/sprites/image.rb
|
|
705
643
|
- lib/compass/sass_extensions/sprites/image_methods.rb
|
|
706
644
|
- lib/compass/sass_extensions/sprites/image_row.rb
|
|
645
|
+
- lib/compass/sass_extensions/sprites/images.rb
|
|
646
|
+
- lib/compass/sass_extensions/sprites/layout/diagonal.rb
|
|
647
|
+
- lib/compass/sass_extensions/sprites/layout/horizontal.rb
|
|
648
|
+
- lib/compass/sass_extensions/sprites/layout/smart.rb
|
|
649
|
+
- lib/compass/sass_extensions/sprites/layout/vertical.rb
|
|
650
|
+
- lib/compass/sass_extensions/sprites/layout.rb
|
|
707
651
|
- lib/compass/sass_extensions/sprites/layout_methods.rb
|
|
708
652
|
- lib/compass/sass_extensions/sprites/row_fitter.rb
|
|
709
653
|
- lib/compass/sass_extensions/sprites/sprite_map.rb
|
|
@@ -718,6 +662,10 @@ files:
|
|
|
718
662
|
- lib/compass/util.rb
|
|
719
663
|
- lib/compass/validator.rb
|
|
720
664
|
- lib/compass/version.rb
|
|
665
|
+
- lib/compass/watcher/compiler.rb
|
|
666
|
+
- lib/compass/watcher/project_watcher.rb
|
|
667
|
+
- lib/compass/watcher/watch.rb
|
|
668
|
+
- lib/compass/watcher.rb
|
|
721
669
|
- lib/compass.rb
|
|
722
670
|
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
|
723
671
|
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
|
@@ -737,6 +685,7 @@ files:
|
|
|
737
685
|
- test/fixtures/sprites/public/images/ko/default_background.png
|
|
738
686
|
- test/fixtures/sprites/public/images/ko/starbg26x27.png
|
|
739
687
|
- test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
|
|
688
|
+
- test/fixtures/sprites/public/images/numeric/200.png
|
|
740
689
|
- test/fixtures/sprites/public/images/prefix/20-by-20.png
|
|
741
690
|
- test/fixtures/sprites/public/images/prefix/ten-by-ten.png
|
|
742
691
|
- test/fixtures/sprites/public/images/repeat_x/five.png
|
|
@@ -750,56 +699,13 @@ files:
|
|
|
750
699
|
- test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
|
|
751
700
|
- test/fixtures/sprites/public/images/squares/ten-by-ten.png
|
|
752
701
|
- test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
|
|
753
|
-
- test/fixtures/stylesheets/
|
|
754
|
-
- test/fixtures/stylesheets/
|
|
755
|
-
- test/fixtures/stylesheets/
|
|
756
|
-
- test/fixtures/stylesheets/
|
|
757
|
-
- test/fixtures/stylesheets/
|
|
758
|
-
- test/fixtures/stylesheets/
|
|
759
|
-
- test/fixtures/stylesheets/
|
|
760
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css
|
|
761
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/form.css
|
|
762
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/grid.css
|
|
763
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/ie.css
|
|
764
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css
|
|
765
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css
|
|
766
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css
|
|
767
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/print.css
|
|
768
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css
|
|
769
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset.css
|
|
770
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css
|
|
771
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css
|
|
772
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/typography.css
|
|
773
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css
|
|
774
|
-
- test/fixtures/stylesheets/blueprint/images/grid.png
|
|
775
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/doc.png
|
|
776
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/email.png
|
|
777
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/external.png
|
|
778
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/feed.png
|
|
779
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/im.png
|
|
780
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png
|
|
781
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/visited.png
|
|
782
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/xls.png
|
|
783
|
-
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
|
784
|
-
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
|
785
|
-
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
|
786
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss
|
|
787
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss
|
|
788
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss
|
|
789
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss
|
|
790
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss
|
|
791
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss
|
|
792
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss
|
|
793
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss
|
|
794
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss
|
|
795
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss
|
|
796
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss
|
|
797
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss
|
|
798
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss
|
|
799
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss
|
|
800
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss
|
|
801
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss
|
|
802
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss
|
|
702
|
+
- test/fixtures/stylesheets/busted_font_urls/config.rb
|
|
703
|
+
- test/fixtures/stylesheets/busted_font_urls/css/screen.css
|
|
704
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf
|
|
705
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
|
|
706
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
|
|
707
|
+
- test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
|
|
708
|
+
- test/fixtures/stylesheets/busted_font_urls/tmp/screen.css
|
|
803
709
|
- test/fixtures/stylesheets/busted_image_urls/config.rb
|
|
804
710
|
- test/fixtures/stylesheets/busted_image_urls/css/screen.css
|
|
805
711
|
- test/fixtures/stylesheets/busted_image_urls/images/feed.png
|
|
@@ -809,13 +715,18 @@ files:
|
|
|
809
715
|
- test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
|
|
810
716
|
- test/fixtures/stylesheets/compass/100x150.jpg
|
|
811
717
|
- test/fixtures/stylesheets/compass/config.rb
|
|
718
|
+
- test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
|
|
719
|
+
- test/fixtures/stylesheets/compass/css/animation.css
|
|
812
720
|
- test/fixtures/stylesheets/compass/css/background-clip.css
|
|
721
|
+
- test/fixtures/stylesheets/compass/css/background-origin.css
|
|
722
|
+
- test/fixtures/stylesheets/compass/css/background-size.css
|
|
813
723
|
- test/fixtures/stylesheets/compass/css/border_radius.css
|
|
814
724
|
- test/fixtures/stylesheets/compass/css/box-sizeing.css
|
|
815
725
|
- test/fixtures/stylesheets/compass/css/box.css
|
|
816
726
|
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
|
817
727
|
- test/fixtures/stylesheets/compass/css/columns.css
|
|
818
728
|
- test/fixtures/stylesheets/compass/css/filters.css
|
|
729
|
+
- test/fixtures/stylesheets/compass/css/flexbox.css
|
|
819
730
|
- test/fixtures/stylesheets/compass/css/fonts.css
|
|
820
731
|
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
|
821
732
|
- test/fixtures/stylesheets/compass/css/gradients.css
|
|
@@ -832,11 +743,13 @@ files:
|
|
|
832
743
|
- test/fixtures/stylesheets/compass/css/regions.css
|
|
833
744
|
- test/fixtures/stylesheets/compass/css/replacement.css
|
|
834
745
|
- test/fixtures/stylesheets/compass/css/reset.css
|
|
746
|
+
- test/fixtures/stylesheets/compass/css/selection.css
|
|
835
747
|
- test/fixtures/stylesheets/compass/css/sprites.css
|
|
836
748
|
- test/fixtures/stylesheets/compass/css/stretching.css
|
|
837
749
|
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
|
838
750
|
- test/fixtures/stylesheets/compass/css/transform.css
|
|
839
751
|
- test/fixtures/stylesheets/compass/css/transition.css
|
|
752
|
+
- test/fixtures/stylesheets/compass/css/units.css
|
|
840
753
|
- test/fixtures/stylesheets/compass/css/user-interface.css
|
|
841
754
|
- test/fixtures/stylesheets/compass/css/utilities.css
|
|
842
755
|
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
|
@@ -1092,14 +1005,19 @@ files:
|
|
|
1092
1005
|
- test/fixtures/stylesheets/compass/images/flag/za.png
|
|
1093
1006
|
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
|
1094
1007
|
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
|
1095
|
-
- test/fixtures/stylesheets/compass/images/flag-
|
|
1008
|
+
- test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png
|
|
1009
|
+
- test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
|
|
1010
|
+
- test/fixtures/stylesheets/compass/sass/animation.scss
|
|
1096
1011
|
- test/fixtures/stylesheets/compass/sass/background-clip.scss
|
|
1012
|
+
- test/fixtures/stylesheets/compass/sass/background-origin.scss
|
|
1013
|
+
- test/fixtures/stylesheets/compass/sass/background-size.scss
|
|
1097
1014
|
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
|
1098
1015
|
- test/fixtures/stylesheets/compass/sass/box-sizeing.scss
|
|
1099
1016
|
- test/fixtures/stylesheets/compass/sass/box.sass
|
|
1100
1017
|
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
|
1101
1018
|
- test/fixtures/stylesheets/compass/sass/columns.scss
|
|
1102
1019
|
- test/fixtures/stylesheets/compass/sass/filters.scss
|
|
1020
|
+
- test/fixtures/stylesheets/compass/sass/flexbox.scss
|
|
1103
1021
|
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
|
1104
1022
|
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
|
1105
1023
|
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
|
@@ -1116,11 +1034,13 @@ files:
|
|
|
1116
1034
|
- test/fixtures/stylesheets/compass/sass/regions.scss
|
|
1117
1035
|
- test/fixtures/stylesheets/compass/sass/replacement.scss
|
|
1118
1036
|
- test/fixtures/stylesheets/compass/sass/reset.sass
|
|
1037
|
+
- test/fixtures/stylesheets/compass/sass/selection.scss
|
|
1119
1038
|
- test/fixtures/stylesheets/compass/sass/sprites.scss
|
|
1120
1039
|
- test/fixtures/stylesheets/compass/sass/stretching.sass
|
|
1121
1040
|
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
|
1122
1041
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
|
1123
1042
|
- test/fixtures/stylesheets/compass/sass/transition.scss
|
|
1043
|
+
- test/fixtures/stylesheets/compass/sass/units.scss
|
|
1124
1044
|
- test/fixtures/stylesheets/compass/sass/user-interface.scss
|
|
1125
1045
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
|
1126
1046
|
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
|
@@ -1150,6 +1070,7 @@ files:
|
|
|
1150
1070
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
|
1151
1071
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
|
1152
1072
|
- test/fixtures/stylesheets/valid/config.rb
|
|
1073
|
+
- test/fixtures/stylesheets/valid/css/simple.css
|
|
1153
1074
|
- test/fixtures/stylesheets/valid/sass/simple.sass
|
|
1154
1075
|
- test/helpers/command_line.rb
|
|
1155
1076
|
- test/helpers/diff.rb
|
|
@@ -1162,57 +1083,55 @@ files:
|
|
|
1162
1083
|
- test/units/actions_test.rb
|
|
1163
1084
|
- test/units/command_line_test.rb
|
|
1164
1085
|
- test/units/compass_module_test.rb
|
|
1165
|
-
- test/units/compass_png_test.rb
|
|
1166
1086
|
- test/units/compiler_test.rb
|
|
1167
1087
|
- test/units/configuration_test.rb
|
|
1168
1088
|
- test/units/regressions_test.rb
|
|
1169
1089
|
- test/units/sass_extensions_test.rb
|
|
1090
|
+
- test/units/sass_extenstions/gradients_test.rb
|
|
1170
1091
|
- test/units/sprites/engine_test.rb
|
|
1171
1092
|
- test/units/sprites/image_row_test.rb
|
|
1172
1093
|
- test/units/sprites/image_test.rb
|
|
1094
|
+
- test/units/sprites/images_test.rb
|
|
1173
1095
|
- test/units/sprites/importer_test.rb
|
|
1174
1096
|
- test/units/sprites/layout_test.rb
|
|
1175
1097
|
- test/units/sprites/row_fitter_test.rb
|
|
1176
1098
|
- test/units/sprites/sprite_command_test.rb
|
|
1177
1099
|
- test/units/sprites/sprite_map_test.rb
|
|
1100
|
+
- test/units/watcher/compiler_test.rb
|
|
1101
|
+
- test/units/watcher/project_watcher_test.rb
|
|
1102
|
+
- test/units/watcher/watch_test.rb
|
|
1178
1103
|
- features/command_line.feature
|
|
1179
1104
|
- features/extensions.feature
|
|
1180
1105
|
- features/step_definitions/command_line_steps.rb
|
|
1181
1106
|
- features/step_definitions/extension_steps.rb
|
|
1182
1107
|
homepage: http://compass-style.org
|
|
1183
1108
|
licenses: []
|
|
1109
|
+
post_install_message: ! ' Compass is charityware. If you love it, please donate
|
|
1110
|
+
on our behalf at http://umdf.org/compass Thanks!
|
|
1184
1111
|
|
|
1185
|
-
|
|
1112
|
+
'
|
|
1186
1113
|
rdoc_options: []
|
|
1187
|
-
|
|
1188
|
-
require_paths:
|
|
1114
|
+
require_paths:
|
|
1189
1115
|
- lib
|
|
1190
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1116
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1191
1117
|
none: false
|
|
1192
|
-
requirements:
|
|
1193
|
-
- -
|
|
1194
|
-
- !ruby/object:Gem::Version
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
- 0
|
|
1198
|
-
version: "0"
|
|
1199
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1118
|
+
requirements:
|
|
1119
|
+
- - ! '>='
|
|
1120
|
+
- !ruby/object:Gem::Version
|
|
1121
|
+
version: '0'
|
|
1122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1200
1123
|
none: false
|
|
1201
|
-
requirements:
|
|
1202
|
-
- -
|
|
1203
|
-
- !ruby/object:Gem::Version
|
|
1204
|
-
|
|
1205
|
-
segments:
|
|
1206
|
-
- 0
|
|
1207
|
-
version: "0"
|
|
1124
|
+
requirements:
|
|
1125
|
+
- - ! '>'
|
|
1126
|
+
- !ruby/object:Gem::Version
|
|
1127
|
+
version: 1.3.1
|
|
1208
1128
|
requirements: []
|
|
1209
|
-
|
|
1210
1129
|
rubyforge_project:
|
|
1211
|
-
rubygems_version: 1.8.
|
|
1130
|
+
rubygems_version: 1.8.25
|
|
1212
1131
|
signing_key:
|
|
1213
1132
|
specification_version: 3
|
|
1214
1133
|
summary: A Real Stylesheet Framework
|
|
1215
|
-
test_files:
|
|
1134
|
+
test_files:
|
|
1216
1135
|
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
|
1217
1136
|
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
|
1218
1137
|
- test/fixtures/fonts/bgrove.base64.txt
|
|
@@ -1231,6 +1150,7 @@ test_files:
|
|
|
1231
1150
|
- test/fixtures/sprites/public/images/ko/default_background.png
|
|
1232
1151
|
- test/fixtures/sprites/public/images/ko/starbg26x27.png
|
|
1233
1152
|
- test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
|
|
1153
|
+
- test/fixtures/sprites/public/images/numeric/200.png
|
|
1234
1154
|
- test/fixtures/sprites/public/images/prefix/20-by-20.png
|
|
1235
1155
|
- test/fixtures/sprites/public/images/prefix/ten-by-ten.png
|
|
1236
1156
|
- test/fixtures/sprites/public/images/repeat_x/five.png
|
|
@@ -1244,56 +1164,13 @@ test_files:
|
|
|
1244
1164
|
- test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
|
|
1245
1165
|
- test/fixtures/sprites/public/images/squares/ten-by-ten.png
|
|
1246
1166
|
- test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
|
|
1247
|
-
- test/fixtures/stylesheets/
|
|
1248
|
-
- test/fixtures/stylesheets/
|
|
1249
|
-
- test/fixtures/stylesheets/
|
|
1250
|
-
- test/fixtures/stylesheets/
|
|
1251
|
-
- test/fixtures/stylesheets/
|
|
1252
|
-
- test/fixtures/stylesheets/
|
|
1253
|
-
- test/fixtures/stylesheets/
|
|
1254
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css
|
|
1255
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/form.css
|
|
1256
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/grid.css
|
|
1257
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/ie.css
|
|
1258
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css
|
|
1259
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css
|
|
1260
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css
|
|
1261
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/print.css
|
|
1262
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css
|
|
1263
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset.css
|
|
1264
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css
|
|
1265
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css
|
|
1266
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/typography.css
|
|
1267
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css
|
|
1268
|
-
- test/fixtures/stylesheets/blueprint/images/grid.png
|
|
1269
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/doc.png
|
|
1270
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/email.png
|
|
1271
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/external.png
|
|
1272
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/feed.png
|
|
1273
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/im.png
|
|
1274
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png
|
|
1275
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/visited.png
|
|
1276
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/xls.png
|
|
1277
|
-
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
|
1278
|
-
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
|
1279
|
-
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
|
1280
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss
|
|
1281
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss
|
|
1282
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss
|
|
1283
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss
|
|
1284
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss
|
|
1285
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss
|
|
1286
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss
|
|
1287
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss
|
|
1288
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss
|
|
1289
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss
|
|
1290
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss
|
|
1291
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss
|
|
1292
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss
|
|
1293
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss
|
|
1294
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss
|
|
1295
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss
|
|
1296
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss
|
|
1167
|
+
- test/fixtures/stylesheets/busted_font_urls/config.rb
|
|
1168
|
+
- test/fixtures/stylesheets/busted_font_urls/css/screen.css
|
|
1169
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf
|
|
1170
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
|
|
1171
|
+
- test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
|
|
1172
|
+
- test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
|
|
1173
|
+
- test/fixtures/stylesheets/busted_font_urls/tmp/screen.css
|
|
1297
1174
|
- test/fixtures/stylesheets/busted_image_urls/config.rb
|
|
1298
1175
|
- test/fixtures/stylesheets/busted_image_urls/css/screen.css
|
|
1299
1176
|
- test/fixtures/stylesheets/busted_image_urls/images/feed.png
|
|
@@ -1303,13 +1180,18 @@ test_files:
|
|
|
1303
1180
|
- test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
|
|
1304
1181
|
- test/fixtures/stylesheets/compass/100x150.jpg
|
|
1305
1182
|
- test/fixtures/stylesheets/compass/config.rb
|
|
1183
|
+
- test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
|
|
1184
|
+
- test/fixtures/stylesheets/compass/css/animation.css
|
|
1306
1185
|
- test/fixtures/stylesheets/compass/css/background-clip.css
|
|
1186
|
+
- test/fixtures/stylesheets/compass/css/background-origin.css
|
|
1187
|
+
- test/fixtures/stylesheets/compass/css/background-size.css
|
|
1307
1188
|
- test/fixtures/stylesheets/compass/css/border_radius.css
|
|
1308
1189
|
- test/fixtures/stylesheets/compass/css/box-sizeing.css
|
|
1309
1190
|
- test/fixtures/stylesheets/compass/css/box.css
|
|
1310
1191
|
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
|
1311
1192
|
- test/fixtures/stylesheets/compass/css/columns.css
|
|
1312
1193
|
- test/fixtures/stylesheets/compass/css/filters.css
|
|
1194
|
+
- test/fixtures/stylesheets/compass/css/flexbox.css
|
|
1313
1195
|
- test/fixtures/stylesheets/compass/css/fonts.css
|
|
1314
1196
|
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
|
1315
1197
|
- test/fixtures/stylesheets/compass/css/gradients.css
|
|
@@ -1326,11 +1208,13 @@ test_files:
|
|
|
1326
1208
|
- test/fixtures/stylesheets/compass/css/regions.css
|
|
1327
1209
|
- test/fixtures/stylesheets/compass/css/replacement.css
|
|
1328
1210
|
- test/fixtures/stylesheets/compass/css/reset.css
|
|
1211
|
+
- test/fixtures/stylesheets/compass/css/selection.css
|
|
1329
1212
|
- test/fixtures/stylesheets/compass/css/sprites.css
|
|
1330
1213
|
- test/fixtures/stylesheets/compass/css/stretching.css
|
|
1331
1214
|
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
|
1332
1215
|
- test/fixtures/stylesheets/compass/css/transform.css
|
|
1333
1216
|
- test/fixtures/stylesheets/compass/css/transition.css
|
|
1217
|
+
- test/fixtures/stylesheets/compass/css/units.css
|
|
1334
1218
|
- test/fixtures/stylesheets/compass/css/user-interface.css
|
|
1335
1219
|
- test/fixtures/stylesheets/compass/css/utilities.css
|
|
1336
1220
|
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
|
@@ -1586,14 +1470,19 @@ test_files:
|
|
|
1586
1470
|
- test/fixtures/stylesheets/compass/images/flag/za.png
|
|
1587
1471
|
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
|
1588
1472
|
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
|
1589
|
-
- test/fixtures/stylesheets/compass/images/flag-
|
|
1473
|
+
- test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png
|
|
1474
|
+
- test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
|
|
1475
|
+
- test/fixtures/stylesheets/compass/sass/animation.scss
|
|
1590
1476
|
- test/fixtures/stylesheets/compass/sass/background-clip.scss
|
|
1477
|
+
- test/fixtures/stylesheets/compass/sass/background-origin.scss
|
|
1478
|
+
- test/fixtures/stylesheets/compass/sass/background-size.scss
|
|
1591
1479
|
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
|
1592
1480
|
- test/fixtures/stylesheets/compass/sass/box-sizeing.scss
|
|
1593
1481
|
- test/fixtures/stylesheets/compass/sass/box.sass
|
|
1594
1482
|
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
|
1595
1483
|
- test/fixtures/stylesheets/compass/sass/columns.scss
|
|
1596
1484
|
- test/fixtures/stylesheets/compass/sass/filters.scss
|
|
1485
|
+
- test/fixtures/stylesheets/compass/sass/flexbox.scss
|
|
1597
1486
|
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
|
1598
1487
|
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
|
1599
1488
|
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
|
@@ -1610,11 +1499,13 @@ test_files:
|
|
|
1610
1499
|
- test/fixtures/stylesheets/compass/sass/regions.scss
|
|
1611
1500
|
- test/fixtures/stylesheets/compass/sass/replacement.scss
|
|
1612
1501
|
- test/fixtures/stylesheets/compass/sass/reset.sass
|
|
1502
|
+
- test/fixtures/stylesheets/compass/sass/selection.scss
|
|
1613
1503
|
- test/fixtures/stylesheets/compass/sass/sprites.scss
|
|
1614
1504
|
- test/fixtures/stylesheets/compass/sass/stretching.sass
|
|
1615
1505
|
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
|
1616
1506
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
|
1617
1507
|
- test/fixtures/stylesheets/compass/sass/transition.scss
|
|
1508
|
+
- test/fixtures/stylesheets/compass/sass/units.scss
|
|
1618
1509
|
- test/fixtures/stylesheets/compass/sass/user-interface.scss
|
|
1619
1510
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
|
1620
1511
|
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
|
@@ -1644,6 +1535,7 @@ test_files:
|
|
|
1644
1535
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
|
1645
1536
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
|
1646
1537
|
- test/fixtures/stylesheets/valid/config.rb
|
|
1538
|
+
- test/fixtures/stylesheets/valid/css/simple.css
|
|
1647
1539
|
- test/fixtures/stylesheets/valid/sass/simple.sass
|
|
1648
1540
|
- test/helpers/command_line.rb
|
|
1649
1541
|
- test/helpers/diff.rb
|
|
@@ -1656,19 +1548,23 @@ test_files:
|
|
|
1656
1548
|
- test/units/actions_test.rb
|
|
1657
1549
|
- test/units/command_line_test.rb
|
|
1658
1550
|
- test/units/compass_module_test.rb
|
|
1659
|
-
- test/units/compass_png_test.rb
|
|
1660
1551
|
- test/units/compiler_test.rb
|
|
1661
1552
|
- test/units/configuration_test.rb
|
|
1662
1553
|
- test/units/regressions_test.rb
|
|
1663
1554
|
- test/units/sass_extensions_test.rb
|
|
1555
|
+
- test/units/sass_extenstions/gradients_test.rb
|
|
1664
1556
|
- test/units/sprites/engine_test.rb
|
|
1665
1557
|
- test/units/sprites/image_row_test.rb
|
|
1666
1558
|
- test/units/sprites/image_test.rb
|
|
1559
|
+
- test/units/sprites/images_test.rb
|
|
1667
1560
|
- test/units/sprites/importer_test.rb
|
|
1668
1561
|
- test/units/sprites/layout_test.rb
|
|
1669
1562
|
- test/units/sprites/row_fitter_test.rb
|
|
1670
1563
|
- test/units/sprites/sprite_command_test.rb
|
|
1671
1564
|
- test/units/sprites/sprite_map_test.rb
|
|
1565
|
+
- test/units/watcher/compiler_test.rb
|
|
1566
|
+
- test/units/watcher/project_watcher_test.rb
|
|
1567
|
+
- test/units/watcher/watch_test.rb
|
|
1672
1568
|
- features/command_line.feature
|
|
1673
1569
|
- features/extensions.feature
|
|
1674
1570
|
- features/step_definitions/command_line_steps.rb
|