compass 1.0.0.alpha.21 → 1.0.0.rc.0
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.
- checksums.yaml +4 -4
- data/Rakefile +11 -5
- data/features/command_line.feature +5 -25
- data/features/step_definitions/command_line_steps.rb +3 -3
- data/lib/compass.rb +2 -2
- data/lib/compass/actions.rb +4 -3
- data/lib/compass/commands/update_project.rb +50 -45
- data/lib/compass/commands/watch_project.rb +62 -13
- data/lib/compass/compiler.rb +2 -0
- data/lib/compass/configuration/adapters.rb +21 -0
- data/lib/compass/configuration/helpers.rb +8 -0
- data/lib/compass/deprecation.rb +19 -0
- data/lib/compass/exec/global_options_parser.rb +0 -4
- data/lib/compass/generated_version.rb +4 -0
- data/lib/compass/logger.rb +31 -18
- data/lib/compass/sass_compiler.rb +134 -0
- data/lib/compass/sass_extensions/functions/sprites.rb +3 -3
- data/lib/compass/sprite_importer.rb +1 -1
- data/lib/compass/version.rb +29 -31
- data/test/fixtures/stylesheets/compass/css/background-clip.css +2 -0
- data/test/fixtures/stylesheets/compass/css/background-origin.css +2 -0
- data/test/fixtures/stylesheets/compass/css/background-size.css +3 -0
- data/test/fixtures/stylesheets/compass/css/browser-support.css +22 -11
- data/test/fixtures/stylesheets/compass/css/filters.css +6 -6
- data/test/fixtures/stylesheets/compass/css/grid_background.css +4 -0
- data/test/fixtures/stylesheets/compass/css/support.css +6 -6
- data/test/fixtures/stylesheets/compass/css/transition.css +19 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_ems.css +1 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_px.css +1 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_rems.css +1 -0
- data/test/fixtures/stylesheets/sourcemaps/css/another_simple.css +1 -0
- data/test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map +2 -1
- data/test/fixtures/stylesheets/sourcemaps/css/simple.css +1 -0
- data/test/fixtures/stylesheets/sourcemaps/css/simple.css.map +2 -1
- data/test/fixtures/stylesheets/sourcemaps/css/with_libraries.css +1 -0
- data/test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map +2 -1
- data/test/integrations/compass_test.rb +5 -4
- data/test/units/caniuse_test.rb +8 -2
- data/test/units/command_line_test.rb +3 -3
- data/test/units/compiler_test.rb +7 -2
- data/test/units/configuration_test.rb +1 -1
- metadata +9 -22
- data/RELEASE_VERSION +0 -1
- data/VERSION +0 -1
- data/lib/compass/watcher.rb +0 -11
- data/lib/compass/watcher/compiler.rb +0 -60
- data/lib/compass/watcher/project_watcher.rb +0 -179
- data/lib/compass/watcher/watch.rb +0 -51
- data/test/fixtures/stylesheets/valid/css/another_simple.css +0 -4
- data/test/fixtures/stylesheets/valid/css/simple.css +0 -4
- data/test/units/watcher/compiler_test.rb +0 -39
- data/test/units/watcher/project_watcher_test.rb +0 -85
- data/test/units/watcher/watch_test.rb +0 -42
@@ -2,7 +2,7 @@
|
|
2
2
|
/* Capability css-filters is not prefixed with -moz because 0% of users are affected which is less than the threshold of 0.1. */
|
3
3
|
/* Capability css-filters is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.1. */
|
4
4
|
/* Capability css-filters is not prefixed with -o because 0% of users are affected which is less than the threshold of 0.1. */
|
5
|
-
/* Capability css-filters is prefixed with -webkit because
|
5
|
+
/* Capability css-filters is prefixed with -webkit because 50.0928% of users need it which is more than the threshold of 0.1%. */
|
6
6
|
/* Creating new -webkit context. */
|
7
7
|
-webkit-filter: blur(5px);
|
8
8
|
filter: blur(5px); }
|
@@ -11,7 +11,7 @@
|
|
11
11
|
/* Capability css-filters is not prefixed with -moz because 0% of users are affected which is less than the threshold of 0.1. */
|
12
12
|
/* Capability css-filters is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.1. */
|
13
13
|
/* Capability css-filters is not prefixed with -o because 0% of users are affected which is less than the threshold of 0.1. */
|
14
|
-
/* Capability css-filters is prefixed with -webkit because
|
14
|
+
/* Capability css-filters is prefixed with -webkit because 50.0928% of users need it which is more than the threshold of 0.1%. */
|
15
15
|
/* Creating new -webkit context. */
|
16
16
|
-webkit-filter: brightness(0.2);
|
17
17
|
filter: brightness(0.2); }
|
@@ -20,7 +20,7 @@
|
|
20
20
|
/* Capability css-filters is not prefixed with -moz because 0% of users are affected which is less than the threshold of 0.1. */
|
21
21
|
/* Capability css-filters is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.1. */
|
22
22
|
/* Capability css-filters is not prefixed with -o because 0% of users are affected which is less than the threshold of 0.1. */
|
23
|
-
/* Capability css-filters is prefixed with -webkit because
|
23
|
+
/* Capability css-filters is prefixed with -webkit because 50.0928% of users need it which is more than the threshold of 0.1%. */
|
24
24
|
/* Creating new -webkit context. */
|
25
25
|
-webkit-filter: hue-rotate(20deg);
|
26
26
|
filter: hue-rotate(20deg); }
|
@@ -29,7 +29,7 @@
|
|
29
29
|
/* Capability css-filters is not prefixed with -moz because 0% of users are affected which is less than the threshold of 0.1. */
|
30
30
|
/* Capability css-filters is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.1. */
|
31
31
|
/* Capability css-filters is not prefixed with -o because 0% of users are affected which is less than the threshold of 0.1. */
|
32
|
-
/* Capability css-filters is prefixed with -webkit because
|
32
|
+
/* Capability css-filters is prefixed with -webkit because 50.0928% of users need it which is more than the threshold of 0.1%. */
|
33
33
|
/* Creating new -webkit context. */
|
34
34
|
-webkit-filter: contrast(150%);
|
35
35
|
filter: contrast(150%); }
|
@@ -38,7 +38,7 @@
|
|
38
38
|
/* Capability css-filters is not prefixed with -moz because 0% of users are affected which is less than the threshold of 0.1. */
|
39
39
|
/* Capability css-filters is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.1. */
|
40
40
|
/* Capability css-filters is not prefixed with -o because 0% of users are affected which is less than the threshold of 0.1. */
|
41
|
-
/* Capability css-filters is prefixed with -webkit because
|
41
|
+
/* Capability css-filters is prefixed with -webkit because 50.0928% of users need it which is more than the threshold of 0.1%. */
|
42
42
|
/* Creating new -webkit context. */
|
43
43
|
-webkit-filter: grayscale(150%);
|
44
44
|
filter: grayscale(150%); }
|
@@ -47,7 +47,7 @@
|
|
47
47
|
/* Capability css-filters is not prefixed with -moz because 0% of users are affected which is less than the threshold of 0.1. */
|
48
48
|
/* Capability css-filters is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.1. */
|
49
49
|
/* Capability css-filters is not prefixed with -o because 0% of users are affected which is less than the threshold of 0.1. */
|
50
|
-
/* Capability css-filters is prefixed with -webkit because
|
50
|
+
/* Capability css-filters is prefixed with -webkit because 50.0928% of users need it which is more than the threshold of 0.1%. */
|
51
51
|
/* Creating new -webkit context. */
|
52
52
|
-webkit-filter: sepia(150%);
|
53
53
|
filter: sepia(150%); }
|
@@ -5,6 +5,7 @@
|
|
5
5
|
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
6
6
|
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
7
7
|
-moz-background-size: 100% 1.5em;
|
8
|
+
-o-background-size: 100% 1.5em;
|
8
9
|
-webkit-background-size: 100% 1.5em;
|
9
10
|
background-size: 100% 1.5em;
|
10
11
|
background-position: left top; }
|
@@ -24,6 +25,7 @@
|
|
24
25
|
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(121, 121, 229, 0.25) 0px, rgba(79, 79, 221, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(121, 121, 229, 0.25) 40px, rgba(79, 79, 221, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(121, 121, 229, 0.25) 80px, rgba(79, 79, 221, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(121, 121, 229, 0.25) 120px, rgba(79, 79, 221, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(121, 121, 229, 0.25) 160px, rgba(79, 79, 221, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(121, 121, 229, 0.25) 200px, rgba(79, 79, 221, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(121, 121, 229, 0.25) 240px, rgba(79, 79, 221, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(121, 121, 229, 0.25) 280px, rgba(79, 79, 221, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(121, 121, 229, 0.25) 320px, rgba(79, 79, 221, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(121, 121, 229, 0.25) 360px, rgba(79, 79, 221, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(121, 121, 229, 0.25) 400px, rgba(79, 79, 221, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(121, 121, 229, 0.25) 440px, rgba(79, 79, 221, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(121, 121, 229, 0.25) 480px, rgba(79, 79, 221, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(121, 121, 229, 0.25) 520px, rgba(79, 79, 221, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(121, 121, 229, 0.25) 560px, rgba(79, 79, 221, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(121, 121, 229, 0.25) 600px, rgba(79, 79, 221, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(121, 121, 229, 0.25) 640px, rgba(79, 79, 221, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(121, 121, 229, 0.25) 680px, rgba(79, 79, 221, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(121, 121, 229, 0.25) 720px, rgba(79, 79, 221, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(121, 121, 229, 0.25) 760px, rgba(79, 79, 221, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(121, 121, 229, 0.25) 800px, rgba(79, 79, 221, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(121, 121, 229, 0.25) 840px, rgba(79, 79, 221, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(121, 121, 229, 0.25) 880px, rgba(79, 79, 221, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(121, 121, 229, 0.25) 920px, rgba(79, 79, 221, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
25
26
|
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), linear-gradient(to right, rgba(0, 0, 0, 0) 0px, rgba(121, 121, 229, 0.25) 0px, rgba(79, 79, 221, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(121, 121, 229, 0.25) 40px, rgba(79, 79, 221, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(121, 121, 229, 0.25) 80px, rgba(79, 79, 221, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(121, 121, 229, 0.25) 120px, rgba(79, 79, 221, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(121, 121, 229, 0.25) 160px, rgba(79, 79, 221, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(121, 121, 229, 0.25) 200px, rgba(79, 79, 221, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(121, 121, 229, 0.25) 240px, rgba(79, 79, 221, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(121, 121, 229, 0.25) 280px, rgba(79, 79, 221, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(121, 121, 229, 0.25) 320px, rgba(79, 79, 221, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(121, 121, 229, 0.25) 360px, rgba(79, 79, 221, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(121, 121, 229, 0.25) 400px, rgba(79, 79, 221, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(121, 121, 229, 0.25) 440px, rgba(79, 79, 221, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(121, 121, 229, 0.25) 480px, rgba(79, 79, 221, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(121, 121, 229, 0.25) 520px, rgba(79, 79, 221, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(121, 121, 229, 0.25) 560px, rgba(79, 79, 221, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(121, 121, 229, 0.25) 600px, rgba(79, 79, 221, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(121, 121, 229, 0.25) 640px, rgba(79, 79, 221, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(121, 121, 229, 0.25) 680px, rgba(79, 79, 221, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(121, 121, 229, 0.25) 720px, rgba(79, 79, 221, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(121, 121, 229, 0.25) 760px, rgba(79, 79, 221, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(121, 121, 229, 0.25) 800px, rgba(79, 79, 221, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(121, 121, 229, 0.25) 840px, rgba(79, 79, 221, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(121, 121, 229, 0.25) 880px, rgba(79, 79, 221, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(121, 121, 229, 0.25) 920px, rgba(79, 79, 221, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
26
27
|
-moz-background-size: 100% 1.5em, auto;
|
28
|
+
-o-background-size: 100% 1.5em, auto;
|
27
29
|
-webkit-background-size: 100% 1.5em, auto;
|
28
30
|
background-size: 100% 1.5em, auto;
|
29
31
|
background-position: left top; }
|
@@ -35,6 +37,7 @@
|
|
35
37
|
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
36
38
|
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
37
39
|
-moz-background-size: 100% 1.5em;
|
40
|
+
-o-background-size: 100% 1.5em;
|
38
41
|
-webkit-background-size: 100% 1.5em;
|
39
42
|
background-size: 100% 1.5em;
|
40
43
|
background-position: left top; }
|
@@ -54,6 +57,7 @@
|
|
54
57
|
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 11%, rgba(121, 121, 229, 0.25) 11%, rgba(79, 79, 221, 0.25) 16%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 17%, rgba(121, 121, 229, 0.25) 17%, rgba(79, 79, 221, 0.25) 22%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 23%, rgba(121, 121, 229, 0.25) 23%, rgba(79, 79, 221, 0.25) 28%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 29%, rgba(121, 121, 229, 0.25) 29%, rgba(79, 79, 221, 0.25) 34%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0) 35%, rgba(121, 121, 229, 0.25) 35%, rgba(79, 79, 221, 0.25) 40%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 41%, rgba(121, 121, 229, 0.25) 41%, rgba(79, 79, 221, 0.25) 46%, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0) 47%, rgba(121, 121, 229, 0.25) 47%, rgba(79, 79, 221, 0.25) 52%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0) 53%, rgba(121, 121, 229, 0.25) 53%, rgba(79, 79, 221, 0.25) 58%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0) 59%, rgba(121, 121, 229, 0.25) 59%, rgba(79, 79, 221, 0.25) 64%, rgba(0, 0, 0, 0) 64%, rgba(0, 0, 0, 0) 65%, rgba(121, 121, 229, 0.25) 65%, rgba(79, 79, 221, 0.25) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 71%, rgba(121, 121, 229, 0.25) 71%, rgba(79, 79, 221, 0.25) 76%, rgba(0, 0, 0, 0) 76%, rgba(0, 0, 0, 0) 77%, rgba(121, 121, 229, 0.25) 77%, rgba(79, 79, 221, 0.25) 82%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0) 83%, rgba(121, 121, 229, 0.25) 83%, rgba(79, 79, 221, 0.25) 88%, rgba(0, 0, 0, 0) 88%, rgba(0, 0, 0, 0) 89%, rgba(121, 121, 229, 0.25) 89%, rgba(79, 79, 221, 0.25) 94%, rgba(0, 0, 0, 0) 94%, rgba(0, 0, 0, 0) 95%, rgba(121, 121, 229, 0.25) 95%, rgba(79, 79, 221, 0.25) 100%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
|
55
58
|
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), linear-gradient(to right, rgba(0, 0, 0, 0) 11%, rgba(121, 121, 229, 0.25) 11%, rgba(79, 79, 221, 0.25) 16%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 17%, rgba(121, 121, 229, 0.25) 17%, rgba(79, 79, 221, 0.25) 22%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 23%, rgba(121, 121, 229, 0.25) 23%, rgba(79, 79, 221, 0.25) 28%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 29%, rgba(121, 121, 229, 0.25) 29%, rgba(79, 79, 221, 0.25) 34%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0) 35%, rgba(121, 121, 229, 0.25) 35%, rgba(79, 79, 221, 0.25) 40%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 41%, rgba(121, 121, 229, 0.25) 41%, rgba(79, 79, 221, 0.25) 46%, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0) 47%, rgba(121, 121, 229, 0.25) 47%, rgba(79, 79, 221, 0.25) 52%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0) 53%, rgba(121, 121, 229, 0.25) 53%, rgba(79, 79, 221, 0.25) 58%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0) 59%, rgba(121, 121, 229, 0.25) 59%, rgba(79, 79, 221, 0.25) 64%, rgba(0, 0, 0, 0) 64%, rgba(0, 0, 0, 0) 65%, rgba(121, 121, 229, 0.25) 65%, rgba(79, 79, 221, 0.25) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 71%, rgba(121, 121, 229, 0.25) 71%, rgba(79, 79, 221, 0.25) 76%, rgba(0, 0, 0, 0) 76%, rgba(0, 0, 0, 0) 77%, rgba(121, 121, 229, 0.25) 77%, rgba(79, 79, 221, 0.25) 82%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0) 83%, rgba(121, 121, 229, 0.25) 83%, rgba(79, 79, 221, 0.25) 88%, rgba(0, 0, 0, 0) 88%, rgba(0, 0, 0, 0) 89%, rgba(121, 121, 229, 0.25) 89%, rgba(79, 79, 221, 0.25) 94%, rgba(0, 0, 0, 0) 94%, rgba(0, 0, 0, 0) 95%, rgba(121, 121, 229, 0.25) 95%, rgba(79, 79, 221, 0.25) 100%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
|
56
59
|
-moz-background-size: 100% 1.5em, auto;
|
60
|
+
-o-background-size: 100% 1.5em, auto;
|
57
61
|
-webkit-background-size: 100% 1.5em, auto;
|
58
62
|
background-size: 100% 1.5em, auto;
|
59
63
|
background-position: left top; }
|
@@ -21,7 +21,7 @@
|
|
21
21
|
/* - 0 Failed */
|
22
22
|
/*
|
23
23
|
*/
|
24
|
-
/* Capability css-animation is prefixed with -moz because 0.
|
24
|
+
/* Capability css-animation is prefixed with -moz because 0.57224% of users need it which is more than the threshold of 0.1%. */
|
25
25
|
/* Creating new -moz context. */
|
26
26
|
@-moz-keyframes foo {
|
27
27
|
0% {
|
@@ -34,8 +34,8 @@
|
|
34
34
|
Not allowed in the current scope: ie 8 is incompatible with -moz. */
|
35
35
|
opacity: 1; } }
|
36
36
|
/* Capability css-animation is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.1. */
|
37
|
-
/* Capability css-animation is not prefixed with -o because 0.
|
38
|
-
/* Capability css-animation is prefixed with -webkit because 57.
|
37
|
+
/* Capability css-animation is not prefixed with -o because 0.02146% of users are affected which is less than the threshold of 0.1. */
|
38
|
+
/* Capability css-animation is prefixed with -webkit because 57.87258% of users need it which is more than the threshold of 0.1%. */
|
39
39
|
/* Creating new -webkit context. */
|
40
40
|
@-webkit-keyframes foo {
|
41
41
|
0% {
|
@@ -58,12 +58,12 @@
|
|
58
58
|
Not allowed in the current scope: The current scope only works with ie 10 - 11. */
|
59
59
|
opacity: 1; } }
|
60
60
|
.foo {
|
61
|
-
/* Capability css-animation is prefixed with -moz because 0.
|
61
|
+
/* Capability css-animation is prefixed with -moz because 0.57224% of users need it which is more than the threshold of 0.1%. */
|
62
62
|
/* Creating new -moz context. */
|
63
63
|
-moz-animation: foo 1s;
|
64
64
|
/* Capability css-animation is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.1. */
|
65
|
-
/* Capability css-animation is not prefixed with -o because 0.
|
66
|
-
/* Capability css-animation is prefixed with -webkit because 57.
|
65
|
+
/* Capability css-animation is not prefixed with -o because 0.02146% of users are affected which is less than the threshold of 0.1. */
|
66
|
+
/* Capability css-animation is prefixed with -webkit because 57.87258% of users need it which is more than the threshold of 0.1%. */
|
67
67
|
/* Creating new -webkit context. */
|
68
68
|
-webkit-animation: foo 1s;
|
69
69
|
animation: foo 1s; }
|
@@ -1,97 +1,116 @@
|
|
1
1
|
.single-transition-without-delay {
|
2
2
|
-moz-transition: all 0.6s ease-out;
|
3
|
+
-o-transition: all 0.6s ease-out;
|
3
4
|
-webkit-transition: all 0.6s ease-out;
|
4
5
|
transition: all 0.6s ease-out; }
|
5
6
|
|
6
7
|
.single-transition-with-delay {
|
7
8
|
-moz-transition: all 0.6s ease-out 0.2s;
|
9
|
+
-o-transition: all 0.6s ease-out 0.2s;
|
8
10
|
-webkit-transition: all 0.6s ease-out;
|
9
11
|
-webkit-transition-delay: 0.2s;
|
10
12
|
transition: all 0.6s ease-out 0.2s; }
|
11
13
|
|
12
14
|
.transition-duration-list {
|
13
15
|
-moz-transition-duration: 0.2s, 0.5s, 0.2s;
|
16
|
+
-o-transition-duration: 0.2s, 0.5s, 0.2s;
|
14
17
|
-webkit-transition-duration: 0.2s, 0.5s, 0.2s;
|
15
18
|
transition-duration: 0.2s, 0.5s, 0.2s; }
|
16
19
|
|
17
20
|
.multiple-transition-durations {
|
18
21
|
-moz-transition-duration: 0.2s, 0.5s, 0.2s;
|
22
|
+
-o-transition-duration: 0.2s, 0.5s, 0.2s;
|
19
23
|
-webkit-transition-duration: 0.2s, 0.5s, 0.2s;
|
20
24
|
transition-duration: 0.2s, 0.5s, 0.2s; }
|
21
25
|
|
22
26
|
.single-transform-transition-without-delay {
|
23
27
|
-moz-transition: -moz-transform 0.6s ease-out;
|
28
|
+
-o-transition: -o-transform 0.6s ease-out;
|
24
29
|
-webkit-transition: -webkit-transform 0.6s ease-out;
|
25
30
|
transition: transform 0.6s ease-out; }
|
26
31
|
|
27
32
|
.single-transform-transition-with-delay {
|
28
33
|
-moz-transition: -moz-transform 0.6s ease-out 0.2s;
|
34
|
+
-o-transition: -o-transform 0.6s ease-out 0.2s;
|
29
35
|
-webkit-transition: -webkit-transform 0.6s ease-out;
|
30
36
|
-webkit-transition-delay: 0.2s;
|
31
37
|
transition: transform 0.6s ease-out 0.2s; }
|
32
38
|
|
33
39
|
.transform-transition {
|
34
40
|
-moz-transition: -moz-transform 0.6s ease-out;
|
41
|
+
-o-transition: -o-transform 0.6s ease-out;
|
35
42
|
-webkit-transition: -webkit-transform 0.6s ease-out;
|
36
43
|
transition: transform 0.6s ease-out; }
|
37
44
|
|
38
45
|
.multiple-transitions {
|
39
46
|
-moz-transition: -moz-transform 0.6s ease-out, opacity 0.2s ease-in;
|
47
|
+
-o-transition: -o-transform 0.6s ease-out, opacity 0.2s ease-in;
|
40
48
|
-webkit-transition: -webkit-transform 0.6s ease-out, opacity 0.2s ease-in;
|
41
49
|
transition: transform 0.6s ease-out, opacity 0.2s ease-in; }
|
42
50
|
|
43
51
|
.transition-property {
|
44
52
|
-moz-transition-property: -moz-transform;
|
53
|
+
-o-transition-property: -o-transform;
|
45
54
|
-webkit-transition-property: -webkit-transform;
|
46
55
|
transition-property: transform; }
|
47
56
|
|
48
57
|
.transition-properties {
|
49
58
|
-moz-transition-property: -moz-transform, opacity, width, height, left, top;
|
59
|
+
-o-transition-property: -o-transform, opacity, width, height, left, top;
|
50
60
|
-webkit-transition-property: -webkit-transform, opacity, width, height, left, top;
|
51
61
|
transition-property: transform, opacity, width, height, left, top; }
|
52
62
|
|
53
63
|
.multiple-transition-properties {
|
54
64
|
-moz-transition-property: opacity, -moz-transform, left;
|
65
|
+
-o-transition-property: opacity, -o-transform, left;
|
55
66
|
-webkit-transition-property: opacity, -webkit-transform, left;
|
56
67
|
transition-property: opacity, transform, left; }
|
57
68
|
|
58
69
|
.default-transition {
|
59
70
|
-moz-transition: all 1s;
|
71
|
+
-o-transition: all 1s;
|
60
72
|
-webkit-transition: all 1s;
|
61
73
|
transition: all 1s; }
|
62
74
|
|
63
75
|
.transition-timing {
|
64
76
|
-moz-transition-timing-function: ease-in;
|
77
|
+
-o-transition-timing-function: ease-in;
|
65
78
|
-webkit-transition-timing-function: ease-in;
|
66
79
|
transition-timing-function: ease-in; }
|
67
80
|
|
68
81
|
.transition-timings {
|
69
82
|
-moz-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
83
|
+
-o-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
70
84
|
-webkit-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
71
85
|
transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0); }
|
72
86
|
|
73
87
|
.transition-timings-list {
|
74
88
|
-moz-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
89
|
+
-o-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
75
90
|
-webkit-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
76
91
|
transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0); }
|
77
92
|
|
78
93
|
.transition-delay {
|
79
94
|
-moz-transition-delay: 1s;
|
95
|
+
-o-transition-delay: 1s;
|
80
96
|
-webkit-transition-delay: 1s;
|
81
97
|
transition-delay: 1s; }
|
82
98
|
|
83
99
|
.transition-delays {
|
84
100
|
-moz-transition-delay: 1s, 2s, 3s;
|
101
|
+
-o-transition-delay: 1s, 2s, 3s;
|
85
102
|
-webkit-transition-delay: 1s, 2s, 3s;
|
86
103
|
transition-delay: 1s, 2s, 3s; }
|
87
104
|
|
88
105
|
.transition-delays-list {
|
89
106
|
-moz-transition-delay: 1s, 2s, 3s;
|
107
|
+
-o-transition-delay: 1s, 2s, 3s;
|
90
108
|
-webkit-transition-delay: 1s, 2s, 3s;
|
91
109
|
transition-delay: 1s, 2s, 3s; }
|
92
110
|
|
93
111
|
.regression-912 {
|
94
112
|
-moz-transition: background-color 0.5s ease-in 0s, width 0.5s ease-out 0s, height 0.5s ease-in 0s, top 0.5s ease-out 0s;
|
113
|
+
-o-transition: background-color 0.5s ease-in 0s, width 0.5s ease-out 0s, height 0.5s ease-in 0s, top 0.5s ease-out 0s;
|
95
114
|
-webkit-transition: background-color 0.5s ease-in, width 0.5s ease-out, height 0.5s ease-in, top 0.5s ease-out;
|
96
115
|
-webkit-transition-delay: 0s, 0s, 0s, 0s;
|
97
116
|
transition: background-color 0.5s ease-in 0s, width 0.5s ease-out 0s, height 0.5s ease-in 0s, top 0.5s ease-out 0s; }
|
@@ -10,6 +10,7 @@ html {
|
|
10
10
|
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
11
11
|
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
12
12
|
-moz-background-size: 100% 1.4em;
|
13
|
+
-o-background-size: 100% 1.4em;
|
13
14
|
-webkit-background-size: 100% 1.4em;
|
14
15
|
background-size: 100% 1.4em;
|
15
16
|
background-position: left top; }
|
@@ -10,6 +10,7 @@ html {
|
|
10
10
|
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
11
11
|
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
12
12
|
-moz-background-size: 100% 25px;
|
13
|
+
-o-background-size: 100% 25px;
|
13
14
|
-webkit-background-size: 100% 25px;
|
14
15
|
background-size: 100% 25px;
|
15
16
|
background-position: left top; }
|
@@ -10,6 +10,7 @@ html {
|
|
10
10
|
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
11
11
|
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
12
12
|
-moz-background-size: 100% 1.4rem;
|
13
|
+
-o-background-size: 100% 1.4rem;
|
13
14
|
-webkit-background-size: 100% 1.4rem;
|
14
15
|
background-size: 100% 1.4rem;
|
15
16
|
background-position: left top; }
|
@@ -1,6 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
|
-
"mappings": "
|
3
|
+
"mappings": "AAEA,CAAE,CC0VA,eAAwC,CC1U5B,UAAmB,CD0U/B,kBAAwC,CC1U5B,UAAmB,CD0U/B,UAAwC,CC1U5B,UAAmB",
|
4
4
|
"sources": ["../sass/with_libraries.scss","../../../../../../core/stylesheets/compass/_support.scss","../../../../../../core/stylesheets/compass/css3/_box-sizing.scss"],
|
5
|
+
"names": [],
|
5
6
|
"file": "with_libraries.css"
|
6
7
|
}
|
@@ -179,7 +179,7 @@ private
|
|
179
179
|
end
|
180
180
|
end
|
181
181
|
if expected_lines.size < actual_lines.size
|
182
|
-
assert(false, "#{actual_lines.size - expected_lines.size} Trailing lines found in #{actual_result_file}
|
182
|
+
assert(false, "#{actual_lines.size - expected_lines.size} Trailing lines found in #{actual_result_file}: #{actual_lines[expected_lines.size..-1].join('\n')}")
|
183
183
|
end
|
184
184
|
end
|
185
185
|
end
|
@@ -189,16 +189,17 @@ private
|
|
189
189
|
Compass.add_configuration(configuration_file(project_name)) if File.exists?(configuration_file(project_name))
|
190
190
|
Compass.configuration.project_path = project_path(project_name)
|
191
191
|
Compass.configuration.environment = :production
|
192
|
-
|
192
|
+
Compass.configuration.sourcemap = false unless Compass.configuration.sourcemap_set?
|
193
193
|
|
194
194
|
if config_block
|
195
195
|
config_block.call(Compass.configuration)
|
196
196
|
end
|
197
197
|
|
198
198
|
if Compass.configuration.sass_path && File.exists?(Compass.configuration.sass_path)
|
199
|
-
compiler = Compass
|
199
|
+
compiler = Compass.sass_compiler
|
200
|
+
compiler.logger = Compass::NullLogger.new
|
200
201
|
compiler.clean!
|
201
|
-
compiler.
|
202
|
+
compiler.compile!
|
202
203
|
end
|
203
204
|
yield Compass.configuration if block_given?
|
204
205
|
rescue
|
data/test/units/caniuse_test.rb
CHANGED
@@ -48,6 +48,7 @@ class CanIUseTest < Test::Unit::TestCase
|
|
48
48
|
"border-radius",
|
49
49
|
"calc",
|
50
50
|
"css-animation",
|
51
|
+
"css-appearance",
|
51
52
|
"css-backgroundblendmode",
|
52
53
|
"css-boxshadow",
|
53
54
|
"css-canvas",
|
@@ -116,7 +117,12 @@ class CanIUseTest < Test::Unit::TestCase
|
|
116
117
|
total = 0
|
117
118
|
caniuse.browsers.each do |browser|
|
118
119
|
caniuse.versions(browser).each do |version|
|
119
|
-
|
120
|
+
usage = caniuse.usage(browser, version)
|
121
|
+
if usage.nil?
|
122
|
+
puts "nil usage for #{browser} at version #{version}"
|
123
|
+
next
|
124
|
+
end
|
125
|
+
total += usage
|
120
126
|
end
|
121
127
|
end
|
122
128
|
# all browsers add up to about 94%. that's... unfortunate.
|
@@ -162,7 +168,7 @@ class CanIUseTest < Test::Unit::TestCase
|
|
162
168
|
mins = caniuse.browser_ranges("border-radius", "-webkit")
|
163
169
|
expected = {
|
164
170
|
"android"=>["2.1", "4.4.3"],
|
165
|
-
"chrome"=>["4", "
|
171
|
+
"chrome"=>["4", "39"],
|
166
172
|
"ios-safari"=>["3.2", "8"],
|
167
173
|
"safari"=>["3.1", "8"]
|
168
174
|
}
|
@@ -38,7 +38,7 @@ class CommandLineTest < Test::Unit::TestCase
|
|
38
38
|
assert File.exists?("#{framework.name}_project/stylesheets/screen.css")
|
39
39
|
assert_action_performed :directory, "#{framework.name}_project/"
|
40
40
|
assert_action_performed :create, "#{framework.name}_project/sass/screen.scss"
|
41
|
-
assert_action_performed :
|
41
|
+
assert_action_performed :write, "#{framework.name}_project/stylesheets/screen.css"
|
42
42
|
end
|
43
43
|
end
|
44
44
|
end
|
@@ -49,10 +49,10 @@ class CommandLineTest < Test::Unit::TestCase
|
|
49
49
|
Dir.chdir "basic" do
|
50
50
|
# basic update with timestamp caching
|
51
51
|
compass "compile", "--boring"
|
52
|
-
assert_action_performed :unchanged, "sass/screen.scss"
|
52
|
+
# assert_action_performed :unchanged, "sass/screen.scss"
|
53
53
|
# basic update with force option set
|
54
54
|
compass "compile", "--force", "--boring"
|
55
|
-
assert_action_performed :
|
55
|
+
assert_action_performed :write, "stylesheets/screen.css"
|
56
56
|
end
|
57
57
|
end
|
58
58
|
end
|
data/test/units/compiler_test.rb
CHANGED
@@ -4,8 +4,13 @@ require 'fileutils'
|
|
4
4
|
class CompilerTest < Test::Unit::TestCase
|
5
5
|
|
6
6
|
it "should strip css from file name and reappend" do
|
7
|
-
|
7
|
+
config = Compass::Configuration::Data.new("test",
|
8
|
+
:project_path => Dir.pwd,
|
9
|
+
:sass_dir => "foo",
|
10
|
+
:css_dir => "bar")
|
11
|
+
config.extend(Compass::Configuration::Defaults)
|
12
|
+
compiler = Compass.sass_compiler({}, config)
|
8
13
|
assert_equal 'screen', compiler.stylesheet_name(File.join(Dir.pwd, 'foo', 'screen.css.scss'))
|
9
14
|
end
|
10
15
|
|
11
|
-
end
|
16
|
+
end
|
@@ -70,7 +70,7 @@ class ConfigurationTest < Test::Unit::TestCase
|
|
70
70
|
Compass.add_configuration(contents, 'test_watch_config')
|
71
71
|
watch = Compass.configuration.watches.first
|
72
72
|
assert_equal 'img/**/*', watch.glob
|
73
|
-
assert watch.is_a?(Compass::
|
73
|
+
assert watch.is_a?(Compass::Configuration::Watch)
|
74
74
|
end
|
75
75
|
|
76
76
|
def test_serialization_warns_with_asset_host_set
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Eppstein
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2014-
|
15
|
+
date: 2014-08-01 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: sass
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - '>='
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 3.3.
|
23
|
+
version: 3.3.13
|
24
24
|
- - <
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.5'
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.3.
|
33
|
+
version: 3.3.13
|
34
34
|
- - <
|
35
35
|
- !ruby/object:Gem::Version
|
36
36
|
version: '3.5'
|
@@ -40,14 +40,14 @@ dependencies:
|
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: 1.0.0.
|
43
|
+
version: 1.0.0.rc.0
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
46
|
version_requirements: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
48
|
- - ~>
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 1.0.0.
|
50
|
+
version: 1.0.0.rc.0
|
51
51
|
- !ruby/object:Gem::Dependency
|
52
52
|
name: compass-import-once
|
53
53
|
requirement: !ruby/object:Gem::Requirement
|
@@ -113,7 +113,6 @@ extensions: []
|
|
113
113
|
extra_rdoc_files: []
|
114
114
|
files:
|
115
115
|
- LICENSE.markdown
|
116
|
-
- VERSION
|
117
116
|
- Rakefile
|
118
117
|
- bin/compass
|
119
118
|
- lib/compass/actions.rb
|
@@ -151,6 +150,7 @@ files:
|
|
151
150
|
- lib/compass/configuration/helpers.rb
|
152
151
|
- lib/compass/configuration/serialization.rb
|
153
152
|
- lib/compass/dependencies.rb
|
153
|
+
- lib/compass/deprecation.rb
|
154
154
|
- lib/compass/errors.rb
|
155
155
|
- lib/compass/exec/command_option_parser.rb
|
156
156
|
- lib/compass/exec/global_options_parser.rb
|
@@ -158,6 +158,7 @@ files:
|
|
158
158
|
- lib/compass/exec/project_options_parser.rb
|
159
159
|
- lib/compass/exec/sub_command_ui.rb
|
160
160
|
- lib/compass/exec.rb
|
161
|
+
- lib/compass/generated_version.rb
|
161
162
|
- lib/compass/installers/bare_installer.rb
|
162
163
|
- lib/compass/installers/base.rb
|
163
164
|
- lib/compass/installers/manifest.rb
|
@@ -167,6 +168,7 @@ files:
|
|
167
168
|
- lib/compass/logger.rb
|
168
169
|
- lib/compass/quick_cache.rb
|
169
170
|
- lib/compass/rails.rb
|
171
|
+
- lib/compass/sass_compiler.rb
|
170
172
|
- lib/compass/sass_extensions/functions/sprites.rb
|
171
173
|
- lib/compass/sass_extensions/functions.rb
|
172
174
|
- lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
|
@@ -193,10 +195,6 @@ files:
|
|
193
195
|
- lib/compass/test_case.rb
|
194
196
|
- lib/compass/validator.rb
|
195
197
|
- lib/compass/version.rb
|
196
|
-
- lib/compass/watcher/compiler.rb
|
197
|
-
- lib/compass/watcher/project_watcher.rb
|
198
|
-
- lib/compass/watcher/watch.rb
|
199
|
-
- lib/compass/watcher.rb
|
200
198
|
- lib/compass.rb
|
201
199
|
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
202
200
|
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
@@ -635,8 +633,6 @@ files:
|
|
635
633
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
636
634
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
637
635
|
- test/fixtures/stylesheets/valid/config.rb
|
638
|
-
- test/fixtures/stylesheets/valid/css/another_simple.css
|
639
|
-
- test/fixtures/stylesheets/valid/css/simple.css
|
640
636
|
- test/fixtures/stylesheets/valid/sass/another_simple.scss
|
641
637
|
- test/fixtures/stylesheets/valid/sass/simple.sass
|
642
638
|
- test/fixtures/stylesheets/with_sass_globbing/config.rb
|
@@ -671,14 +667,10 @@ files:
|
|
671
667
|
- test/units/sprites/row_fitter_test.rb
|
672
668
|
- test/units/sprites/sprite_command_test.rb
|
673
669
|
- test/units/sprites/sprite_map_test.rb
|
674
|
-
- test/units/watcher/compiler_test.rb
|
675
|
-
- test/units/watcher/project_watcher_test.rb
|
676
|
-
- test/units/watcher/watch_test.rb
|
677
670
|
- features/command_line.feature
|
678
671
|
- features/extensions.feature
|
679
672
|
- features/step_definitions/command_line_steps.rb
|
680
673
|
- features/step_definitions/extension_steps.rb
|
681
|
-
- RELEASE_VERSION
|
682
674
|
homepage: http://compass-style.org
|
683
675
|
licenses: []
|
684
676
|
metadata: {}
|
@@ -1141,8 +1133,6 @@ test_files:
|
|
1141
1133
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
|
1142
1134
|
- test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
|
1143
1135
|
- test/fixtures/stylesheets/valid/config.rb
|
1144
|
-
- test/fixtures/stylesheets/valid/css/another_simple.css
|
1145
|
-
- test/fixtures/stylesheets/valid/css/simple.css
|
1146
1136
|
- test/fixtures/stylesheets/valid/sass/another_simple.scss
|
1147
1137
|
- test/fixtures/stylesheets/valid/sass/simple.sass
|
1148
1138
|
- test/fixtures/stylesheets/with_sass_globbing/config.rb
|
@@ -1177,9 +1167,6 @@ test_files:
|
|
1177
1167
|
- test/units/sprites/row_fitter_test.rb
|
1178
1168
|
- test/units/sprites/sprite_command_test.rb
|
1179
1169
|
- test/units/sprites/sprite_map_test.rb
|
1180
|
-
- test/units/watcher/compiler_test.rb
|
1181
|
-
- test/units/watcher/project_watcher_test.rb
|
1182
|
-
- test/units/watcher/watch_test.rb
|
1183
1170
|
- features/command_line.feature
|
1184
1171
|
- features/extensions.feature
|
1185
1172
|
- features/step_definitions/command_line_steps.rb
|