compass 0.11.beta.2 → 0.11.beta.3
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/VERSION.yml +1 -1
- data/examples/compass/src/utilities.scss +2 -2
- data/features/step_definitions/command_line_steps.rb +1 -1
- data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +1 -1
- data/frameworks/blueprint/stylesheets/blueprint/_utilities.scss +1 -1
- data/frameworks/compass/stylesheets/_compass.scss +1 -0
- data/frameworks/compass/stylesheets/compass/_css3.scss +1 -0
- data/frameworks/compass/stylesheets/compass/_reset-legacy.scss +3 -0
- data/frameworks/compass/stylesheets/compass/_typography.scss +4 -0
- data/frameworks/compass/stylesheets/compass/_utilities.scss +6 -3
- data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +13 -0
- data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +10 -10
- data/frameworks/compass/stylesheets/compass/reset/_utilities-legacy.scss +135 -0
- data/frameworks/compass/stylesheets/compass/reset/_utilities.scss +34 -28
- data/frameworks/compass/stylesheets/compass/typography/_links.scss +3 -0
- data/frameworks/compass/stylesheets/compass/typography/_lists.scss +4 -0
- data/frameworks/compass/stylesheets/compass/typography/_text.scss +3 -0
- data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +124 -0
- data/frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss +5 -0
- data/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss +28 -0
- data/frameworks/compass/stylesheets/compass/typography/links/_unstyled-link.scss +7 -0
- data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +34 -0
- data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +61 -0
- data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +47 -0
- data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +44 -0
- data/frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss +25 -0
- data/frameworks/compass/stylesheets/compass/typography/text/_nowrap.scss +2 -0
- data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +34 -0
- data/frameworks/compass/stylesheets/compass/utilities/_color.scss +1 -0
- data/frameworks/compass/stylesheets/compass/utilities/_links.scss +5 -3
- data/frameworks/compass/stylesheets/compass/utilities/_lists.scss +6 -4
- data/frameworks/compass/stylesheets/compass/utilities/_text.scss +5 -3
- data/frameworks/compass/stylesheets/compass/utilities/color/_contrast.scss +28 -0
- data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +15 -0
- data/frameworks/compass/stylesheets/compass/utilities/links/_hover-link.scss +3 -5
- data/frameworks/compass/stylesheets/compass/utilities/links/_link-colors.scss +2 -27
- data/frameworks/compass/stylesheets/compass/utilities/links/_unstyled-link.scss +3 -7
- data/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss +2 -33
- data/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal-list.scss +2 -60
- data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss +2 -46
- data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss +2 -34
- data/frameworks/compass/stylesheets/compass/utilities/text/_ellipsis.scss +2 -24
- data/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.scss +3 -2
- data/frameworks/compass/stylesheets/compass/utilities/text/_replacement.scss +2 -33
- data/frameworks/compass/templates/ellipsis/ellipsis.sass +1 -1
- data/frameworks/compass/templates/pie/manifest.rb +1 -1
- data/lib/compass.rb +2 -0
- data/lib/compass/compiler.rb +18 -4
- data/lib/compass/configuration.rb +1 -1
- data/lib/compass/configuration/data.rb +10 -0
- data/lib/compass/configuration/file_data.rb +43 -0
- data/lib/compass/configuration/helpers.rb +8 -2
- data/lib/compass/configuration/inheritance.rb +2 -2
- data/lib/compass/configuration/serialization.rb +51 -76
- data/lib/compass/sass_extensions/functions/colors.rb +1 -1
- data/lib/compass/sass_extensions/functions/sprites.rb +9 -5
- data/test/compass_test.rb +35 -7
- data/test/fixtures/stylesheets/blueprint/css/screen.css +18 -14
- data/test/fixtures/stylesheets/compass/css/fonts.css +2 -6
- data/test/fixtures/stylesheets/compass/css/lists.css +0 -6
- data/test/fixtures/stylesheets/compass/css/reset.css +18 -14
- data/test/fixtures/stylesheets/compass/css/utilities.css +13 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +42 -0
- data/test/fixtures/stylesheets/compass/sass/fonts.sass +1 -1
- data/test/fixtures/stylesheets/compass/sass/lists.scss +2 -2
- data/test/fixtures/stylesheets/compass/sass/utilities.scss +5 -0
- data/test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss +14 -0
- metadata +30 -31
@@ -2,7 +2,7 @@ require 'digest/md5'
|
|
2
2
|
|
3
3
|
module Compass::SassExtensions::Functions::Sprites
|
4
4
|
ZERO = Sass::Script::Number::new(0)
|
5
|
-
|
5
|
+
|
6
6
|
# Provides a consistent interface for getting a variable in ruby
|
7
7
|
# from a keyword argument hash that accounts for underscores/dash equivalence
|
8
8
|
# and allows the caller to pass a symbol instead of a string.
|
@@ -123,7 +123,9 @@ module Compass::SassExtensions::Functions::Sprites
|
|
123
123
|
# Generate a sprite image if necessary
|
124
124
|
def generate
|
125
125
|
if generation_required?
|
126
|
-
|
126
|
+
sprite_data = construct_sprite
|
127
|
+
save!(sprite_data)
|
128
|
+
Compass.configuration.run_callback(:sprite_generated, sprite_data)
|
127
129
|
end
|
128
130
|
end
|
129
131
|
|
@@ -155,7 +157,7 @@ module Compass::SassExtensions::Functions::Sprites
|
|
155
157
|
end
|
156
158
|
end
|
157
159
|
end
|
158
|
-
output_png
|
160
|
+
output_png
|
159
161
|
end
|
160
162
|
|
161
163
|
# The on-the-disk filename of the sprite
|
@@ -180,7 +182,9 @@ module Compass::SassExtensions::Functions::Sprites
|
|
180
182
|
|
181
183
|
# saves the sprite for later retrieval
|
182
184
|
def save!(output_png)
|
183
|
-
output_png.save filename
|
185
|
+
saved = output_png.save filename
|
186
|
+
Compass.configuration.run_callback(:sprite_saved, filename)
|
187
|
+
saved
|
184
188
|
end
|
185
189
|
|
186
190
|
# All the full-path filenames involved in this sprite
|
@@ -285,7 +289,7 @@ module Compass::SassExtensions::Functions::Sprites
|
|
285
289
|
end
|
286
290
|
end
|
287
291
|
Sass::Script::Functions.declare :sprite_file, [:map, :sprite]
|
288
|
-
|
292
|
+
|
289
293
|
# Returns a url to the sprite image.
|
290
294
|
def sprite_url(map)
|
291
295
|
unless map.is_a?(SpriteMap)
|
data/test/compass_test.rb
CHANGED
@@ -20,6 +20,29 @@ class CompassTest < Test::Unit::TestCase
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
+
def test_on_stylesheet_saved_callback
|
24
|
+
saved = false
|
25
|
+
path = nil
|
26
|
+
config = nil
|
27
|
+
before_compile = Proc.new do |config|
|
28
|
+
config.on_stylesheet_saved {|filepath| path = filepath; saved = true }
|
29
|
+
end
|
30
|
+
within_project(:blueprint, before_compile)
|
31
|
+
assert saved, "Stylesheet callback didn't get called"
|
32
|
+
assert path.is_a?(String), "Path is not a string. Got: #{path.class.name}"
|
33
|
+
end
|
34
|
+
|
35
|
+
# no project with errors exists to test aginst - leep of FAITH!
|
36
|
+
# *chriseppstein flogs himself*
|
37
|
+
# def test_on_stylesheet_error_callback
|
38
|
+
# error = false
|
39
|
+
# file = nil
|
40
|
+
# Compass.configuration.on_stylesheet_error {|filename, message| file = filename; error = true }
|
41
|
+
# within_project(:error) { } #requires a block but we don't need to pass anything - sdavis
|
42
|
+
# assert error, "Project did not throw a compile error"
|
43
|
+
# assert file.is_a?(String), "Filename was not a string"
|
44
|
+
# end
|
45
|
+
|
23
46
|
def test_empty_project
|
24
47
|
# With no sass files, we should have no css files.
|
25
48
|
within_project(:empty) do |proj|
|
@@ -102,22 +125,27 @@ private
|
|
102
125
|
end
|
103
126
|
end
|
104
127
|
|
105
|
-
def within_project(project_name)
|
128
|
+
def within_project(project_name, config_block = nil)
|
106
129
|
@current_project = project_name
|
107
130
|
Compass.add_configuration(configuration_file(project_name)) if File.exists?(configuration_file(project_name))
|
108
131
|
Compass.configuration.project_path = project_path(project_name)
|
109
132
|
Compass.configuration.environment = :production
|
110
133
|
args = Compass.configuration.to_compiler_arguments(:logger => Compass::NullLogger.new)
|
134
|
+
|
135
|
+
if config_block
|
136
|
+
config_block.call(Compass.configuration)
|
137
|
+
end
|
138
|
+
|
111
139
|
if Compass.configuration.sass_path && File.exists?(Compass.configuration.sass_path)
|
112
140
|
compiler = Compass::Compiler.new *args
|
113
141
|
compiler.run
|
114
142
|
end
|
115
|
-
yield Compass.configuration
|
143
|
+
yield Compass.configuration if block_given?
|
116
144
|
rescue
|
117
|
-
save_output(project_name)
|
145
|
+
save_output(project_name)
|
118
146
|
raise
|
119
147
|
end
|
120
|
-
|
148
|
+
|
121
149
|
def each_css_file(dir, &block)
|
122
150
|
Dir.glob("#{dir}/**/*.css").each(&block)
|
123
151
|
end
|
@@ -145,15 +173,15 @@ private
|
|
145
173
|
def tempfile_path(project_name)
|
146
174
|
File.join(project_path(project_name), "tmp")
|
147
175
|
end
|
148
|
-
|
176
|
+
|
149
177
|
def template_path(project_name)
|
150
178
|
File.join(project_path(project_name), "sass")
|
151
179
|
end
|
152
|
-
|
180
|
+
|
153
181
|
def result_path(project_name)
|
154
182
|
File.join(project_path(project_name), "css")
|
155
183
|
end
|
156
|
-
|
184
|
+
|
157
185
|
def save_path(project_name)
|
158
186
|
File.join(project_path(project_name), "saved")
|
159
187
|
end
|
@@ -1,33 +1,32 @@
|
|
1
1
|
html, body, div, span, applet, object, iframe,
|
2
2
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
3
3
|
a, abbr, acronym, address, big, cite, code,
|
4
|
-
del, dfn, em,
|
4
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
5
5
|
small, strike, strong, sub, sup, tt, var,
|
6
|
+
b, u, i, center,
|
6
7
|
dl, dt, dd, ol, ul, li,
|
7
8
|
fieldset, form, label, legend,
|
8
|
-
table, caption, tbody, tfoot, thead, tr, th, td
|
9
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
10
|
+
article, aside, canvas, details, embed,
|
11
|
+
figure, figcaption, footer, header, hgroup,
|
12
|
+
menu, nav, output, ruby, section, summary,
|
13
|
+
time, mark, audio, video {
|
9
14
|
margin: 0;
|
10
15
|
padding: 0;
|
11
16
|
border: 0;
|
12
|
-
outline: 0;
|
13
|
-
font-weight: inherit;
|
14
|
-
font-style: inherit;
|
15
17
|
font-size: 100%;
|
16
|
-
font
|
18
|
+
font: inherit;
|
17
19
|
vertical-align: baseline; }
|
18
20
|
|
19
21
|
body {
|
20
|
-
line-height: 1;
|
21
|
-
color: black;
|
22
|
-
background: white; }
|
22
|
+
line-height: 1; }
|
23
23
|
|
24
24
|
ol, ul {
|
25
25
|
list-style: none; }
|
26
26
|
|
27
27
|
table {
|
28
|
-
border-collapse:
|
29
|
-
border-spacing: 0;
|
30
|
-
vertical-align: middle; }
|
28
|
+
border-collapse: collapse;
|
29
|
+
border-spacing: 0; }
|
31
30
|
|
32
31
|
caption, th, td {
|
33
32
|
text-align: left;
|
@@ -35,13 +34,18 @@ caption, th, td {
|
|
35
34
|
vertical-align: middle; }
|
36
35
|
|
37
36
|
q, blockquote {
|
38
|
-
quotes:
|
37
|
+
quotes: none; }
|
39
38
|
q:before, q:after, blockquote:before, blockquote:after {
|
40
|
-
content: "";
|
39
|
+
content: "";
|
40
|
+
content: none; }
|
41
41
|
|
42
42
|
a img {
|
43
43
|
border: none; }
|
44
44
|
|
45
|
+
article, aside, details, figcaption, figure,
|
46
|
+
footer, header, hgroup, menu, nav, section {
|
47
|
+
display: block; }
|
48
|
+
|
45
49
|
body {
|
46
50
|
line-height: 1.5;
|
47
51
|
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
@@ -1,9 +1,5 @@
|
|
1
1
|
@charset "UTF-8";
|
2
2
|
@font-face {
|
3
3
|
font-family: "font1";
|
4
|
-
src:
|
5
|
-
|
6
|
-
@media screen and (max-device-width: 480px) {
|
7
|
-
@font-face {
|
8
|
-
font-family: "font1";
|
9
|
-
src: url('/tmp/fonts/font1.woff') format('woff'); } }
|
4
|
+
src: url('/tmp/fonts/font1.eot');
|
5
|
+
src: url('/tmp/fonts/font1.eot?iefix') format('eot'), url('/tmp/fonts/font1.woff') format('woff'); }
|
@@ -2,7 +2,6 @@ ul.horizontal {
|
|
2
2
|
margin: 0;
|
3
3
|
padding: 0;
|
4
4
|
border: 0;
|
5
|
-
outline: 0;
|
6
5
|
overflow: hidden;
|
7
6
|
*zoom: 1; }
|
8
7
|
ul.horizontal li {
|
@@ -25,7 +24,6 @@ ul.wide-horizontal {
|
|
25
24
|
margin: 0;
|
26
25
|
padding: 0;
|
27
26
|
border: 0;
|
28
|
-
outline: 0;
|
29
27
|
overflow: hidden;
|
30
28
|
*zoom: 1; }
|
31
29
|
ul.wide-horizontal li {
|
@@ -48,7 +46,6 @@ ul.right-horizontal {
|
|
48
46
|
margin: 0;
|
49
47
|
padding: 0;
|
50
48
|
border: 0;
|
51
|
-
outline: 0;
|
52
49
|
overflow: hidden;
|
53
50
|
*zoom: 1; }
|
54
51
|
ul.right-horizontal li {
|
@@ -71,7 +68,6 @@ ul.no-padding {
|
|
71
68
|
margin: 0;
|
72
69
|
padding: 0;
|
73
70
|
border: 0;
|
74
|
-
outline: 0;
|
75
71
|
overflow: hidden;
|
76
72
|
*zoom: 1; }
|
77
73
|
ul.no-padding li {
|
@@ -86,7 +82,6 @@ ul.inline-block {
|
|
86
82
|
margin: 0;
|
87
83
|
padding: 0;
|
88
84
|
border: 0;
|
89
|
-
outline: 0;
|
90
85
|
overflow: hidden;
|
91
86
|
*zoom: 1; }
|
92
87
|
ul.inline-block li {
|
@@ -106,7 +101,6 @@ ul.wide-inline-block {
|
|
106
101
|
margin: 0;
|
107
102
|
padding: 0;
|
108
103
|
border: 0;
|
109
|
-
outline: 0;
|
110
104
|
overflow: hidden;
|
111
105
|
*zoom: 1; }
|
112
106
|
ul.wide-inline-block li {
|
@@ -1,33 +1,32 @@
|
|
1
1
|
html, body, div, span, applet, object, iframe,
|
2
2
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
3
3
|
a, abbr, acronym, address, big, cite, code,
|
4
|
-
del, dfn, em,
|
4
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
5
5
|
small, strike, strong, sub, sup, tt, var,
|
6
|
+
b, u, i, center,
|
6
7
|
dl, dt, dd, ol, ul, li,
|
7
8
|
fieldset, form, label, legend,
|
8
|
-
table, caption, tbody, tfoot, thead, tr, th, td
|
9
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
10
|
+
article, aside, canvas, details, embed,
|
11
|
+
figure, figcaption, footer, header, hgroup,
|
12
|
+
menu, nav, output, ruby, section, summary,
|
13
|
+
time, mark, audio, video {
|
9
14
|
margin: 0;
|
10
15
|
padding: 0;
|
11
16
|
border: 0;
|
12
|
-
outline: 0;
|
13
|
-
font-weight: inherit;
|
14
|
-
font-style: inherit;
|
15
17
|
font-size: 100%;
|
16
|
-
font
|
18
|
+
font: inherit;
|
17
19
|
vertical-align: baseline; }
|
18
20
|
|
19
21
|
body {
|
20
|
-
line-height: 1;
|
21
|
-
color: black;
|
22
|
-
background: white; }
|
22
|
+
line-height: 1; }
|
23
23
|
|
24
24
|
ol, ul {
|
25
25
|
list-style: none; }
|
26
26
|
|
27
27
|
table {
|
28
|
-
border-collapse:
|
29
|
-
border-spacing: 0;
|
30
|
-
vertical-align: middle; }
|
28
|
+
border-collapse: collapse;
|
29
|
+
border-spacing: 0; }
|
31
30
|
|
32
31
|
caption, th, td {
|
33
32
|
text-align: left;
|
@@ -35,13 +34,18 @@ caption, th, td {
|
|
35
34
|
vertical-align: middle; }
|
36
35
|
|
37
36
|
q, blockquote {
|
38
|
-
quotes:
|
37
|
+
quotes: none; }
|
39
38
|
q:before, q:after, blockquote:before, blockquote:after {
|
40
|
-
content: "";
|
39
|
+
content: "";
|
40
|
+
content: none; }
|
41
41
|
|
42
42
|
a img {
|
43
43
|
border: none; }
|
44
44
|
|
45
|
+
article, aside, details, figcaption, figure,
|
46
|
+
footer, header, hgroup, menu, nav, section {
|
47
|
+
display: block; }
|
48
|
+
|
45
49
|
.unregistered-only, .registered-only {
|
46
50
|
display: none; }
|
47
51
|
|
@@ -11,3 +11,16 @@
|
|
11
11
|
clear: both;
|
12
12
|
overflow: hidden;
|
13
13
|
visibility: hidden; }
|
14
|
+
|
15
|
+
p.light {
|
16
|
+
background-color: #b0201e;
|
17
|
+
color: black; }
|
18
|
+
p.dark {
|
19
|
+
background-color: #5f1210;
|
20
|
+
color: white; }
|
21
|
+
p.light-with-args {
|
22
|
+
background-color: #b0201e;
|
23
|
+
color: green; }
|
24
|
+
p.dark-with-args {
|
25
|
+
background-color: #5f1210;
|
26
|
+
color: blue; }
|
@@ -0,0 +1,42 @@
|
|
1
|
+
body {
|
2
|
+
font-size: 87.5%;
|
3
|
+
line-height: 1.143em; }
|
4
|
+
|
5
|
+
html > body {
|
6
|
+
font-size: 14px; }
|
7
|
+
|
8
|
+
.small {
|
9
|
+
font-size: 0.857em;
|
10
|
+
line-height: 1.333em; }
|
11
|
+
|
12
|
+
.padded {
|
13
|
+
margin-top: 1.143em;
|
14
|
+
padding-top: 1.143em;
|
15
|
+
padding-bottom: 1.143em;
|
16
|
+
margin-bottom: 1.143em; }
|
17
|
+
|
18
|
+
.small-padded {
|
19
|
+
font-size: 0.857em;
|
20
|
+
line-height: 1.333em;
|
21
|
+
margin-top: 1.333em;
|
22
|
+
padding-top: 1.333em;
|
23
|
+
padding-bottom: 1.333em;
|
24
|
+
margin-bottom: 1.333em; }
|
25
|
+
|
26
|
+
.borders {
|
27
|
+
border-top-style: solid;
|
28
|
+
border-top-width: 0.071em;
|
29
|
+
padding-top: 1.071em;
|
30
|
+
border-bottom-style: solid;
|
31
|
+
border-bottom-width: 0.071em;
|
32
|
+
padding-bottom: 1.071em; }
|
33
|
+
|
34
|
+
.large-borders {
|
35
|
+
font-size: 1.714em;
|
36
|
+
line-height: 2em;
|
37
|
+
border-top-style: solid;
|
38
|
+
border-top-width: 0.25em;
|
39
|
+
padding-top: 0.417em;
|
40
|
+
border-bottom-style: solid;
|
41
|
+
border-bottom-width: 0.25em;
|
42
|
+
padding-bottom: 0.417em; }
|
@@ -1,4 +1,4 @@
|
|
1
|
-
@import "compass/
|
1
|
+
@import "compass/typography/lists";
|
2
2
|
|
3
3
|
ul.horizontal { @include horizontal-list; }
|
4
4
|
ul.wide-horizontal { @include horizontal-list(10px); }
|
@@ -7,6 +7,6 @@ ul.no-padding { @include horizontal-list(false); }
|
|
7
7
|
ul.inline-block { @include inline-block-list; }
|
8
8
|
ul.wide-inline-block { @include inline-block-list(10px); }
|
9
9
|
ul.inline { @include inline-list; }
|
10
|
-
ul.comma { @include
|
10
|
+
ul.comma { @include delimited-list; }
|
11
11
|
ul.no-bullets { @include no-bullets; }
|
12
12
|
ul.pretty { @include pretty-bullets("4x6.png"); }
|
@@ -7,3 +7,8 @@
|
|
7
7
|
.pie-clearfix {
|
8
8
|
@include pie-clearfix;
|
9
9
|
}
|
10
|
+
|
11
|
+
p.light { @include contrasted(#B0201E); }
|
12
|
+
p.dark { @include contrasted(#5F1210); }
|
13
|
+
p.light-with-args { @include contrasted(#B0201E, green, blue); }
|
14
|
+
p.dark-with-args { @include contrasted(#5F1210, green, blue); }
|
@@ -0,0 +1,14 @@
|
|
1
|
+
@import "compass/typography/vertical_rhythm";
|
2
|
+
|
3
|
+
$base-font-size: 14px;
|
4
|
+
$base-line-height: 16px;
|
5
|
+
|
6
|
+
@include establish-baseline;
|
7
|
+
|
8
|
+
.small { @include adjust-font-size-to(12px,1); }
|
9
|
+
|
10
|
+
.padded { @include rhythm(1,1,1,1); }
|
11
|
+
.small-padded { @include adjust-font-size-to(12px,1); @include rhythm(1,1,1,1,12px); }
|
12
|
+
|
13
|
+
.borders { @include h-borders(1px,1); }
|
14
|
+
.large-borders { @include adjust-font-size-to(24px,3); @include h-borders(6px,1,24px); }
|
metadata
CHANGED
@@ -1,14 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 11
|
9
|
-
- beta
|
10
|
-
- 2
|
11
|
-
version: 0.11.beta.2
|
4
|
+
prerelease: 5
|
5
|
+
version: 0.11.beta.3
|
12
6
|
platform: ruby
|
13
7
|
authors:
|
14
8
|
- Chris Eppstein
|
@@ -19,7 +13,7 @@ autorequire:
|
|
19
13
|
bindir: bin
|
20
14
|
cert_chain: []
|
21
15
|
|
22
|
-
date: 2011-
|
16
|
+
date: 2011-03-15 00:00:00 -07:00
|
23
17
|
default_executable: compass
|
24
18
|
dependencies:
|
25
19
|
- !ruby/object:Gem::Dependency
|
@@ -30,14 +24,7 @@ dependencies:
|
|
30
24
|
requirements:
|
31
25
|
- - ">="
|
32
26
|
- !ruby/object:Gem::Version
|
33
|
-
|
34
|
-
segments:
|
35
|
-
- 3
|
36
|
-
- 1
|
37
|
-
- 0
|
38
|
-
- alpha
|
39
|
-
- 218
|
40
|
-
version: 3.1.0.alpha.218
|
27
|
+
version: 3.1.0.alpha.249
|
41
28
|
type: :runtime
|
42
29
|
version_requirements: *id001
|
43
30
|
- !ruby/object:Gem::Dependency
|
@@ -48,11 +35,6 @@ dependencies:
|
|
48
35
|
requirements:
|
49
36
|
- - ~>
|
50
37
|
- !ruby/object:Gem::Version
|
51
|
-
hash: 47
|
52
|
-
segments:
|
53
|
-
- 0
|
54
|
-
- 12
|
55
|
-
- 0
|
56
38
|
version: 0.12.0
|
57
39
|
type: :runtime
|
58
40
|
version_requirements: *id002
|
@@ -512,9 +494,12 @@ files:
|
|
512
494
|
- frameworks/compass/stylesheets/_lemonade.scss
|
513
495
|
- frameworks/compass/stylesheets/compass/_css3.scss
|
514
496
|
- frameworks/compass/stylesheets/compass/_layout.scss
|
497
|
+
- frameworks/compass/stylesheets/compass/_reset-legacy.scss
|
515
498
|
- frameworks/compass/stylesheets/compass/_reset.scss
|
516
499
|
- frameworks/compass/stylesheets/compass/_support.scss
|
500
|
+
- frameworks/compass/stylesheets/compass/_typography.scss
|
517
501
|
- frameworks/compass/stylesheets/compass/_utilities.scss
|
502
|
+
- frameworks/compass/stylesheets/compass/css3/_appearance.scss
|
518
503
|
- frameworks/compass/stylesheets/compass/css3/_background-clip.scss
|
519
504
|
- frameworks/compass/stylesheets/compass/css3/_background-origin.scss
|
520
505
|
- frameworks/compass/stylesheets/compass/css3/_background-size.scss
|
@@ -536,7 +521,23 @@ files:
|
|
536
521
|
- frameworks/compass/stylesheets/compass/css3/_transition.scss
|
537
522
|
- frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss
|
538
523
|
- frameworks/compass/stylesheets/compass/layout/_stretching.scss
|
524
|
+
- frameworks/compass/stylesheets/compass/reset/_utilities-legacy.scss
|
539
525
|
- frameworks/compass/stylesheets/compass/reset/_utilities.scss
|
526
|
+
- frameworks/compass/stylesheets/compass/typography/_links.scss
|
527
|
+
- frameworks/compass/stylesheets/compass/typography/_lists.scss
|
528
|
+
- frameworks/compass/stylesheets/compass/typography/_text.scss
|
529
|
+
- frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss
|
530
|
+
- frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss
|
531
|
+
- frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss
|
532
|
+
- frameworks/compass/stylesheets/compass/typography/links/_unstyled-link.scss
|
533
|
+
- frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss
|
534
|
+
- frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss
|
535
|
+
- frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss
|
536
|
+
- frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss
|
537
|
+
- frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss
|
538
|
+
- frameworks/compass/stylesheets/compass/typography/text/_nowrap.scss
|
539
|
+
- frameworks/compass/stylesheets/compass/typography/text/_replacement.scss
|
540
|
+
- frameworks/compass/stylesheets/compass/utilities/_color.scss
|
540
541
|
- frameworks/compass/stylesheets/compass/utilities/_general.scss
|
541
542
|
- frameworks/compass/stylesheets/compass/utilities/_links.scss
|
542
543
|
- frameworks/compass/stylesheets/compass/utilities/_lists.scss
|
@@ -544,6 +545,7 @@ files:
|
|
544
545
|
- frameworks/compass/stylesheets/compass/utilities/_sprites.scss
|
545
546
|
- frameworks/compass/stylesheets/compass/utilities/_tables.scss
|
546
547
|
- frameworks/compass/stylesheets/compass/utilities/_text.scss
|
548
|
+
- frameworks/compass/stylesheets/compass/utilities/color/_contrast.scss
|
547
549
|
- frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss
|
548
550
|
- frameworks/compass/stylesheets/compass/utilities/general/_float.scss
|
549
551
|
- frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss
|
@@ -627,6 +629,7 @@ files:
|
|
627
629
|
- lib/compass/configuration/comments.rb
|
628
630
|
- lib/compass/configuration/data.rb
|
629
631
|
- lib/compass/configuration/defaults.rb
|
632
|
+
- lib/compass/configuration/file_data.rb
|
630
633
|
- lib/compass/configuration/helpers.rb
|
631
634
|
- lib/compass/configuration/inheritance.rb
|
632
635
|
- lib/compass/configuration/paths.rb
|
@@ -767,6 +770,7 @@ files:
|
|
767
770
|
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
768
771
|
- test/fixtures/stylesheets/compass/css/transform.css
|
769
772
|
- test/fixtures/stylesheets/compass/css/utilities.css
|
773
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
770
774
|
- test/fixtures/stylesheets/compass/images/100x150.gif
|
771
775
|
- test/fixtures/stylesheets/compass/images/100x150.jpeg
|
772
776
|
- test/fixtures/stylesheets/compass/images/100x150.jpg
|
@@ -791,6 +795,7 @@ files:
|
|
791
795
|
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
792
796
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
793
797
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
798
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
794
799
|
- test/fixtures/stylesheets/image_urls/config.rb
|
795
800
|
- test/fixtures/stylesheets/image_urls/css/screen.css
|
796
801
|
- test/fixtures/stylesheets/image_urls/images/grid.png
|
@@ -831,25 +836,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
831
836
|
requirements:
|
832
837
|
- - ">="
|
833
838
|
- !ruby/object:Gem::Version
|
834
|
-
hash: 3
|
835
|
-
segments:
|
836
|
-
- 0
|
837
839
|
version: "0"
|
838
840
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
839
841
|
none: false
|
840
842
|
requirements:
|
841
843
|
- - ">"
|
842
844
|
- !ruby/object:Gem::Version
|
843
|
-
hash: 25
|
844
|
-
segments:
|
845
|
-
- 1
|
846
|
-
- 3
|
847
|
-
- 1
|
848
845
|
version: 1.3.1
|
849
846
|
requirements: []
|
850
847
|
|
851
848
|
rubyforge_project:
|
852
|
-
rubygems_version: 1.
|
849
|
+
rubygems_version: 1.6.2
|
853
850
|
signing_key:
|
854
851
|
specification_version: 3
|
855
852
|
summary: A Real Stylesheet Framework
|
@@ -930,6 +927,7 @@ test_files:
|
|
930
927
|
- test/fixtures/stylesheets/compass/css/text_shadow.css
|
931
928
|
- test/fixtures/stylesheets/compass/css/transform.css
|
932
929
|
- test/fixtures/stylesheets/compass/css/utilities.css
|
930
|
+
- test/fixtures/stylesheets/compass/css/vertical_rhythm.css
|
933
931
|
- test/fixtures/stylesheets/compass/images/100x150.gif
|
934
932
|
- test/fixtures/stylesheets/compass/images/100x150.jpeg
|
935
933
|
- test/fixtures/stylesheets/compass/images/100x150.jpg
|
@@ -954,6 +952,7 @@ test_files:
|
|
954
952
|
- test/fixtures/stylesheets/compass/sass/text_shadow.scss
|
955
953
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
956
954
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
955
|
+
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
957
956
|
- test/fixtures/stylesheets/image_urls/config.rb
|
958
957
|
- test/fixtures/stylesheets/image_urls/css/screen.css
|
959
958
|
- test/fixtures/stylesheets/image_urls/images/grid.png
|