merbjedi-compass 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Manifest +178 -0
- data/README.markdown +17 -0
- data/Rakefile +125 -0
- data/VERSION +1 -0
- data/bin/compass +8 -0
- data/compass.gemspec +37 -0
- data/examples/blueprint_default/index.html +73 -0
- data/examples/blueprint_default/parts/elements.html +246 -0
- data/examples/blueprint_default/parts/forms.html +100 -0
- data/examples/blueprint_default/parts/grid.html +206 -0
- data/examples/blueprint_default/parts/test-small.jpg +0 -0
- data/examples/blueprint_default/parts/test.jpg +0 -0
- data/examples/blueprint_default/parts/valid.png +0 -0
- data/examples/blueprint_default/stylesheets/ie.sass +3 -0
- data/examples/blueprint_default/stylesheets/images/grid.png +0 -0
- data/examples/blueprint_default/stylesheets/print.sass +3 -0
- data/examples/blueprint_default/stylesheets/screen.sass +8 -0
- data/examples/blueprint_plugins/index.html +60 -0
- data/examples/blueprint_plugins/parts/fancy_type.html +84 -0
- data/examples/blueprint_plugins/parts/test-small.jpg +0 -0
- data/examples/blueprint_plugins/parts/test.jpg +0 -0
- data/examples/blueprint_plugins/parts/valid.png +0 -0
- data/examples/blueprint_plugins/stylesheets/ie.sass +3 -0
- data/examples/blueprint_plugins/stylesheets/images/grid.png +0 -0
- data/examples/blueprint_plugins/stylesheets/print.sass +3 -0
- data/examples/blueprint_plugins/stylesheets/screen.sass +11 -0
- data/examples/blueprint_scoped/stylesheets/ie.sass +3 -0
- data/examples/blueprint_scoped/stylesheets/print.sass +3 -0
- data/examples/blueprint_scoped/stylesheets/screen.sass +4 -0
- data/examples/blueprint_scoped_form/stylesheets/ie.sass +3 -0
- data/examples/blueprint_scoped_form/stylesheets/print.sass +3 -0
- data/examples/blueprint_scoped_form/stylesheets/screen.sass +10 -0
- data/examples/blueprint_semantic/index.html +68 -0
- data/examples/blueprint_semantic/parts/fancy_type.html +84 -0
- data/examples/blueprint_semantic/parts/liquid.html +84 -0
- data/examples/blueprint_semantic/parts/test-small.jpg +0 -0
- data/examples/blueprint_semantic/parts/test.jpg +0 -0
- data/examples/blueprint_semantic/parts/valid.png +0 -0
- data/examples/blueprint_semantic/stylesheets/ie.sass +3 -0
- data/examples/blueprint_semantic/stylesheets/images/grid.png +0 -0
- data/examples/blueprint_semantic/stylesheets/liquid.sass +70 -0
- data/examples/blueprint_semantic/stylesheets/print.sass +3 -0
- data/examples/blueprint_semantic/stylesheets/screen.sass +69 -0
- data/examples/compass/compass.html +19 -0
- data/examples/compass/sticky_footer.html.haml +14 -0
- data/examples/compass/stylesheets/compass.sass +47 -0
- data/examples/compass/stylesheets/images/blue_arrow.gif +0 -0
- data/examples/compass/stylesheets/sticky_footer.sass +11 -0
- data/examples/compass/stylesheets/utilities.sass +69 -0
- data/examples/compass/utilities.html.haml +141 -0
- data/examples/yui/divisions.html.haml +179 -0
- data/examples/yui/index.html.haml +19 -0
- data/examples/yui/stylesheets/screen.sass +13 -0
- data/examples/yui/sub_divisions.html.haml +169 -0
- data/examples/yui/templates.html.haml +54 -0
- data/examples/yui/test.jpg +0 -0
- data/examples/yui/typography.html.haml +132 -0
- data/frameworks/blueprint.rb +2 -0
- data/frameworks/blueprint/lib/blueprint/constants.rb +17 -0
- data/frameworks/blueprint/lib/blueprint/grid_builder.rb +54 -0
- data/frameworks/blueprint/stylesheets/_blueprint.sass +3 -0
- data/frameworks/blueprint/stylesheets/blueprint/_ie.sass +49 -0
- data/frameworks/blueprint/stylesheets/blueprint/_print.sass +82 -0
- data/frameworks/blueprint/stylesheets/blueprint/_screen.sass +15 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass +30 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass +9 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass +81 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass +43 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass +141 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass +58 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass +137 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass +46 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass +154 -0
- data/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass +37 -0
- data/frameworks/blueprint/templates/project/grid.png +0 -0
- data/frameworks/blueprint/templates/project/ie.sass +3 -0
- data/frameworks/blueprint/templates/project/manifest.rb +5 -0
- data/frameworks/blueprint/templates/project/print.sass +3 -0
- data/frameworks/blueprint/templates/project/screen.sass +8 -0
- data/frameworks/compass.rb +2 -0
- data/frameworks/compass/stylesheets/_compass.sass +1 -0
- data/frameworks/compass/stylesheets/compass/_layout.sass +1 -0
- data/frameworks/compass/stylesheets/compass/_reset.sass +3 -0
- data/frameworks/compass/stylesheets/compass/_utilities.sass +5 -0
- data/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass +17 -0
- data/frameworks/compass/stylesheets/compass/utilities/_general.sass +4 -0
- data/frameworks/compass/stylesheets/compass/utilities/_links.sass +3 -0
- data/frameworks/compass/stylesheets/compass/utilities/_lists.sass +3 -0
- data/frameworks/compass/stylesheets/compass/utilities/_print.sass +24 -0
- data/frameworks/compass/stylesheets/compass/utilities/_tables.sass +3 -0
- data/frameworks/compass/stylesheets/compass/utilities/_text.sass +2 -0
- data/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass +11 -0
- data/frameworks/compass/stylesheets/compass/utilities/general/_inline_block.sass +6 -0
- data/frameworks/compass/stylesheets/compass/utilities/general/_reset.sass +56 -0
- data/frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass +0 -0
- data/frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass +19 -0
- data/frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass +5 -0
- data/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass +24 -0
- data/frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass +5 -0
- data/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass +21 -0
- data/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass +20 -0
- data/frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass +29 -0
- data/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass +20 -0
- data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.sass +27 -0
- data/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.sass +9 -0
- data/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass +3 -0
- data/frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass +10 -0
- data/frameworks/compass/templates/project/ie.sass +6 -0
- data/frameworks/compass/templates/project/manifest.rb +3 -0
- data/frameworks/compass/templates/project/print.sass +6 -0
- data/frameworks/compass/templates/project/screen.sass +7 -0
- data/frameworks/yui.rb +2 -0
- data/frameworks/yui/COPYRIGHT +15 -0
- data/frameworks/yui/stylesheets/_yui.sass +7 -0
- data/frameworks/yui/stylesheets/yui/modules/_base.sass +60 -0
- data/frameworks/yui/stylesheets/yui/modules/_fonts.sass +38 -0
- data/frameworks/yui/stylesheets/yui/modules/_grids.sass +341 -0
- data/frameworks/yui/templates/project/manifest.rb +1 -0
- data/frameworks/yui/templates/project/screen.sass +4 -0
- data/lib/compass.rb +39 -0
- data/lib/compass/actions.rb +92 -0
- data/lib/compass/commands/base.rb +29 -0
- data/lib/compass/commands/create_project.rb +41 -0
- data/lib/compass/commands/list_frameworks.rb +16 -0
- data/lib/compass/commands/print_version.rb +23 -0
- data/lib/compass/commands/project_base.rb +82 -0
- data/lib/compass/commands/update_project.rb +25 -0
- data/lib/compass/commands/watch_project.rb +53 -0
- data/lib/compass/commands/write_configuration.rb +37 -0
- data/lib/compass/compiler.rb +40 -0
- data/lib/compass/configuration.rb +167 -0
- data/lib/compass/core_ext.rb +12 -0
- data/lib/compass/errors.rb +7 -0
- data/lib/compass/exec.rb +184 -0
- data/lib/compass/frameworks.rb +29 -0
- data/lib/compass/installers.rb +5 -0
- data/lib/compass/installers/base.rb +135 -0
- data/lib/compass/installers/manifest.rb +57 -0
- data/lib/compass/installers/rails.rb +118 -0
- data/lib/compass/installers/stand_alone.rb +76 -0
- data/lib/compass/logger.rb +34 -0
- data/lib/compass/merb.rb +45 -0
- data/lib/compass/test_case.rb +37 -0
- data/lib/compass/validate.rb +13 -0
- data/lib/compass/validate/COPYRIGHT.html +93 -0
- data/lib/compass/validate/JIGSAW_COPYRIGHT +64 -0
- data/lib/compass/validate/README.html +83 -0
- data/lib/compass/validate/XERCES_COPYING.txt +56 -0
- data/lib/compass/validate/css-validator-javadoc.jar +0 -0
- data/lib/compass/validate/css-validator.jar +0 -0
- data/lib/compass/validate/jigsaw.jar +0 -0
- data/lib/compass/validate/xerces.jar +0 -0
- data/lib/compass/validator.rb +59 -0
- data/lib/compass/version.rb +66 -0
- data/lib/sass_extensions.rb +13 -0
- data/test/command_line_test.rb +147 -0
- data/test/compass_test.rb +148 -0
- data/test/configuration_test.rb +29 -0
- data/test/fixtures/stylesheets/blueprint/css/typography.css +159 -0
- data/test/fixtures/stylesheets/blueprint/sass/ie.sass +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/print.sass +3 -0
- data/test/fixtures/stylesheets/blueprint/sass/screen.sass +17 -0
- data/test/fixtures/stylesheets/blueprint/sass/typography.sass +3 -0
- data/test/fixtures/stylesheets/compass/css/layout.css +14 -0
- data/test/fixtures/stylesheets/compass/css/print.css +19 -0
- data/test/fixtures/stylesheets/compass/css/reset.css +66 -0
- data/test/fixtures/stylesheets/compass/css/utilities.css +23 -0
- data/test/fixtures/stylesheets/compass/sass/layout.sass +3 -0
- data/test/fixtures/stylesheets/compass/sass/print.sass +5 -0
- data/test/fixtures/stylesheets/compass/sass/reset.sass +1 -0
- data/test/fixtures/stylesheets/compass/sass/utilities.sass +5 -0
- data/test/fixtures/stylesheets/yui/css/mixins.css +16 -0
- data/test/fixtures/stylesheets/yui/sass/base.sass +3 -0
- data/test/fixtures/stylesheets/yui/sass/fonts.sass +3 -0
- data/test/fixtures/stylesheets/yui/sass/grids.sass +3 -0
- data/test/fixtures/stylesheets/yui/sass/mixins.sass +16 -0
- data/test/sass_extensions_test.rb +26 -0
- data/test/test_helper.rb +47 -0
- metadata +295 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
@import blueprint/screen
|
2
|
+
@import compass/reset
|
3
|
+
|
4
|
+
+blueprint
|
5
|
+
#main.container
|
6
|
+
#top
|
7
|
+
+column(24, true)
|
8
|
+
#middle
|
9
|
+
+column(24, true)
|
10
|
+
#left
|
11
|
+
+column(6)
|
12
|
+
#content
|
13
|
+
+column(12)
|
14
|
+
#right
|
15
|
+
+column(6, true)
|
16
|
+
#bottom
|
17
|
+
+column(24, true)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
.noprint,
|
3
|
+
.no-print {
|
4
|
+
display: none; }
|
5
|
+
|
6
|
+
address.print-only, blockquote.print-only, center.print-only, dir.print-only, div.print-only, dd.print-only, dl.print-only, dt.print-only,
|
7
|
+
fieldset.print-only, form.print-only, frameset.print-only, h1.print-only, h2.print-only, h3.print-only, h4.print-only, h5.print-only, h6.print-only, hr.print-only,
|
8
|
+
isindex.print-only, li.print-only, menu.print-only, noframes.print-only, noscript.print-only, ol.print-only, p.print-only, pre.print-only,
|
9
|
+
table.print-only, tbody.print-only, td.print-only, tfoot.print-only, th.print-only, thead.print-only, tr.print-only, ul.print-only {
|
10
|
+
display: block; }
|
11
|
+
|
12
|
+
a.print-only, abbr.print-only, acronym.print-only, b.print-only, basefont.print-only, bdo.print-only, big.print-only, br.print-only, cite.print-only,
|
13
|
+
code.print-only, dfn.print-only, em.print-only, font.print-only, i.print-only, img.print-only, input.print-only, kbd.print-only, label.print-only, q.print-only, s.print-only,
|
14
|
+
samp.print-only, select.print-only, small.print-only, span.print-only, strike.print-only, strong.print-only, sub.print-only, sup.print-only,
|
15
|
+
textarea.print-only, tt.print-only, u.print-only, var.print-only {
|
16
|
+
display: inline; }
|
17
|
+
|
18
|
+
.print-only {
|
19
|
+
display: none; }
|
@@ -0,0 +1,66 @@
|
|
1
|
+
|
2
|
+
html, body {
|
3
|
+
margin: 0;
|
4
|
+
padding: 0;
|
5
|
+
border: 0;
|
6
|
+
font-weight: inherit;
|
7
|
+
font-style: inherit;
|
8
|
+
font-size: 100%;
|
9
|
+
font-family: inherit;
|
10
|
+
vertical-align: baseline; }
|
11
|
+
|
12
|
+
div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
|
13
|
+
pre, a, abbr, acronym, address, code, del, dfn, em, img,
|
14
|
+
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr {
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
border: 0;
|
18
|
+
font-weight: inherit;
|
19
|
+
font-style: inherit;
|
20
|
+
font-size: 100%;
|
21
|
+
font-family: inherit;
|
22
|
+
vertical-align: baseline; }
|
23
|
+
|
24
|
+
blockquote, q {
|
25
|
+
margin: 0;
|
26
|
+
padding: 0;
|
27
|
+
border: 0;
|
28
|
+
font-weight: inherit;
|
29
|
+
font-style: inherit;
|
30
|
+
font-size: 100%;
|
31
|
+
font-family: inherit;
|
32
|
+
vertical-align: baseline;
|
33
|
+
quotes: "" ""; }
|
34
|
+
blockquote:before,
|
35
|
+
blockquote:after, q:before,
|
36
|
+
q:after {
|
37
|
+
content: ""; }
|
38
|
+
|
39
|
+
th, td, caption {
|
40
|
+
margin: 0;
|
41
|
+
padding: 0;
|
42
|
+
border: 0;
|
43
|
+
font-weight: inherit;
|
44
|
+
font-style: inherit;
|
45
|
+
font-size: 100%;
|
46
|
+
font-family: inherit;
|
47
|
+
vertical-align: baseline;
|
48
|
+
text-align: left;
|
49
|
+
font-weight: normal;
|
50
|
+
vertical-align: middle; }
|
51
|
+
|
52
|
+
table {
|
53
|
+
margin: 0;
|
54
|
+
padding: 0;
|
55
|
+
border: 0;
|
56
|
+
font-weight: inherit;
|
57
|
+
font-style: inherit;
|
58
|
+
font-size: 100%;
|
59
|
+
font-family: inherit;
|
60
|
+
vertical-align: baseline;
|
61
|
+
border-collapse: separate;
|
62
|
+
border-spacing: 0;
|
63
|
+
vertical-align: middle; }
|
64
|
+
|
65
|
+
a img {
|
66
|
+
border: none; }
|
@@ -0,0 +1 @@
|
|
1
|
+
@import compass/reset.sass
|
@@ -0,0 +1,16 @@
|
|
1
|
+
@import yui/modules/fonts.sass
|
2
|
+
@import yui/modules/grids.sass
|
3
|
+
|
4
|
+
.font-size-26px
|
5
|
+
+font-size(26px)
|
6
|
+
|
7
|
+
.font-size-baseline
|
8
|
+
+font-size(30px, 10px)
|
9
|
+
|
10
|
+
.em-sizing
|
11
|
+
+em-size("width", 13px)
|
12
|
+
+em-size("margin", 99px, 11px)
|
13
|
+
|
14
|
+
.em-sizing-hack
|
15
|
+
+em-size-hacked("width", 13px)
|
16
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require File.dirname(__FILE__)+'/test_helper'
|
2
|
+
require 'compass'
|
3
|
+
|
4
|
+
class SassExtensionsTest < Test::Unit::TestCase
|
5
|
+
def test_simple
|
6
|
+
assert_equal "a b", nest("a", "b")
|
7
|
+
end
|
8
|
+
def test_left_side_expansion
|
9
|
+
assert_equal "a c, b c", nest("a, b", "c")
|
10
|
+
end
|
11
|
+
def test_right_side_expansion
|
12
|
+
assert_equal "a b, a c", nest("a", "b, c")
|
13
|
+
end
|
14
|
+
def test_both_sides_expansion
|
15
|
+
assert_equal "a c, a d, b c, b d", nest("a, b", "c, d")
|
16
|
+
end
|
17
|
+
def test_three_selectors_expansion
|
18
|
+
assert_equal "a b, a c, a d", nest("a", "b, c, d")
|
19
|
+
end
|
20
|
+
def test_third_argument_expansion
|
21
|
+
assert_equal "a b e, a b f, a c e, a c f, a d e, a d f", nest("a", "b, c, d", "e, f")
|
22
|
+
end
|
23
|
+
def nest(*arguments)
|
24
|
+
Sass::Script::Functions.nest(*arguments.map{|a| Sass::Script::String.new(a)}).to_s
|
25
|
+
end
|
26
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
# allows testing with edge Rails by creating a test/rails symlink
|
2
|
+
RAILS_ROOT = linked_rails = File.dirname(__FILE__) + '/rails'
|
3
|
+
RAILS_ENV = 'test'
|
4
|
+
|
5
|
+
need_gems = false
|
6
|
+
if File.exists?(linked_rails) && !$:.include?(linked_rails + '/activesupport/lib')
|
7
|
+
puts "[ using linked Rails ]"
|
8
|
+
$:.unshift linked_rails + '/activesupport/lib'
|
9
|
+
$:.unshift linked_rails + '/actionpack/lib'
|
10
|
+
else
|
11
|
+
need_gems = true
|
12
|
+
end
|
13
|
+
|
14
|
+
# allows testing with edge Haml by creating a test/haml symlink
|
15
|
+
linked_haml = File.dirname(__FILE__) + '/haml'
|
16
|
+
|
17
|
+
if File.exists?(linked_haml) && !$:.include?(linked_haml + '/lib')
|
18
|
+
puts "[ using linked Haml ]"
|
19
|
+
$:.unshift linked_haml + '/lib'
|
20
|
+
else
|
21
|
+
need_gems = true
|
22
|
+
end
|
23
|
+
|
24
|
+
require 'rubygems' if need_gems
|
25
|
+
|
26
|
+
require 'action_controller'
|
27
|
+
require 'action_view'
|
28
|
+
require 'haml'
|
29
|
+
require 'sass'
|
30
|
+
require 'sass/plugin'
|
31
|
+
|
32
|
+
|
33
|
+
require 'test/unit'
|
34
|
+
|
35
|
+
module Compass
|
36
|
+
module TestCaseHelper
|
37
|
+
def absolutize(path)
|
38
|
+
if path.blank?
|
39
|
+
File.dirname(__FILE__)
|
40
|
+
elsif path[0] == ?/
|
41
|
+
"#{File.dirname(__FILE__)}#{path}"
|
42
|
+
else
|
43
|
+
"#{File.dirname(__FILE__)}/#{path}"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
metadata
ADDED
@@ -0,0 +1,295 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: merbjedi-compass
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.5.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Chris Eppstein
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-02-21 00:00:00 -08:00
|
13
|
+
default_executable: compass
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: haml
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: echoe
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: "0"
|
34
|
+
version:
|
35
|
+
description: Sass-Based CSS Meta-Framework. Semantic, Maintainable CSS.
|
36
|
+
email: chris@eppsteins.net
|
37
|
+
executables:
|
38
|
+
- compass
|
39
|
+
extensions: []
|
40
|
+
|
41
|
+
extra_rdoc_files:
|
42
|
+
- bin/compass
|
43
|
+
- lib/compass/actions.rb
|
44
|
+
- lib/compass/commands/base.rb
|
45
|
+
- lib/compass/commands/create_project.rb
|
46
|
+
- lib/compass/commands/list_frameworks.rb
|
47
|
+
- lib/compass/commands/print_version.rb
|
48
|
+
- lib/compass/commands/project_base.rb
|
49
|
+
- lib/compass/commands/update_project.rb
|
50
|
+
- lib/compass/commands/watch_project.rb
|
51
|
+
- lib/compass/commands/write_configuration.rb
|
52
|
+
- lib/compass/compiler.rb
|
53
|
+
- lib/compass/configuration.rb
|
54
|
+
- lib/compass/core_ext.rb
|
55
|
+
- lib/compass/errors.rb
|
56
|
+
- lib/compass/exec.rb
|
57
|
+
- lib/compass/frameworks.rb
|
58
|
+
- lib/compass/installers/base.rb
|
59
|
+
- lib/compass/installers/manifest.rb
|
60
|
+
- lib/compass/installers/rails.rb
|
61
|
+
- lib/compass/installers/stand_alone.rb
|
62
|
+
- lib/compass/installers.rb
|
63
|
+
- lib/compass/logger.rb
|
64
|
+
- lib/compass/merb.rb
|
65
|
+
- lib/compass/test_case.rb
|
66
|
+
- lib/compass/validate/COPYRIGHT.html
|
67
|
+
- lib/compass/validate/css-validator-javadoc.jar
|
68
|
+
- lib/compass/validate/css-validator.jar
|
69
|
+
- lib/compass/validate/jigsaw.jar
|
70
|
+
- lib/compass/validate/JIGSAW_COPYRIGHT
|
71
|
+
- lib/compass/validate/README.html
|
72
|
+
- lib/compass/validate/xerces.jar
|
73
|
+
- lib/compass/validate/XERCES_COPYING.txt
|
74
|
+
- lib/compass/validate.rb
|
75
|
+
- lib/compass/validator.rb
|
76
|
+
- lib/compass/version.rb
|
77
|
+
- lib/compass.rb
|
78
|
+
- lib/sass_extensions.rb
|
79
|
+
- README.markdown
|
80
|
+
files:
|
81
|
+
- bin/compass
|
82
|
+
- compass.gemspec
|
83
|
+
- examples/blueprint_default/index.html
|
84
|
+
- examples/blueprint_default/parts/elements.html
|
85
|
+
- examples/blueprint_default/parts/forms.html
|
86
|
+
- examples/blueprint_default/parts/grid.html
|
87
|
+
- examples/blueprint_default/parts/test-small.jpg
|
88
|
+
- examples/blueprint_default/parts/test.jpg
|
89
|
+
- examples/blueprint_default/parts/valid.png
|
90
|
+
- examples/blueprint_default/stylesheets/ie.sass
|
91
|
+
- examples/blueprint_default/stylesheets/images/grid.png
|
92
|
+
- examples/blueprint_default/stylesheets/print.sass
|
93
|
+
- examples/blueprint_default/stylesheets/screen.sass
|
94
|
+
- examples/blueprint_plugins/index.html
|
95
|
+
- examples/blueprint_plugins/parts/fancy_type.html
|
96
|
+
- examples/blueprint_plugins/parts/test-small.jpg
|
97
|
+
- examples/blueprint_plugins/parts/test.jpg
|
98
|
+
- examples/blueprint_plugins/parts/valid.png
|
99
|
+
- examples/blueprint_plugins/stylesheets/ie.sass
|
100
|
+
- examples/blueprint_plugins/stylesheets/images/grid.png
|
101
|
+
- examples/blueprint_plugins/stylesheets/print.sass
|
102
|
+
- examples/blueprint_plugins/stylesheets/screen.sass
|
103
|
+
- examples/blueprint_scoped/stylesheets/ie.sass
|
104
|
+
- examples/blueprint_scoped/stylesheets/print.sass
|
105
|
+
- examples/blueprint_scoped/stylesheets/screen.sass
|
106
|
+
- examples/blueprint_scoped_form/stylesheets/ie.sass
|
107
|
+
- examples/blueprint_scoped_form/stylesheets/print.sass
|
108
|
+
- examples/blueprint_scoped_form/stylesheets/screen.sass
|
109
|
+
- examples/blueprint_semantic/index.html
|
110
|
+
- examples/blueprint_semantic/parts/fancy_type.html
|
111
|
+
- examples/blueprint_semantic/parts/liquid.html
|
112
|
+
- examples/blueprint_semantic/parts/test-small.jpg
|
113
|
+
- examples/blueprint_semantic/parts/test.jpg
|
114
|
+
- examples/blueprint_semantic/parts/valid.png
|
115
|
+
- examples/blueprint_semantic/stylesheets/ie.sass
|
116
|
+
- examples/blueprint_semantic/stylesheets/images/grid.png
|
117
|
+
- examples/blueprint_semantic/stylesheets/liquid.sass
|
118
|
+
- examples/blueprint_semantic/stylesheets/print.sass
|
119
|
+
- examples/blueprint_semantic/stylesheets/screen.sass
|
120
|
+
- examples/compass/compass.html
|
121
|
+
- examples/compass/sticky_footer.html.haml
|
122
|
+
- examples/compass/stylesheets/compass.sass
|
123
|
+
- examples/compass/stylesheets/images/blue_arrow.gif
|
124
|
+
- examples/compass/stylesheets/sticky_footer.sass
|
125
|
+
- examples/compass/stylesheets/utilities.sass
|
126
|
+
- examples/compass/utilities.html.haml
|
127
|
+
- examples/yui/divisions.html.haml
|
128
|
+
- examples/yui/index.html.haml
|
129
|
+
- examples/yui/stylesheets/screen.sass
|
130
|
+
- examples/yui/sub_divisions.html.haml
|
131
|
+
- examples/yui/templates.html.haml
|
132
|
+
- examples/yui/test.jpg
|
133
|
+
- examples/yui/typography.html.haml
|
134
|
+
- frameworks/blueprint/lib/blueprint/constants.rb
|
135
|
+
- frameworks/blueprint/lib/blueprint/grid_builder.rb
|
136
|
+
- frameworks/blueprint/stylesheets/_blueprint.sass
|
137
|
+
- frameworks/blueprint/stylesheets/blueprint/_ie.sass
|
138
|
+
- frameworks/blueprint/stylesheets/blueprint/_print.sass
|
139
|
+
- frameworks/blueprint/stylesheets/blueprint/_screen.sass
|
140
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass
|
141
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass
|
142
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass
|
143
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_form.sass
|
144
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass
|
145
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass
|
146
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass
|
147
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass
|
148
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass
|
149
|
+
- frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass
|
150
|
+
- frameworks/blueprint/templates/project/grid.png
|
151
|
+
- frameworks/blueprint/templates/project/ie.sass
|
152
|
+
- frameworks/blueprint/templates/project/manifest.rb
|
153
|
+
- frameworks/blueprint/templates/project/print.sass
|
154
|
+
- frameworks/blueprint/templates/project/screen.sass
|
155
|
+
- frameworks/blueprint.rb
|
156
|
+
- frameworks/compass/stylesheets/_compass.sass
|
157
|
+
- frameworks/compass/stylesheets/compass/_layout.sass
|
158
|
+
- frameworks/compass/stylesheets/compass/_reset.sass
|
159
|
+
- frameworks/compass/stylesheets/compass/_utilities.sass
|
160
|
+
- frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass
|
161
|
+
- frameworks/compass/stylesheets/compass/utilities/_general.sass
|
162
|
+
- frameworks/compass/stylesheets/compass/utilities/_links.sass
|
163
|
+
- frameworks/compass/stylesheets/compass/utilities/_lists.sass
|
164
|
+
- frameworks/compass/stylesheets/compass/utilities/_print.sass
|
165
|
+
- frameworks/compass/stylesheets/compass/utilities/_tables.sass
|
166
|
+
- frameworks/compass/stylesheets/compass/utilities/_text.sass
|
167
|
+
- frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass
|
168
|
+
- frameworks/compass/stylesheets/compass/utilities/general/_inline_block.sass
|
169
|
+
- frameworks/compass/stylesheets/compass/utilities/general/_reset.sass
|
170
|
+
- frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass
|
171
|
+
- frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass
|
172
|
+
- frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass
|
173
|
+
- frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass
|
174
|
+
- frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass
|
175
|
+
- frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass
|
176
|
+
- frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass
|
177
|
+
- frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass
|
178
|
+
- frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass
|
179
|
+
- frameworks/compass/stylesheets/compass/utilities/tables/_borders.sass
|
180
|
+
- frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.sass
|
181
|
+
- frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass
|
182
|
+
- frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass
|
183
|
+
- frameworks/compass/templates/project/ie.sass
|
184
|
+
- frameworks/compass/templates/project/manifest.rb
|
185
|
+
- frameworks/compass/templates/project/print.sass
|
186
|
+
- frameworks/compass/templates/project/screen.sass
|
187
|
+
- frameworks/compass.rb
|
188
|
+
- frameworks/yui/COPYRIGHT
|
189
|
+
- frameworks/yui/stylesheets/_yui.sass
|
190
|
+
- frameworks/yui/stylesheets/yui/modules/_base.sass
|
191
|
+
- frameworks/yui/stylesheets/yui/modules/_fonts.sass
|
192
|
+
- frameworks/yui/stylesheets/yui/modules/_grids.sass
|
193
|
+
- frameworks/yui/templates/project/manifest.rb
|
194
|
+
- frameworks/yui/templates/project/screen.sass
|
195
|
+
- frameworks/yui.rb
|
196
|
+
- lib/compass/actions.rb
|
197
|
+
- lib/compass/commands/base.rb
|
198
|
+
- lib/compass/commands/create_project.rb
|
199
|
+
- lib/compass/commands/list_frameworks.rb
|
200
|
+
- lib/compass/commands/print_version.rb
|
201
|
+
- lib/compass/commands/project_base.rb
|
202
|
+
- lib/compass/commands/update_project.rb
|
203
|
+
- lib/compass/commands/watch_project.rb
|
204
|
+
- lib/compass/commands/write_configuration.rb
|
205
|
+
- lib/compass/compiler.rb
|
206
|
+
- lib/compass/configuration.rb
|
207
|
+
- lib/compass/core_ext.rb
|
208
|
+
- lib/compass/errors.rb
|
209
|
+
- lib/compass/exec.rb
|
210
|
+
- lib/compass/frameworks.rb
|
211
|
+
- lib/compass/installers/base.rb
|
212
|
+
- lib/compass/installers/manifest.rb
|
213
|
+
- lib/compass/installers/rails.rb
|
214
|
+
- lib/compass/installers/stand_alone.rb
|
215
|
+
- lib/compass/installers.rb
|
216
|
+
- lib/compass/logger.rb
|
217
|
+
- lib/compass/merb.rb
|
218
|
+
- lib/compass/test_case.rb
|
219
|
+
- lib/compass/validate/COPYRIGHT.html
|
220
|
+
- lib/compass/validate/css-validator-javadoc.jar
|
221
|
+
- lib/compass/validate/css-validator.jar
|
222
|
+
- lib/compass/validate/jigsaw.jar
|
223
|
+
- lib/compass/validate/JIGSAW_COPYRIGHT
|
224
|
+
- lib/compass/validate/README.html
|
225
|
+
- lib/compass/validate/xerces.jar
|
226
|
+
- lib/compass/validate/XERCES_COPYING.txt
|
227
|
+
- lib/compass/validate.rb
|
228
|
+
- lib/compass/validator.rb
|
229
|
+
- lib/compass/version.rb
|
230
|
+
- lib/compass.rb
|
231
|
+
- lib/sass_extensions.rb
|
232
|
+
- Manifest
|
233
|
+
- Rakefile
|
234
|
+
- README.markdown
|
235
|
+
- test/command_line_test.rb
|
236
|
+
- test/compass_test.rb
|
237
|
+
- test/configuration_test.rb
|
238
|
+
- test/fixtures/stylesheets/blueprint/css/typography.css
|
239
|
+
- test/fixtures/stylesheets/blueprint/sass/ie.sass
|
240
|
+
- test/fixtures/stylesheets/blueprint/sass/print.sass
|
241
|
+
- test/fixtures/stylesheets/blueprint/sass/screen.sass
|
242
|
+
- test/fixtures/stylesheets/blueprint/sass/typography.sass
|
243
|
+
- test/fixtures/stylesheets/compass/css/layout.css
|
244
|
+
- test/fixtures/stylesheets/compass/css/print.css
|
245
|
+
- test/fixtures/stylesheets/compass/css/reset.css
|
246
|
+
- test/fixtures/stylesheets/compass/css/utilities.css
|
247
|
+
- test/fixtures/stylesheets/compass/sass/layout.sass
|
248
|
+
- test/fixtures/stylesheets/compass/sass/print.sass
|
249
|
+
- test/fixtures/stylesheets/compass/sass/reset.sass
|
250
|
+
- test/fixtures/stylesheets/compass/sass/utilities.sass
|
251
|
+
- test/fixtures/stylesheets/yui/css/mixins.css
|
252
|
+
- test/fixtures/stylesheets/yui/sass/base.sass
|
253
|
+
- test/fixtures/stylesheets/yui/sass/fonts.sass
|
254
|
+
- test/fixtures/stylesheets/yui/sass/grids.sass
|
255
|
+
- test/fixtures/stylesheets/yui/sass/mixins.sass
|
256
|
+
- test/sass_extensions_test.rb
|
257
|
+
- test/test_helper.rb
|
258
|
+
- VERSION
|
259
|
+
has_rdoc: false
|
260
|
+
homepage: http://github.com/chriseppstein/compass
|
261
|
+
post_install_message:
|
262
|
+
rdoc_options:
|
263
|
+
- --line-numbers
|
264
|
+
- --inline-source
|
265
|
+
- --title
|
266
|
+
- Compass
|
267
|
+
- --main
|
268
|
+
- README.markdown
|
269
|
+
require_paths:
|
270
|
+
- lib
|
271
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
272
|
+
requirements:
|
273
|
+
- - ">="
|
274
|
+
- !ruby/object:Gem::Version
|
275
|
+
version: "0"
|
276
|
+
version:
|
277
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
278
|
+
requirements:
|
279
|
+
- - ">="
|
280
|
+
- !ruby/object:Gem::Version
|
281
|
+
version: "1.2"
|
282
|
+
version:
|
283
|
+
requirements: []
|
284
|
+
|
285
|
+
rubyforge_project: compass
|
286
|
+
rubygems_version: 1.3.1
|
287
|
+
signing_key:
|
288
|
+
specification_version: 2
|
289
|
+
summary: Sass-Based CSS Meta-Framework.
|
290
|
+
test_files:
|
291
|
+
- test/command_line_test.rb
|
292
|
+
- test/compass_test.rb
|
293
|
+
- test/configuration_test.rb
|
294
|
+
- test/sass_extensions_test.rb
|
295
|
+
- test/test_helper.rb
|