chriseppstein-compass 0.1.1

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.
Files changed (144) hide show
  1. data/Manifest +143 -0
  2. data/README.markdown +18 -0
  3. data/Rakefile +104 -0
  4. data/VERSION +1 -0
  5. data/bin/compass +8 -0
  6. data/compass.gemspec +37 -0
  7. data/examples/blueprint_default/index.html +73 -0
  8. data/examples/blueprint_default/parts/elements.html +246 -0
  9. data/examples/blueprint_default/parts/forms.html +100 -0
  10. data/examples/blueprint_default/parts/grid.html +206 -0
  11. data/examples/blueprint_default/parts/test-small.jpg +0 -0
  12. data/examples/blueprint_default/parts/test.jpg +0 -0
  13. data/examples/blueprint_default/parts/valid.png +0 -0
  14. data/examples/blueprint_default/stylesheets/ie.sass +4 -0
  15. data/examples/blueprint_default/stylesheets/images/grid.png +0 -0
  16. data/examples/blueprint_default/stylesheets/print.sass +4 -0
  17. data/examples/blueprint_default/stylesheets/screen.sass +9 -0
  18. data/examples/blueprint_plugins/index.html +60 -0
  19. data/examples/blueprint_plugins/parts/fancy_type.html +84 -0
  20. data/examples/blueprint_plugins/parts/test-small.jpg +0 -0
  21. data/examples/blueprint_plugins/parts/test.jpg +0 -0
  22. data/examples/blueprint_plugins/parts/valid.png +0 -0
  23. data/examples/blueprint_plugins/stylesheets/ie.sass +4 -0
  24. data/examples/blueprint_plugins/stylesheets/images/grid.png +0 -0
  25. data/examples/blueprint_plugins/stylesheets/print.sass +4 -0
  26. data/examples/blueprint_plugins/stylesheets/screen.sass +11 -0
  27. data/examples/blueprint_scoped/stylesheets/ie.sass +4 -0
  28. data/examples/blueprint_scoped/stylesheets/print.sass +4 -0
  29. data/examples/blueprint_scoped/stylesheets/screen.sass +5 -0
  30. data/examples/blueprint_scoped_form/stylesheets/ie.sass +4 -0
  31. data/examples/blueprint_scoped_form/stylesheets/print.sass +4 -0
  32. data/examples/blueprint_scoped_form/stylesheets/screen.sass +9 -0
  33. data/examples/blueprint_semantic/index.html +68 -0
  34. data/examples/blueprint_semantic/parts/fancy_type.html +84 -0
  35. data/examples/blueprint_semantic/parts/liquid.html +84 -0
  36. data/examples/blueprint_semantic/parts/test-small.jpg +0 -0
  37. data/examples/blueprint_semantic/parts/test.jpg +0 -0
  38. data/examples/blueprint_semantic/parts/valid.png +0 -0
  39. data/examples/blueprint_semantic/stylesheets/ie.sass +4 -0
  40. data/examples/blueprint_semantic/stylesheets/images/grid.png +0 -0
  41. data/examples/blueprint_semantic/stylesheets/liquid.sass +70 -0
  42. data/examples/blueprint_semantic/stylesheets/print.sass +4 -0
  43. data/examples/blueprint_semantic/stylesheets/screen.sass +69 -0
  44. data/examples/compass/compass.html +19 -0
  45. data/examples/compass/stylesheets/compass.sass +47 -0
  46. data/examples/compass/stylesheets/images/blue_arrow.gif +0 -0
  47. data/examples/compass/stylesheets/utilities.sass +65 -0
  48. data/examples/compass/utilities.html.haml +136 -0
  49. data/examples/yui/divisions.html.haml +179 -0
  50. data/examples/yui/index.html.haml +19 -0
  51. data/examples/yui/stylesheets/screen.sass +13 -0
  52. data/examples/yui/sub_divisions.html.haml +169 -0
  53. data/examples/yui/templates.html.haml +54 -0
  54. data/examples/yui/test.jpg +0 -0
  55. data/examples/yui/typography.html.haml +132 -0
  56. data/frameworks/blueprint/lib/blueprint/constants.rb +17 -0
  57. data/frameworks/blueprint/lib/blueprint/grid_builder.rb +54 -0
  58. data/frameworks/blueprint/stylesheets/blueprint/_ie.sass +19 -0
  59. data/frameworks/blueprint/stylesheets/blueprint/_print.sass +69 -0
  60. data/frameworks/blueprint/stylesheets/blueprint/_screen.sass +15 -0
  61. data/frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass +25 -0
  62. data/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass +9 -0
  63. data/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass +85 -0
  64. data/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass +43 -0
  65. data/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass +140 -0
  66. data/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass +55 -0
  67. data/frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass +140 -0
  68. data/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass +29 -0
  69. data/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass +131 -0
  70. data/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass +39 -0
  71. data/frameworks/blueprint/templates/project/grid.png +0 -0
  72. data/frameworks/blueprint/templates/project/ie.sass +4 -0
  73. data/frameworks/blueprint/templates/project/print.sass +4 -0
  74. data/frameworks/blueprint/templates/project/screen.sass +9 -0
  75. data/frameworks/compass/stylesheets/compass/_reset.sass +19 -0
  76. data/frameworks/compass/stylesheets/compass/_utilities.sass +5 -0
  77. data/frameworks/compass/stylesheets/compass/utilities/_general.sass +4 -0
  78. data/frameworks/compass/stylesheets/compass/utilities/_links.sass +3 -0
  79. data/frameworks/compass/stylesheets/compass/utilities/_lists.sass +3 -0
  80. data/frameworks/compass/stylesheets/compass/utilities/_tables.sass +1 -0
  81. data/frameworks/compass/stylesheets/compass/utilities/_text.sass +2 -0
  82. data/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass +11 -0
  83. data/frameworks/compass/stylesheets/compass/utilities/general/_inline_block.sass +6 -0
  84. data/frameworks/compass/stylesheets/compass/utilities/general/_reset.sass +32 -0
  85. data/frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass +0 -0
  86. data/frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass +19 -0
  87. data/frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass +5 -0
  88. data/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass +24 -0
  89. data/frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass +5 -0
  90. data/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass +21 -0
  91. data/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass +20 -0
  92. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass +29 -0
  93. data/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass +25 -0
  94. data/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass +3 -0
  95. data/frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass +10 -0
  96. data/frameworks/compass/templates/project/grid.png +0 -0
  97. data/frameworks/compass/templates/project/ie.sass +3 -0
  98. data/frameworks/compass/templates/project/print.sass +4 -0
  99. data/frameworks/compass/templates/project/screen.sass +4 -0
  100. data/frameworks/yui/COPYRIGHT +15 -0
  101. data/frameworks/yui/stylesheets/yui/_screen.sass +7 -0
  102. data/frameworks/yui/stylesheets/yui/modules/_base.sass +60 -0
  103. data/frameworks/yui/stylesheets/yui/modules/_fonts.sass +38 -0
  104. data/frameworks/yui/stylesheets/yui/modules/_grids.sass +341 -0
  105. data/frameworks/yui/templates/project/screen.sass +5 -0
  106. data/lib/compass.rb +19 -0
  107. data/lib/compass/commands/base.rb +94 -0
  108. data/lib/compass/commands/create_project.rb +30 -0
  109. data/lib/compass/commands/install_rails.rb +115 -0
  110. data/lib/compass/commands/print_version.rb +23 -0
  111. data/lib/compass/commands/update_project.rb +91 -0
  112. data/lib/compass/commands/watch_project.rb +42 -0
  113. data/lib/compass/core_ext.rb +39 -0
  114. data/lib/compass/exec.rb +156 -0
  115. data/lib/compass/frameworks.rb +27 -0
  116. data/lib/compass/frameworks/blueprint.rb +2 -0
  117. data/lib/compass/frameworks/compass.rb +2 -0
  118. data/lib/compass/frameworks/yui.rb +2 -0
  119. data/lib/compass/merb.rb +43 -0
  120. data/lib/compass/test_case.rb +37 -0
  121. data/lib/compass/validate.rb +13 -0
  122. data/lib/compass/validate/COPYRIGHT.html +93 -0
  123. data/lib/compass/validate/JIGSAW_COPYRIGHT +64 -0
  124. data/lib/compass/validate/README.html +83 -0
  125. data/lib/compass/validate/XERCES_COPYING.txt +56 -0
  126. data/lib/compass/validate/css-validator-javadoc.jar +0 -0
  127. data/lib/compass/validate/css-validator.jar +0 -0
  128. data/lib/compass/validate/jigsaw.jar +0 -0
  129. data/lib/compass/validate/xerces.jar +0 -0
  130. data/lib/compass/validator.rb +59 -0
  131. data/lib/compass/version.rb +48 -0
  132. data/lib/sass_extensions.rb +13 -0
  133. data/test/compass_test.rb +142 -0
  134. data/test/fixtures/stylesheets/default/sass/ie.sass +4 -0
  135. data/test/fixtures/stylesheets/default/sass/print.sass +4 -0
  136. data/test/fixtures/stylesheets/default/sass/screen.sass +18 -0
  137. data/test/fixtures/stylesheets/yui/css/mixins.css +16 -0
  138. data/test/fixtures/stylesheets/yui/sass/base.sass +3 -0
  139. data/test/fixtures/stylesheets/yui/sass/fonts.sass +3 -0
  140. data/test/fixtures/stylesheets/yui/sass/grids.sass +3 -0
  141. data/test/fixtures/stylesheets/yui/sass/mixins.sass +16 -0
  142. data/test/sass_extensions_test.rb +26 -0
  143. data/test/test_helper.rb +37 -0
  144. metadata +247 -0
