compass 0.12.7 → 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 +1 -1
- data/Rakefile +14 -9
- data/VERSION.yml +6 -0
- data/features/command_line.feature +8 -50
- data/features/step_definitions/command_line_steps.rb +3 -2
- data/frameworks/compass/stylesheets/compass/_css3.scss +2 -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 +10 -6
- 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 +57 -82
- data/frameworks/compass/stylesheets/compass/css3/_columns.scss +104 -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/_font-face.scss +4 -4
- 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 +3 -1
- data/lib/compass/commands/update_project.rb +1 -2
- data/lib/compass/commands/watch_project.rb +11 -113
- data/lib/compass/commands.rb +1 -1
- data/lib/compass/compiler.rb +8 -1
- data/lib/compass/configuration/data.rb +1 -1
- data/lib/compass/configuration/helpers.rb +2 -0
- data/lib/compass/exec/project_options_parser.rb +8 -0
- 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 +13 -1
- 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 +11 -9
- 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 +8 -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/version.rb +10 -13
- 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/feed.ttf +0 -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/busted_image_urls/tmp/screen.css +9 -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 +27 -63
- data/test/fixtures/stylesheets/compass/css/flexbox.css +121 -0
- data/test/fixtures/stylesheets/compass/css/fonts.css +1 -1
- data/test/fixtures/stylesheets/compass/css/gradients.css +64 -36
- data/test/fixtures/stylesheets/compass/css/grid_background.css +7 -14
- 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 +177 -8
- 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 +9 -9
- data/test/fixtures/stylesheets/compass/sass/flexbox.scss +44 -0
- data/test/fixtures/stylesheets/compass/sass/gradients.sass +31 -0
- 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 +14 -0
- 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 +5 -15
- 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 +2 -0
- 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 +171 -236
- checksums.yaml +0 -7
- 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 -75
- 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
metadata
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: compass
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.13.alpha.4
|
|
5
|
+
prerelease: 5
|
|
5
6
|
platform: ruby
|
|
6
|
-
authors:
|
|
7
|
+
authors:
|
|
7
8
|
- Chris Eppstein
|
|
8
9
|
- Scott Davis
|
|
9
10
|
- Eric A. Meyer
|
|
@@ -13,53 +14,69 @@ authors:
|
|
|
13
14
|
autorequire:
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
- !ruby/object:Gem::Dependency
|
|
17
|
+
date: 2013-04-03 00:00:00.000000000 Z
|
|
18
|
+
dependencies:
|
|
19
|
+
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: sass
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
requirements:
|
|
21
|
+
requirement: !ruby/object:Gem::Requirement
|
|
22
|
+
none: false
|
|
23
|
+
requirements:
|
|
24
24
|
- - ~>
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: 3.2.
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.2.5
|
|
27
27
|
type: :runtime
|
|
28
|
-
version_requirements: *id001
|
|
29
|
-
- !ruby/object:Gem::Dependency
|
|
30
|
-
name: chunky_png
|
|
31
28
|
prerelease: false
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
none: false
|
|
31
|
+
requirements:
|
|
32
|
+
- - ~>
|
|
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:
|
|
34
40
|
- - ~>
|
|
35
|
-
- !ruby/object:Gem::Version
|
|
36
|
-
version:
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '1.2'
|
|
37
43
|
type: :runtime
|
|
38
|
-
version_requirements: *id002
|
|
39
|
-
- !ruby/object:Gem::Dependency
|
|
40
|
-
name: fssm
|
|
41
44
|
prerelease: false
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
|
54
|
+
none: false
|
|
55
|
+
requirements:
|
|
56
|
+
- - <=
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: 0.9.9
|
|
47
59
|
type: :runtime
|
|
48
|
-
|
|
49
|
-
|
|
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.
|
|
50
69
|
email: chris@eppsteins.net
|
|
51
|
-
executables:
|
|
70
|
+
executables:
|
|
52
71
|
- compass
|
|
53
72
|
extensions: []
|
|
54
|
-
|
|
55
73
|
extra_rdoc_files: []
|
|
56
|
-
|
|
57
|
-
files:
|
|
58
|
-
- LICENSE.markdown
|
|
74
|
+
files:
|
|
59
75
|
- README.markdown
|
|
76
|
+
- LICENSE.markdown
|
|
77
|
+
- VERSION.yml
|
|
60
78
|
- Rakefile
|
|
61
79
|
- bin/compass
|
|
62
|
-
- examples/README.markdown
|
|
63
80
|
- examples/blueprint_default/config.rb
|
|
64
81
|
- examples/blueprint_default/images/grid.png
|
|
65
82
|
- examples/blueprint_default/index.html.haml
|
|
@@ -402,8 +419,6 @@ files:
|
|
|
402
419
|
- examples/css3/bootstrap.rb
|
|
403
420
|
- examples/css3/clean.rb
|
|
404
421
|
- examples/css3/config.rb
|
|
405
|
-
- examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
|
|
406
|
-
- examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
|
|
407
422
|
- examples/css3/gradients.html.haml
|
|
408
423
|
- examples/css3/images/button_bg.png
|
|
409
424
|
- examples/css3/images/example.png
|
|
@@ -418,6 +433,7 @@ files:
|
|
|
418
433
|
- examples/ninesixty/config.rb
|
|
419
434
|
- examples/ninesixty/src/grid.scss
|
|
420
435
|
- examples/ninesixty/src/text.scss
|
|
436
|
+
- examples/README.markdown
|
|
421
437
|
- examples/susy/bootstrap.rb
|
|
422
438
|
- examples/susy/clean.rb
|
|
423
439
|
- examples/susy/config.rb
|
|
@@ -434,64 +450,8 @@ files:
|
|
|
434
450
|
- examples/yui/templates.html.haml
|
|
435
451
|
- examples/yui/test.jpg
|
|
436
452
|
- examples/yui/typography.html.haml
|
|
437
|
-
-
|
|
438
|
-
-
|
|
439
|
-
- features/step_definitions/command_line_steps.rb
|
|
440
|
-
- features/step_definitions/extension_steps.rb
|
|
441
|
-
- frameworks/blueprint/stylesheets/_blueprint.scss
|
|
442
|
-
- frameworks/blueprint/stylesheets/blueprint/_buttons.scss
|
|
443
|
-
- frameworks/blueprint/stylesheets/blueprint/_colors.scss
|
|
444
|
-
- frameworks/blueprint/stylesheets/blueprint/_debug.scss
|
|
445
|
-
- frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss
|
|
446
|
-
- frameworks/blueprint/stylesheets/blueprint/_form.scss
|
|
447
|
-
- frameworks/blueprint/stylesheets/blueprint/_grid.scss
|
|
448
|
-
- frameworks/blueprint/stylesheets/blueprint/_ie.scss
|
|
449
|
-
- frameworks/blueprint/stylesheets/blueprint/_interaction.scss
|
|
450
|
-
- frameworks/blueprint/stylesheets/blueprint/_link-icons.scss
|
|
451
|
-
- frameworks/blueprint/stylesheets/blueprint/_liquid.scss
|
|
452
|
-
- frameworks/blueprint/stylesheets/blueprint/_print.scss
|
|
453
|
-
- frameworks/blueprint/stylesheets/blueprint/_reset.scss
|
|
454
|
-
- frameworks/blueprint/stylesheets/blueprint/_rtl.scss
|
|
455
|
-
- frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss
|
|
456
|
-
- frameworks/blueprint/stylesheets/blueprint/_typography.scss
|
|
457
|
-
- frameworks/blueprint/stylesheets/blueprint/_utilities.scss
|
|
458
|
-
- frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss
|
|
459
|
-
- frameworks/blueprint/templates/basic/grid.png
|
|
460
|
-
- frameworks/blueprint/templates/basic/ie.sass
|
|
461
|
-
- frameworks/blueprint/templates/basic/manifest.rb
|
|
462
|
-
- frameworks/blueprint/templates/basic/partials/_base.sass
|
|
463
|
-
- frameworks/blueprint/templates/basic/print.sass
|
|
464
|
-
- frameworks/blueprint/templates/basic/screen.sass
|
|
465
|
-
- frameworks/blueprint/templates/buttons/buttons.sass
|
|
466
|
-
- frameworks/blueprint/templates/buttons/buttons/cross.png
|
|
467
|
-
- frameworks/blueprint/templates/buttons/buttons/key.png
|
|
468
|
-
- frameworks/blueprint/templates/buttons/buttons/tick.png
|
|
469
|
-
- frameworks/blueprint/templates/buttons/manifest.rb
|
|
470
|
-
- frameworks/blueprint/templates/link_icons/link_icons.sass
|
|
471
|
-
- frameworks/blueprint/templates/link_icons/link_icons/doc.png
|
|
472
|
-
- frameworks/blueprint/templates/link_icons/link_icons/email.png
|
|
473
|
-
- frameworks/blueprint/templates/link_icons/link_icons/external.png
|
|
474
|
-
- frameworks/blueprint/templates/link_icons/link_icons/feed.png
|
|
475
|
-
- frameworks/blueprint/templates/link_icons/link_icons/im.png
|
|
476
|
-
- frameworks/blueprint/templates/link_icons/link_icons/pdf.png
|
|
477
|
-
- frameworks/blueprint/templates/link_icons/link_icons/visited.png
|
|
478
|
-
- frameworks/blueprint/templates/link_icons/link_icons/xls.png
|
|
479
|
-
- frameworks/blueprint/templates/link_icons/manifest.rb
|
|
480
|
-
- frameworks/blueprint/templates/project/grid.png
|
|
481
|
-
- frameworks/blueprint/templates/project/ie.sass
|
|
482
|
-
- frameworks/blueprint/templates/project/manifest.rb
|
|
483
|
-
- frameworks/blueprint/templates/project/partials/_base.sass
|
|
484
|
-
- frameworks/blueprint/templates/project/print.sass
|
|
485
|
-
- frameworks/blueprint/templates/project/screen.sass
|
|
486
|
-
- frameworks/blueprint/templates/semantic/grid.png
|
|
487
|
-
- frameworks/blueprint/templates/semantic/ie.sass
|
|
488
|
-
- frameworks/blueprint/templates/semantic/manifest.rb
|
|
489
|
-
- frameworks/blueprint/templates/semantic/partials/_base.sass
|
|
490
|
-
- frameworks/blueprint/templates/semantic/partials/_form.sass
|
|
491
|
-
- frameworks/blueprint/templates/semantic/partials/_page.sass
|
|
492
|
-
- frameworks/blueprint/templates/semantic/partials/_two_col.sass
|
|
493
|
-
- frameworks/blueprint/templates/semantic/print.sass
|
|
494
|
-
- frameworks/blueprint/templates/semantic/screen.sass
|
|
453
|
+
- examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
|
|
454
|
+
- examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
|
|
495
455
|
- frameworks/compass/stylesheets/_compass.scss
|
|
496
456
|
- frameworks/compass/stylesheets/_lemonade.scss
|
|
497
457
|
- frameworks/compass/stylesheets/compass/_css3.scss
|
|
@@ -501,6 +461,7 @@ files:
|
|
|
501
461
|
- frameworks/compass/stylesheets/compass/_support.scss
|
|
502
462
|
- frameworks/compass/stylesheets/compass/_typography.scss
|
|
503
463
|
- frameworks/compass/stylesheets/compass/_utilities.scss
|
|
464
|
+
- frameworks/compass/stylesheets/compass/css3/_animation.scss
|
|
504
465
|
- frameworks/compass/stylesheets/compass/css3/_appearance.scss
|
|
505
466
|
- frameworks/compass/stylesheets/compass/css3/_background-clip.scss
|
|
506
467
|
- frameworks/compass/stylesheets/compass/css3/_background-origin.scss
|
|
@@ -511,6 +472,7 @@ files:
|
|
|
511
472
|
- frameworks/compass/stylesheets/compass/css3/_box.scss
|
|
512
473
|
- frameworks/compass/stylesheets/compass/css3/_columns.scss
|
|
513
474
|
- frameworks/compass/stylesheets/compass/css3/_filter.scss
|
|
475
|
+
- frameworks/compass/stylesheets/compass/css3/_flexbox.scss
|
|
514
476
|
- frameworks/compass/stylesheets/compass/css3/_font-face.scss
|
|
515
477
|
- frameworks/compass/stylesheets/compass/css3/_hyphenation.scss
|
|
516
478
|
- frameworks/compass/stylesheets/compass/css3/_images.scss
|
|
@@ -518,6 +480,7 @@ files:
|
|
|
518
480
|
- frameworks/compass/stylesheets/compass/css3/_opacity.scss
|
|
519
481
|
- frameworks/compass/stylesheets/compass/css3/_pie.scss
|
|
520
482
|
- frameworks/compass/stylesheets/compass/css3/_regions.scss
|
|
483
|
+
- frameworks/compass/stylesheets/compass/css3/_selection.scss
|
|
521
484
|
- frameworks/compass/stylesheets/compass/css3/_shared.scss
|
|
522
485
|
- frameworks/compass/stylesheets/compass/css3/_text-shadow.scss
|
|
523
486
|
- frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss
|
|
@@ -532,6 +495,7 @@ files:
|
|
|
532
495
|
- frameworks/compass/stylesheets/compass/typography/_links.scss
|
|
533
496
|
- frameworks/compass/stylesheets/compass/typography/_lists.scss
|
|
534
497
|
- frameworks/compass/stylesheets/compass/typography/_text.scss
|
|
498
|
+
- frameworks/compass/stylesheets/compass/typography/_units.scss
|
|
535
499
|
- frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss
|
|
536
500
|
- frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss
|
|
537
501
|
- frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss
|
|
@@ -585,29 +549,26 @@ files:
|
|
|
585
549
|
- frameworks/compass/templates/pie/LICENSE
|
|
586
550
|
- frameworks/compass/templates/pie/LICENSE-APACHE2.txt
|
|
587
551
|
- frameworks/compass/templates/pie/LICENSE-GPL2.txt
|
|
588
|
-
- frameworks/compass/templates/pie/PIE.htc
|
|
589
552
|
- frameworks/compass/templates/pie/manifest.rb
|
|
553
|
+
- frameworks/compass/templates/pie/PIE.htc
|
|
590
554
|
- frameworks/compass/templates/pie/pie.scss
|
|
591
|
-
- frameworks/compass/templates/project/USAGE.markdown
|
|
592
555
|
- frameworks/compass/templates/project/ie.sass
|
|
593
556
|
- frameworks/compass/templates/project/manifest.rb
|
|
594
557
|
- frameworks/compass/templates/project/print.sass
|
|
595
558
|
- frameworks/compass/templates/project/screen.sass
|
|
596
|
-
-
|
|
559
|
+
- frameworks/compass/templates/project/USAGE.markdown
|
|
597
560
|
- lib/compass/actions.rb
|
|
598
|
-
- lib/compass/app_integration.rb
|
|
599
561
|
- lib/compass/app_integration/rails.rb
|
|
600
|
-
- lib/compass/app_integration/stand_alone.rb
|
|
601
562
|
- lib/compass/app_integration/stand_alone/configuration_defaults.rb
|
|
602
563
|
- lib/compass/app_integration/stand_alone/installer.rb
|
|
564
|
+
- lib/compass/app_integration/stand_alone.rb
|
|
565
|
+
- lib/compass/app_integration.rb
|
|
603
566
|
- lib/compass/browser_support.rb
|
|
604
|
-
- lib/compass/commands.rb
|
|
605
567
|
- lib/compass/commands/base.rb
|
|
606
568
|
- lib/compass/commands/clean_project.rb
|
|
607
569
|
- lib/compass/commands/create_project.rb
|
|
608
570
|
- lib/compass/commands/default.rb
|
|
609
571
|
- lib/compass/commands/extension_command.rb
|
|
610
|
-
- lib/compass/commands/generate_grid_background.rb
|
|
611
572
|
- lib/compass/commands/help.rb
|
|
612
573
|
- lib/compass/commands/imports.rb
|
|
613
574
|
- lib/compass/commands/installer_command.rb
|
|
@@ -625,8 +586,8 @@ files:
|
|
|
625
586
|
- lib/compass/commands/validate_project.rb
|
|
626
587
|
- lib/compass/commands/watch_project.rb
|
|
627
588
|
- lib/compass/commands/write_configuration.rb
|
|
589
|
+
- lib/compass/commands.rb
|
|
628
590
|
- lib/compass/compiler.rb
|
|
629
|
-
- lib/compass/configuration.rb
|
|
630
591
|
- lib/compass/configuration/adapters.rb
|
|
631
592
|
- lib/compass/configuration/comments.rb
|
|
632
593
|
- lib/compass/configuration/data.rb
|
|
@@ -636,28 +597,26 @@ files:
|
|
|
636
597
|
- lib/compass/configuration/inheritance.rb
|
|
637
598
|
- lib/compass/configuration/paths.rb
|
|
638
599
|
- lib/compass/configuration/serialization.rb
|
|
600
|
+
- lib/compass/configuration.rb
|
|
639
601
|
- lib/compass/dependencies.rb
|
|
640
602
|
- lib/compass/errors.rb
|
|
641
|
-
- lib/compass/exec.rb
|
|
642
603
|
- lib/compass/exec/command_option_parser.rb
|
|
643
604
|
- lib/compass/exec/global_options_parser.rb
|
|
644
605
|
- lib/compass/exec/helpers.rb
|
|
645
606
|
- lib/compass/exec/project_options_parser.rb
|
|
646
607
|
- lib/compass/exec/sub_command_ui.rb
|
|
647
608
|
- lib/compass/exec/switch_ui.rb
|
|
609
|
+
- lib/compass/exec.rb
|
|
648
610
|
- lib/compass/frameworks.rb
|
|
649
|
-
- lib/compass/grid_builder.rb
|
|
650
|
-
- lib/compass/installers.rb
|
|
651
611
|
- lib/compass/installers/bare_installer.rb
|
|
652
612
|
- lib/compass/installers/base.rb
|
|
653
613
|
- lib/compass/installers/manifest.rb
|
|
654
614
|
- lib/compass/installers/manifest_installer.rb
|
|
655
615
|
- lib/compass/installers/template_context.rb
|
|
616
|
+
- lib/compass/installers.rb
|
|
656
617
|
- lib/compass/logger.rb
|
|
657
618
|
- lib/compass/quick_cache.rb
|
|
658
619
|
- lib/compass/rails.rb
|
|
659
|
-
- lib/compass/sass_extensions.rb
|
|
660
|
-
- lib/compass/sass_extensions/functions.rb
|
|
661
620
|
- lib/compass/sass_extensions/functions/colors.rb
|
|
662
621
|
- lib/compass/sass_extensions/functions/constants.rb
|
|
663
622
|
- lib/compass/sass_extensions/functions/cross_browser_support.rb
|
|
@@ -673,27 +632,41 @@ files:
|
|
|
673
632
|
- lib/compass/sass_extensions/functions/selectors.rb
|
|
674
633
|
- lib/compass/sass_extensions/functions/sprites.rb
|
|
675
634
|
- lib/compass/sass_extensions/functions/urls.rb
|
|
676
|
-
- lib/compass/sass_extensions/
|
|
635
|
+
- lib/compass/sass_extensions/functions/utility.rb
|
|
636
|
+
- lib/compass/sass_extensions/functions.rb
|
|
677
637
|
- lib/compass/sass_extensions/monkey_patches/browser_support.rb
|
|
678
638
|
- lib/compass/sass_extensions/monkey_patches/traversal.rb
|
|
679
|
-
- lib/compass/sass_extensions/
|
|
680
|
-
- lib/compass/sass_extensions/sprites/engines.rb
|
|
639
|
+
- lib/compass/sass_extensions/monkey_patches.rb
|
|
681
640
|
- lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
|
|
641
|
+
- lib/compass/sass_extensions/sprites/engines.rb
|
|
682
642
|
- lib/compass/sass_extensions/sprites/image.rb
|
|
683
643
|
- lib/compass/sass_extensions/sprites/image_methods.rb
|
|
684
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
|
|
685
651
|
- lib/compass/sass_extensions/sprites/layout_methods.rb
|
|
686
652
|
- lib/compass/sass_extensions/sprites/row_fitter.rb
|
|
687
653
|
- lib/compass/sass_extensions/sprites/sprite_map.rb
|
|
688
654
|
- lib/compass/sass_extensions/sprites/sprite_methods.rb
|
|
689
|
-
- lib/compass/
|
|
655
|
+
- lib/compass/sass_extensions/sprites.rb
|
|
656
|
+
- lib/compass/sass_extensions.rb
|
|
690
657
|
- lib/compass/sprite_importer/binding.rb
|
|
691
658
|
- lib/compass/sprite_importer/content.erb
|
|
659
|
+
- lib/compass/sprite_importer.rb
|
|
692
660
|
- lib/compass/stats.rb
|
|
693
661
|
- lib/compass/test_case.rb
|
|
694
662
|
- lib/compass/util.rb
|
|
695
663
|
- lib/compass/validator.rb
|
|
696
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
|
|
669
|
+
- lib/compass.rb
|
|
697
670
|
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
|
698
671
|
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
|
699
672
|
- test/fixtures/fonts/bgrove.base64.txt
|
|
@@ -712,6 +685,7 @@ files:
|
|
|
712
685
|
- test/fixtures/sprites/public/images/ko/default_background.png
|
|
713
686
|
- test/fixtures/sprites/public/images/ko/starbg26x27.png
|
|
714
687
|
- test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
|
|
688
|
+
- test/fixtures/sprites/public/images/numeric/200.png
|
|
715
689
|
- test/fixtures/sprites/public/images/prefix/20-by-20.png
|
|
716
690
|
- test/fixtures/sprites/public/images/prefix/ten-by-ten.png
|
|
717
691
|
- test/fixtures/sprites/public/images/repeat_x/five.png
|
|
@@ -725,71 +699,34 @@ files:
|
|
|
725
699
|
- test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
|
|
726
700
|
- test/fixtures/sprites/public/images/squares/ten-by-ten.png
|
|
727
701
|
- test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
|
|
728
|
-
- test/fixtures/stylesheets/
|
|
729
|
-
- test/fixtures/stylesheets/
|
|
730
|
-
- test/fixtures/stylesheets/
|
|
731
|
-
- test/fixtures/stylesheets/
|
|
732
|
-
- test/fixtures/stylesheets/
|
|
733
|
-
- test/fixtures/stylesheets/
|
|
734
|
-
- test/fixtures/stylesheets/
|
|
735
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css
|
|
736
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/form.css
|
|
737
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/grid.css
|
|
738
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/ie.css
|
|
739
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css
|
|
740
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css
|
|
741
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css
|
|
742
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/print.css
|
|
743
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css
|
|
744
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset.css
|
|
745
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css
|
|
746
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css
|
|
747
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/typography.css
|
|
748
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css
|
|
749
|
-
- test/fixtures/stylesheets/blueprint/images/grid.png
|
|
750
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/doc.png
|
|
751
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/email.png
|
|
752
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/external.png
|
|
753
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/feed.png
|
|
754
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/im.png
|
|
755
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png
|
|
756
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/visited.png
|
|
757
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/xls.png
|
|
758
|
-
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
|
759
|
-
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
|
760
|
-
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
|
761
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss
|
|
762
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss
|
|
763
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss
|
|
764
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss
|
|
765
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss
|
|
766
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss
|
|
767
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss
|
|
768
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss
|
|
769
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss
|
|
770
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss
|
|
771
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss
|
|
772
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss
|
|
773
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss
|
|
774
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss
|
|
775
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss
|
|
776
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss
|
|
777
|
-
- 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
|
|
778
709
|
- test/fixtures/stylesheets/busted_image_urls/config.rb
|
|
779
710
|
- test/fixtures/stylesheets/busted_image_urls/css/screen.css
|
|
780
711
|
- test/fixtures/stylesheets/busted_image_urls/images/feed.png
|
|
781
712
|
- test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
|
|
782
713
|
- test/fixtures/stylesheets/busted_image_urls/images/grid.png
|
|
783
714
|
- test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
|
|
715
|
+
- test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
|
|
784
716
|
- test/fixtures/stylesheets/compass/100x150.jpg
|
|
785
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
|
|
786
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
|
|
787
723
|
- test/fixtures/stylesheets/compass/css/border_radius.css
|
|
788
724
|
- test/fixtures/stylesheets/compass/css/box-sizeing.css
|
|
789
725
|
- test/fixtures/stylesheets/compass/css/box.css
|
|
790
726
|
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
|
791
727
|
- test/fixtures/stylesheets/compass/css/columns.css
|
|
792
728
|
- test/fixtures/stylesheets/compass/css/filters.css
|
|
729
|
+
- test/fixtures/stylesheets/compass/css/flexbox.css
|
|
793
730
|
- test/fixtures/stylesheets/compass/css/fonts.css
|
|
794
731
|
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
|
795
732
|
- test/fixtures/stylesheets/compass/css/gradients.css
|
|
@@ -806,11 +743,13 @@ files:
|
|
|
806
743
|
- test/fixtures/stylesheets/compass/css/regions.css
|
|
807
744
|
- test/fixtures/stylesheets/compass/css/replacement.css
|
|
808
745
|
- test/fixtures/stylesheets/compass/css/reset.css
|
|
746
|
+
- test/fixtures/stylesheets/compass/css/selection.css
|
|
809
747
|
- test/fixtures/stylesheets/compass/css/sprites.css
|
|
810
748
|
- test/fixtures/stylesheets/compass/css/stretching.css
|
|
811
749
|
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
|
812
750
|
- test/fixtures/stylesheets/compass/css/transform.css
|
|
813
751
|
- test/fixtures/stylesheets/compass/css/transition.css
|
|
752
|
+
- test/fixtures/stylesheets/compass/css/units.css
|
|
814
753
|
- test/fixtures/stylesheets/compass/css/user-interface.css
|
|
815
754
|
- test/fixtures/stylesheets/compass/css/utilities.css
|
|
816
755
|
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
|
@@ -819,7 +758,6 @@ files:
|
|
|
819
758
|
- test/fixtures/stylesheets/compass/images/100x150.jpg
|
|
820
759
|
- test/fixtures/stylesheets/compass/images/100x150.png
|
|
821
760
|
- test/fixtures/stylesheets/compass/images/4x6.png
|
|
822
|
-
- test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
|
|
823
761
|
- test/fixtures/stylesheets/compass/images/flag/ad.png
|
|
824
762
|
- test/fixtures/stylesheets/compass/images/flag/ae.png
|
|
825
763
|
- test/fixtures/stylesheets/compass/images/flag/af.png
|
|
@@ -1067,13 +1005,19 @@ files:
|
|
|
1067
1005
|
- test/fixtures/stylesheets/compass/images/flag/za.png
|
|
1068
1006
|
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
|
1069
1007
|
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
|
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
|
|
1070
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
|
|
1071
1014
|
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
|
1072
1015
|
- test/fixtures/stylesheets/compass/sass/box-sizeing.scss
|
|
1073
1016
|
- test/fixtures/stylesheets/compass/sass/box.sass
|
|
1074
1017
|
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
|
1075
1018
|
- test/fixtures/stylesheets/compass/sass/columns.scss
|
|
1076
1019
|
- test/fixtures/stylesheets/compass/sass/filters.scss
|
|
1020
|
+
- test/fixtures/stylesheets/compass/sass/flexbox.scss
|
|
1077
1021
|
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
|
1078
1022
|
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
|
1079
1023
|
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
|
@@ -1090,17 +1034,20 @@ files:
|
|
|
1090
1034
|
- test/fixtures/stylesheets/compass/sass/regions.scss
|
|
1091
1035
|
- test/fixtures/stylesheets/compass/sass/replacement.scss
|
|
1092
1036
|
- test/fixtures/stylesheets/compass/sass/reset.sass
|
|
1037
|
+
- test/fixtures/stylesheets/compass/sass/selection.scss
|
|
1093
1038
|
- test/fixtures/stylesheets/compass/sass/sprites.scss
|
|
1094
1039
|
- test/fixtures/stylesheets/compass/sass/stretching.sass
|
|
1095
1040
|
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
|
1096
1041
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
|
1097
1042
|
- test/fixtures/stylesheets/compass/sass/transition.scss
|
|
1043
|
+
- test/fixtures/stylesheets/compass/sass/units.scss
|
|
1098
1044
|
- test/fixtures/stylesheets/compass/sass/user-interface.scss
|
|
1099
1045
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
|
1100
1046
|
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
|
1101
1047
|
- test/fixtures/stylesheets/envtest/config.rb
|
|
1102
1048
|
- test/fixtures/stylesheets/envtest/css/env.css
|
|
1103
1049
|
- test/fixtures/stylesheets/envtest/sass/env.scss
|
|
1050
|
+
- test/fixtures/stylesheets/envtest/tmp/env.css
|
|
1104
1051
|
- test/fixtures/stylesheets/error/config.rb
|
|
1105
1052
|
- test/fixtures/stylesheets/error/sass/screen.sass
|
|
1106
1053
|
- test/fixtures/stylesheets/image_urls/config.rb
|
|
@@ -1123,6 +1070,7 @@ files:
|
|
|
1123
1070
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
|
1124
1071
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
|
1125
1072
|
- test/fixtures/stylesheets/valid/config.rb
|
|
1073
|
+
- test/fixtures/stylesheets/valid/css/simple.css
|
|
1126
1074
|
- test/fixtures/stylesheets/valid/sass/simple.sass
|
|
1127
1075
|
- test/helpers/command_line.rb
|
|
1128
1076
|
- test/helpers/diff.rb
|
|
@@ -1135,46 +1083,55 @@ files:
|
|
|
1135
1083
|
- test/units/actions_test.rb
|
|
1136
1084
|
- test/units/command_line_test.rb
|
|
1137
1085
|
- test/units/compass_module_test.rb
|
|
1138
|
-
- test/units/compass_png_test.rb
|
|
1139
1086
|
- test/units/compiler_test.rb
|
|
1140
1087
|
- test/units/configuration_test.rb
|
|
1141
1088
|
- test/units/regressions_test.rb
|
|
1142
1089
|
- test/units/sass_extensions_test.rb
|
|
1090
|
+
- test/units/sass_extenstions/gradients_test.rb
|
|
1143
1091
|
- test/units/sprites/engine_test.rb
|
|
1144
1092
|
- test/units/sprites/image_row_test.rb
|
|
1145
1093
|
- test/units/sprites/image_test.rb
|
|
1094
|
+
- test/units/sprites/images_test.rb
|
|
1146
1095
|
- test/units/sprites/importer_test.rb
|
|
1147
1096
|
- test/units/sprites/layout_test.rb
|
|
1148
1097
|
- test/units/sprites/row_fitter_test.rb
|
|
1149
1098
|
- test/units/sprites/sprite_command_test.rb
|
|
1150
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
|
|
1103
|
+
- features/command_line.feature
|
|
1104
|
+
- features/extensions.feature
|
|
1105
|
+
- features/step_definitions/command_line_steps.rb
|
|
1106
|
+
- features/step_definitions/extension_steps.rb
|
|
1151
1107
|
homepage: http://compass-style.org
|
|
1152
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!
|
|
1153
1111
|
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
post_install_message:
|
|
1112
|
+
'
|
|
1157
1113
|
rdoc_options: []
|
|
1158
|
-
|
|
1159
|
-
require_paths:
|
|
1114
|
+
require_paths:
|
|
1160
1115
|
- lib
|
|
1161
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
- !ruby/object:Gem::Version
|
|
1166
|
-
version:
|
|
1167
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1168
|
-
|
|
1169
|
-
|
|
1116
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1117
|
+
none: false
|
|
1118
|
+
requirements:
|
|
1119
|
+
- - ! '>='
|
|
1120
|
+
- !ruby/object:Gem::Version
|
|
1121
|
+
version: '0'
|
|
1122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1123
|
+
none: false
|
|
1124
|
+
requirements:
|
|
1125
|
+
- - ! '>'
|
|
1126
|
+
- !ruby/object:Gem::Version
|
|
1127
|
+
version: 1.3.1
|
|
1170
1128
|
requirements: []
|
|
1171
|
-
|
|
1172
1129
|
rubyforge_project:
|
|
1173
|
-
rubygems_version:
|
|
1130
|
+
rubygems_version: 1.8.25
|
|
1174
1131
|
signing_key:
|
|
1175
|
-
specification_version:
|
|
1132
|
+
specification_version: 3
|
|
1176
1133
|
summary: A Real Stylesheet Framework
|
|
1177
|
-
test_files:
|
|
1134
|
+
test_files:
|
|
1178
1135
|
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
|
1179
1136
|
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
|
1180
1137
|
- test/fixtures/fonts/bgrove.base64.txt
|
|
@@ -1193,6 +1150,7 @@ test_files:
|
|
|
1193
1150
|
- test/fixtures/sprites/public/images/ko/default_background.png
|
|
1194
1151
|
- test/fixtures/sprites/public/images/ko/starbg26x27.png
|
|
1195
1152
|
- test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png
|
|
1153
|
+
- test/fixtures/sprites/public/images/numeric/200.png
|
|
1196
1154
|
- test/fixtures/sprites/public/images/prefix/20-by-20.png
|
|
1197
1155
|
- test/fixtures/sprites/public/images/prefix/ten-by-ten.png
|
|
1198
1156
|
- test/fixtures/sprites/public/images/repeat_x/five.png
|
|
@@ -1206,71 +1164,34 @@ test_files:
|
|
|
1206
1164
|
- test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
|
|
1207
1165
|
- test/fixtures/sprites/public/images/squares/ten-by-ten.png
|
|
1208
1166
|
- test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
|
|
1209
|
-
- test/fixtures/stylesheets/
|
|
1210
|
-
- test/fixtures/stylesheets/
|
|
1211
|
-
- test/fixtures/stylesheets/
|
|
1212
|
-
- test/fixtures/stylesheets/
|
|
1213
|
-
- test/fixtures/stylesheets/
|
|
1214
|
-
- test/fixtures/stylesheets/
|
|
1215
|
-
- test/fixtures/stylesheets/
|
|
1216
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css
|
|
1217
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/form.css
|
|
1218
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/grid.css
|
|
1219
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/ie.css
|
|
1220
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css
|
|
1221
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css
|
|
1222
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css
|
|
1223
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/print.css
|
|
1224
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css
|
|
1225
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/reset.css
|
|
1226
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css
|
|
1227
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css
|
|
1228
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/typography.css
|
|
1229
|
-
- test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css
|
|
1230
|
-
- test/fixtures/stylesheets/blueprint/images/grid.png
|
|
1231
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/doc.png
|
|
1232
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/email.png
|
|
1233
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/external.png
|
|
1234
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/feed.png
|
|
1235
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/im.png
|
|
1236
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png
|
|
1237
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/visited.png
|
|
1238
|
-
- test/fixtures/stylesheets/blueprint/images/link_icons/xls.png
|
|
1239
|
-
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
|
1240
|
-
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
|
1241
|
-
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
|
1242
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss
|
|
1243
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss
|
|
1244
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss
|
|
1245
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss
|
|
1246
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss
|
|
1247
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss
|
|
1248
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss
|
|
1249
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss
|
|
1250
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss
|
|
1251
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss
|
|
1252
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss
|
|
1253
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss
|
|
1254
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss
|
|
1255
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss
|
|
1256
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss
|
|
1257
|
-
- test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss
|
|
1258
|
-
- 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
|
|
1259
1174
|
- test/fixtures/stylesheets/busted_image_urls/config.rb
|
|
1260
1175
|
- test/fixtures/stylesheets/busted_image_urls/css/screen.css
|
|
1261
1176
|
- test/fixtures/stylesheets/busted_image_urls/images/feed.png
|
|
1262
1177
|
- test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
|
|
1263
1178
|
- test/fixtures/stylesheets/busted_image_urls/images/grid.png
|
|
1264
1179
|
- test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
|
|
1180
|
+
- test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
|
|
1265
1181
|
- test/fixtures/stylesheets/compass/100x150.jpg
|
|
1266
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
|
|
1267
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
|
|
1268
1188
|
- test/fixtures/stylesheets/compass/css/border_radius.css
|
|
1269
1189
|
- test/fixtures/stylesheets/compass/css/box-sizeing.css
|
|
1270
1190
|
- test/fixtures/stylesheets/compass/css/box.css
|
|
1271
1191
|
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
|
1272
1192
|
- test/fixtures/stylesheets/compass/css/columns.css
|
|
1273
1193
|
- test/fixtures/stylesheets/compass/css/filters.css
|
|
1194
|
+
- test/fixtures/stylesheets/compass/css/flexbox.css
|
|
1274
1195
|
- test/fixtures/stylesheets/compass/css/fonts.css
|
|
1275
1196
|
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
|
1276
1197
|
- test/fixtures/stylesheets/compass/css/gradients.css
|
|
@@ -1287,11 +1208,13 @@ test_files:
|
|
|
1287
1208
|
- test/fixtures/stylesheets/compass/css/regions.css
|
|
1288
1209
|
- test/fixtures/stylesheets/compass/css/replacement.css
|
|
1289
1210
|
- test/fixtures/stylesheets/compass/css/reset.css
|
|
1211
|
+
- test/fixtures/stylesheets/compass/css/selection.css
|
|
1290
1212
|
- test/fixtures/stylesheets/compass/css/sprites.css
|
|
1291
1213
|
- test/fixtures/stylesheets/compass/css/stretching.css
|
|
1292
1214
|
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
|
1293
1215
|
- test/fixtures/stylesheets/compass/css/transform.css
|
|
1294
1216
|
- test/fixtures/stylesheets/compass/css/transition.css
|
|
1217
|
+
- test/fixtures/stylesheets/compass/css/units.css
|
|
1295
1218
|
- test/fixtures/stylesheets/compass/css/user-interface.css
|
|
1296
1219
|
- test/fixtures/stylesheets/compass/css/utilities.css
|
|
1297
1220
|
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
|
@@ -1547,14 +1470,19 @@ test_files:
|
|
|
1547
1470
|
- test/fixtures/stylesheets/compass/images/flag/za.png
|
|
1548
1471
|
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
|
1549
1472
|
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
|
1550
|
-
- 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
|
|
1551
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
|
|
1552
1479
|
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
|
1553
1480
|
- test/fixtures/stylesheets/compass/sass/box-sizeing.scss
|
|
1554
1481
|
- test/fixtures/stylesheets/compass/sass/box.sass
|
|
1555
1482
|
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
|
1556
1483
|
- test/fixtures/stylesheets/compass/sass/columns.scss
|
|
1557
1484
|
- test/fixtures/stylesheets/compass/sass/filters.scss
|
|
1485
|
+
- test/fixtures/stylesheets/compass/sass/flexbox.scss
|
|
1558
1486
|
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
|
1559
1487
|
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
|
1560
1488
|
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
|
@@ -1571,17 +1499,20 @@ test_files:
|
|
|
1571
1499
|
- test/fixtures/stylesheets/compass/sass/regions.scss
|
|
1572
1500
|
- test/fixtures/stylesheets/compass/sass/replacement.scss
|
|
1573
1501
|
- test/fixtures/stylesheets/compass/sass/reset.sass
|
|
1502
|
+
- test/fixtures/stylesheets/compass/sass/selection.scss
|
|
1574
1503
|
- test/fixtures/stylesheets/compass/sass/sprites.scss
|
|
1575
1504
|
- test/fixtures/stylesheets/compass/sass/stretching.sass
|
|
1576
1505
|
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
|
1577
1506
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
|
1578
1507
|
- test/fixtures/stylesheets/compass/sass/transition.scss
|
|
1508
|
+
- test/fixtures/stylesheets/compass/sass/units.scss
|
|
1579
1509
|
- test/fixtures/stylesheets/compass/sass/user-interface.scss
|
|
1580
1510
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
|
1581
1511
|
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
|
1582
1512
|
- test/fixtures/stylesheets/envtest/config.rb
|
|
1583
1513
|
- test/fixtures/stylesheets/envtest/css/env.css
|
|
1584
1514
|
- test/fixtures/stylesheets/envtest/sass/env.scss
|
|
1515
|
+
- test/fixtures/stylesheets/envtest/tmp/env.css
|
|
1585
1516
|
- test/fixtures/stylesheets/error/config.rb
|
|
1586
1517
|
- test/fixtures/stylesheets/error/sass/screen.sass
|
|
1587
1518
|
- test/fixtures/stylesheets/image_urls/config.rb
|
|
@@ -1604,6 +1535,7 @@ test_files:
|
|
|
1604
1535
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
|
1605
1536
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
|
1606
1537
|
- test/fixtures/stylesheets/valid/config.rb
|
|
1538
|
+
- test/fixtures/stylesheets/valid/css/simple.css
|
|
1607
1539
|
- test/fixtures/stylesheets/valid/sass/simple.sass
|
|
1608
1540
|
- test/helpers/command_line.rb
|
|
1609
1541
|
- test/helpers/diff.rb
|
|
@@ -1616,21 +1548,24 @@ test_files:
|
|
|
1616
1548
|
- test/units/actions_test.rb
|
|
1617
1549
|
- test/units/command_line_test.rb
|
|
1618
1550
|
- test/units/compass_module_test.rb
|
|
1619
|
-
- test/units/compass_png_test.rb
|
|
1620
1551
|
- test/units/compiler_test.rb
|
|
1621
1552
|
- test/units/configuration_test.rb
|
|
1622
1553
|
- test/units/regressions_test.rb
|
|
1623
1554
|
- test/units/sass_extensions_test.rb
|
|
1555
|
+
- test/units/sass_extenstions/gradients_test.rb
|
|
1624
1556
|
- test/units/sprites/engine_test.rb
|
|
1625
1557
|
- test/units/sprites/image_row_test.rb
|
|
1626
1558
|
- test/units/sprites/image_test.rb
|
|
1559
|
+
- test/units/sprites/images_test.rb
|
|
1627
1560
|
- test/units/sprites/importer_test.rb
|
|
1628
1561
|
- test/units/sprites/layout_test.rb
|
|
1629
1562
|
- test/units/sprites/row_fitter_test.rb
|
|
1630
1563
|
- test/units/sprites/sprite_command_test.rb
|
|
1631
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
|
|
1632
1568
|
- features/command_line.feature
|
|
1633
1569
|
- features/extensions.feature
|
|
1634
1570
|
- features/step_definitions/command_line_steps.rb
|
|
1635
1571
|
- features/step_definitions/extension_steps.rb
|
|
1636
|
-
has_rdoc:
|