@@ -0,0 +1,16 @@
1
+
2
+
3
+
4
+ .font-size-26px {
5
+ font-size: 200%; }
6
+
7
+ .font-size-baseline {
8
+ font-size: 300%; }
9
+
10
+ .em-sizing {
11
+ width: 1em;
12
+ margin: 9em; }
13
+
14
+ .em-sizing-hack {
15
+ width: 1em;
16
+ *width: 0.975em; }
@@ -0,0 +1,3 @@
1
+ @import yui/modules/base.sass
2
+
3
+ +yui-base
@@ -0,0 +1,3 @@
1
+ @import yui/modules/fonts.sass
2
+
3
+ +yui-base-fonts
@@ -0,0 +1,3 @@
1
+ @import yui/modules/grids.sass
2
+
3
+ +yui-grids
@@ -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
@@ -0,0 +1,37 @@
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
+ Sass::Plugin.options[:template_location] = {
36
+ "#{File.dirname(__FILE__)}/../src" => "#{File.dirname(__FILE__)}/tmp/blueprint"
37
+ }
metadata ADDED
@@ -0,0 +1,247 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chriseppstein-compass
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Chris Eppstein
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-12-05 00:00:00 -08:00
13
+ default_executable: compass
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: haml
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0"
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: echoe
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: "0"
32
+ version:
33
+ description: Sass-Based CSS Meta-Framework. Semantic, Maintainable CSS.
34
+ email: chris@eppsteins.net
35
+ executables:
36
+ - compass
37
+ extensions: []
38
+
39
+ extra_rdoc_files:
40
+ - bin/compass
41
+ - lib/compass/commands/base.rb
42
+ - lib/compass/commands/create_project.rb
43
+ - lib/compass/commands/install_rails.rb
44
+ - lib/compass/commands/print_version.rb
45
+ - lib/compass/commands/update_project.rb
46
+ - lib/compass/commands/watch_project.rb
47
+ - lib/compass/core_ext.rb
48
+ - lib/compass/exec.rb
49
+ - lib/compass/frameworks/blueprint.rb
50
+ - lib/compass/frameworks/compass.rb
51
+ - lib/compass/frameworks/yui.rb
52
+ - lib/compass/frameworks.rb
53
+ - lib/compass/merb.rb
54
+ - lib/compass/test_case.rb
55
+ - lib/compass/validate/COPYRIGHT.html
56
+ - lib/compass/validate/css-validator-javadoc.jar
57
+ - lib/compass/validate/css-validator.jar
58
+ - lib/compass/validate/jigsaw.jar
59
+ - lib/compass/validate/JIGSAW_COPYRIGHT
60
+ - lib/compass/validate/README.html
61
+ - lib/compass/validate/xerces.jar
62
+ - lib/compass/validate/XERCES_COPYING.txt
63
+ - lib/compass/validate.rb
64
+ - lib/compass/validator.rb
65
+ - lib/compass/version.rb
66
+ - lib/compass.rb
67
+ - lib/sass_extensions.rb
68
+ - README.markdown
69
+ files:
70
+ - bin/compass
71
+ - compass.gemspec
72
+ - examples/blueprint_default/index.html
73
+ - examples/blueprint_default/parts/elements.html
74
+ - examples/blueprint_default/parts/forms.html
75
+ - examples/blueprint_default/parts/grid.html
76
+ - examples/blueprint_default/parts/test-small.jpg
77
+ - examples/blueprint_default/parts/test.jpg
78
+ - examples/blueprint_default/parts/valid.png
79
+ - examples/blueprint_default/stylesheets/ie.sass
80
+ - examples/blueprint_default/stylesheets/images/grid.png
81
+ - examples/blueprint_default/stylesheets/print.sass
82
+ - examples/blueprint_default/stylesheets/screen.sass
83
+ - examples/blueprint_plugins/index.html
84
+ - examples/blueprint_plugins/parts/fancy_type.html
85
+ - examples/blueprint_plugins/parts/test-small.jpg
86
+ - examples/blueprint_plugins/parts/test.jpg
87
+ - examples/blueprint_plugins/parts/valid.png
88
+ - examples/blueprint_plugins/stylesheets/ie.sass
89
+ - examples/blueprint_plugins/stylesheets/images/grid.png
90
+ - examples/blueprint_plugins/stylesheets/print.sass
91
+ - examples/blueprint_plugins/stylesheets/screen.sass
92
+ - examples/blueprint_scoped/stylesheets/ie.sass
93
+ - examples/blueprint_scoped/stylesheets/print.sass
94
+ - examples/blueprint_scoped/stylesheets/screen.sass
95
+ - examples/blueprint_scoped_form/stylesheets/ie.sass
96
+ - examples/blueprint_scoped_form/stylesheets/print.sass
97
+ - examples/blueprint_scoped_form/stylesheets/screen.sass
98
+ - examples/blueprint_semantic/index.html
99
+ - examples/blueprint_semantic/parts/fancy_type.html
100
+ - examples/blueprint_semantic/parts/liquid.html
101
+ - examples/blueprint_semantic/parts/test-small.jpg
102
+ - examples/blueprint_semantic/parts/test.jpg
103
+ - examples/blueprint_semantic/parts/valid.png
104
+ - examples/blueprint_semantic/stylesheets/ie.sass
105
+ - examples/blueprint_semantic/stylesheets/images/grid.png
106
+ - examples/blueprint_semantic/stylesheets/liquid.sass
107
+ - examples/blueprint_semantic/stylesheets/print.sass
108
+ - examples/blueprint_semantic/stylesheets/screen.sass
109
+ - examples/compass/compass.html
110
+ - examples/compass/stylesheets/compass.sass
111
+ - examples/compass/stylesheets/images/blue_arrow.gif
112
+ - examples/compass/stylesheets/utilities.sass
113
+ - examples/compass/utilities.html.haml
114
+ - examples/yui/divisions.html.haml
115
+ - examples/yui/index.html.haml
116
+ - examples/yui/stylesheets/screen.sass
117
+ - examples/yui/sub_divisions.html.haml
118
+ - examples/yui/templates.html.haml
119
+ - examples/yui/test.jpg
120
+ - examples/yui/typography.html.haml
121
+ - frameworks/blueprint/lib/blueprint/constants.rb
122
+ - frameworks/blueprint/lib/blueprint/grid_builder.rb
123
+ - frameworks/blueprint/stylesheets/blueprint/_ie.sass
124
+ - frameworks/blueprint/stylesheets/blueprint/_print.sass
125
+ - frameworks/blueprint/stylesheets/blueprint/_screen.sass
126
+ - frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass
127
+ - frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass
128
+ - frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass
129
+ - frameworks/blueprint/stylesheets/blueprint/modules/_form.sass
130
+ - frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass
131
+ - frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass
132
+ - frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass
133
+ - frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass
134
+ - frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass
135
+ - frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass
136
+ - frameworks/blueprint/templates/project/grid.png
137
+ - frameworks/blueprint/templates/project/ie.sass
138
+ - frameworks/blueprint/templates/project/print.sass
139
+ - frameworks/blueprint/templates/project/screen.sass
140
+ - frameworks/compass/stylesheets/compass/_reset.sass
141
+ - frameworks/compass/stylesheets/compass/_utilities.sass
142
+ - frameworks/compass/stylesheets/compass/utilities/_general.sass
143
+ - frameworks/compass/stylesheets/compass/utilities/_links.sass
144
+ - frameworks/compass/stylesheets/compass/utilities/_lists.sass
145
+ - frameworks/compass/stylesheets/compass/utilities/_tables.sass
146
+ - frameworks/compass/stylesheets/compass/utilities/_text.sass
147
+ - frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass
148
+ - frameworks/compass/stylesheets/compass/utilities/general/_inline_block.sass
149
+ - frameworks/compass/stylesheets/compass/utilities/general/_reset.sass
150
+ - frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass
151
+ - frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass
152
+ - frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass
153
+ - frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass
154
+ - frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass
155
+ - frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass
156
+ - frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass
157
+ - frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass
158
+ - frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass
159
+ - frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass
160
+ - frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass
161
+ - frameworks/compass/templates/project/grid.png
162
+ - frameworks/compass/templates/project/ie.sass
163
+ - frameworks/compass/templates/project/print.sass
164
+ - frameworks/compass/templates/project/screen.sass
165
+ - frameworks/yui/COPYRIGHT
166
+ - frameworks/yui/stylesheets/yui/_screen.sass
167
+ - frameworks/yui/stylesheets/yui/modules/_base.sass
168
+ - frameworks/yui/stylesheets/yui/modules/_fonts.sass
169
+ - frameworks/yui/stylesheets/yui/modules/_grids.sass
170
+ - frameworks/yui/templates/project/screen.sass
171
+ - lib/compass/commands/base.rb
172
+ - lib/compass/commands/create_project.rb
173
+ - lib/compass/commands/install_rails.rb
174
+ - lib/compass/commands/print_version.rb
175
+ - lib/compass/commands/update_project.rb
176
+ - lib/compass/commands/watch_project.rb
177
+ - lib/compass/core_ext.rb
178
+ - lib/compass/exec.rb
179
+ - lib/compass/frameworks/blueprint.rb
180
+ - lib/compass/frameworks/compass.rb
181
+ - lib/compass/frameworks/yui.rb
182
+ - lib/compass/frameworks.rb
183
+ - lib/compass/merb.rb
184
+ - lib/compass/test_case.rb
185
+ - lib/compass/validate/COPYRIGHT.html
186
+ - lib/compass/validate/css-validator-javadoc.jar
187
+ - lib/compass/validate/css-validator.jar
188
+ - lib/compass/validate/jigsaw.jar
189
+ - lib/compass/validate/JIGSAW_COPYRIGHT
190
+ - lib/compass/validate/README.html
191
+ - lib/compass/validate/xerces.jar
192
+ - lib/compass/validate/XERCES_COPYING.txt
193
+ - lib/compass/validate.rb
194
+ - lib/compass/validator.rb
195
+ - lib/compass/version.rb
196
+ - lib/compass.rb
197
+ - lib/sass_extensions.rb
198
+ - Manifest
199
+ - Rakefile
200
+ - README.markdown
201
+ - test/compass_test.rb
202
+ - test/fixtures/stylesheets/default/sass/ie.sass
203
+ - test/fixtures/stylesheets/default/sass/print.sass
204
+ - test/fixtures/stylesheets/default/sass/screen.sass
205
+ - test/fixtures/stylesheets/yui/css/mixins.css
206
+ - test/fixtures/stylesheets/yui/sass/base.sass
207
+ - test/fixtures/stylesheets/yui/sass/fonts.sass
208
+ - test/fixtures/stylesheets/yui/sass/grids.sass
209
+ - test/fixtures/stylesheets/yui/sass/mixins.sass
210
+ - test/sass_extensions_test.rb
211
+ - test/test_helper.rb
212
+ - VERSION
213
+ has_rdoc: false
214
+ homepage: http://github.com/chriseppstein/compass
215
+ post_install_message:
216
+ rdoc_options:
217
+ - --line-numbers
218
+ - --inline-source
219
+ - --title
220
+ - Compass
221
+ - --main
222
+ - README.markdown
223
+ require_paths:
224
+ - lib
225
+ required_ruby_version: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ version: "0"
230
+ version:
231
+ required_rubygems_version: !ruby/object:Gem::Requirement
232
+ requirements:
233
+ - - ">="
234
+ - !ruby/object:Gem::Version
235
+ version: "1.2"
236
+ version:
237
+ requirements: []
238
+
239
+ rubyforge_project: compass
240
+ rubygems_version: 1.2.0
241
+ signing_key:
242
+ specification_version: 2
243
+ summary: Sass-Based CSS Meta-Framework.
244
+ test_files:
245
+ - test/compass_test.rb
246
+ - test/sass_extensions_test.rb
247
+ - test/test_helper.rb