jsmestad-compass 0.4.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. data/Manifest +175 -0
  2. data/README.markdown +17 -0
  3. data/Rakefile +125 -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 +3 -0
  15. data/examples/blueprint_default/stylesheets/images/grid.png +0 -0
  16. data/examples/blueprint_default/stylesheets/print.sass +3 -0
  17. data/examples/blueprint_default/stylesheets/screen.sass +8 -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 +3 -0
  24. data/examples/blueprint_plugins/stylesheets/images/grid.png +0 -0
  25. data/examples/blueprint_plugins/stylesheets/print.sass +3 -0
  26. data/examples/blueprint_plugins/stylesheets/screen.sass +11 -0
  27. data/examples/blueprint_scoped/stylesheets/ie.sass +3 -0
  28. data/examples/blueprint_scoped/stylesheets/print.sass +3 -0
  29. data/examples/blueprint_scoped/stylesheets/screen.sass +4 -0
  30. data/examples/blueprint_scoped_form/stylesheets/ie.sass +3 -0
  31. data/examples/blueprint_scoped_form/stylesheets/print.sass +3 -0
  32. data/examples/blueprint_scoped_form/stylesheets/screen.sass +10 -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 +3 -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 +3 -0
  43. data/examples/blueprint_semantic/stylesheets/screen.sass +69 -0
  44. data/examples/compass/compass.html +19 -0
  45. data/examples/compass/sticky_footer.html.haml +14 -0
  46. data/examples/compass/stylesheets/compass.sass +47 -0
  47. data/examples/compass/stylesheets/images/blue_arrow.gif +0 -0
  48. data/examples/compass/stylesheets/sticky_footer.sass +11 -0
  49. data/examples/compass/stylesheets/utilities.sass +65 -0
  50. data/examples/compass/utilities.html.haml +136 -0
  51. data/examples/yui/divisions.html.haml +179 -0
  52. data/examples/yui/index.html.haml +19 -0
  53. data/examples/yui/stylesheets/screen.sass +13 -0
  54. data/examples/yui/sub_divisions.html.haml +169 -0
  55. data/examples/yui/templates.html.haml +54 -0
  56. data/examples/yui/test.jpg +0 -0
  57. data/examples/yui/typography.html.haml +132 -0
  58. data/frameworks/blueprint.rb +2 -0
  59. data/frameworks/blueprint/lib/blueprint/constants.rb +17 -0
  60. data/frameworks/blueprint/lib/blueprint/grid_builder.rb +54 -0
  61. data/frameworks/blueprint/stylesheets/_blueprint.sass +3 -0
  62. data/frameworks/blueprint/stylesheets/blueprint/_ie.sass +49 -0
  63. data/frameworks/blueprint/stylesheets/blueprint/_print.sass +82 -0
  64. data/frameworks/blueprint/stylesheets/blueprint/_screen.sass +15 -0
  65. data/frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass +30 -0
  66. data/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass +9 -0
  67. data/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass +81 -0
  68. data/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass +43 -0
  69. data/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass +141 -0
  70. data/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass +58 -0
  71. data/frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass +137 -0
  72. data/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass +46 -0
  73. data/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass +153 -0
  74. data/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass +37 -0
  75. data/frameworks/blueprint/templates/project/grid.png +0 -0
  76. data/frameworks/blueprint/templates/project/ie.sass +3 -0
  77. data/frameworks/blueprint/templates/project/manifest.rb +5 -0
  78. data/frameworks/blueprint/templates/project/print.sass +3 -0
  79. data/frameworks/blueprint/templates/project/screen.sass +8 -0
  80. data/frameworks/compass.rb +2 -0
  81. data/frameworks/compass/stylesheets/_compass.sass +1 -0
  82. data/frameworks/compass/stylesheets/compass/_layout.sass +1 -0
  83. data/frameworks/compass/stylesheets/compass/_reset.sass +3 -0
  84. data/frameworks/compass/stylesheets/compass/_utilities.sass +5 -0
  85. data/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass +17 -0
  86. data/frameworks/compass/stylesheets/compass/utilities/_general.sass +4 -0
  87. data/frameworks/compass/stylesheets/compass/utilities/_links.sass +3 -0
  88. data/frameworks/compass/stylesheets/compass/utilities/_lists.sass +3 -0
  89. data/frameworks/compass/stylesheets/compass/utilities/_print.sass +24 -0
  90. data/frameworks/compass/stylesheets/compass/utilities/_tables.sass +1 -0
  91. data/frameworks/compass/stylesheets/compass/utilities/_text.sass +2 -0
  92. data/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass +11 -0
  93. data/frameworks/compass/stylesheets/compass/utilities/general/_inline_block.sass +6 -0
  94. data/frameworks/compass/stylesheets/compass/utilities/general/_reset.sass +58 -0
  95. data/frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass +0 -0
  96. data/frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass +19 -0
  97. data/frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass +5 -0
  98. data/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass +24 -0
  99. data/frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass +5 -0
  100. data/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass +21 -0
  101. data/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass +20 -0
  102. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass +29 -0
  103. data/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass +25 -0
  104. data/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass +3 -0
  105. data/frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass +10 -0
  106. data/frameworks/compass/templates/project/ie.sass +6 -0
  107. data/frameworks/compass/templates/project/manifest.rb +3 -0
  108. data/frameworks/compass/templates/project/print.sass +6 -0
  109. data/frameworks/compass/templates/project/screen.sass +7 -0
  110. data/frameworks/yui.rb +2 -0
  111. data/frameworks/yui/COPYRIGHT +15 -0
  112. data/frameworks/yui/stylesheets/_yui.sass +7 -0
  113. data/frameworks/yui/stylesheets/yui/modules/_base.sass +60 -0
  114. data/frameworks/yui/stylesheets/yui/modules/_fonts.sass +38 -0
  115. data/frameworks/yui/stylesheets/yui/modules/_grids.sass +341 -0
  116. data/frameworks/yui/templates/project/manifest.rb +1 -0
  117. data/frameworks/yui/templates/project/screen.sass +4 -0
  118. data/lib/compass.rb +39 -0
  119. data/lib/compass/actions.rb +92 -0
  120. data/lib/compass/commands/base.rb +26 -0
  121. data/lib/compass/commands/create_project.rb +41 -0
  122. data/lib/compass/commands/list_frameworks.rb +16 -0
  123. data/lib/compass/commands/print_version.rb +23 -0
  124. data/lib/compass/commands/project_base.rb +74 -0
  125. data/lib/compass/commands/update_project.rb +61 -0
  126. data/lib/compass/commands/watch_project.rb +53 -0
  127. data/lib/compass/compiler.rb +40 -0
  128. data/lib/compass/configuration.rb +92 -0
  129. data/lib/compass/core_ext.rb +12 -0
  130. data/lib/compass/errors.rb +7 -0
  131. data/lib/compass/exec.rb +184 -0
  132. data/lib/compass/frameworks.rb +29 -0
  133. data/lib/compass/installers.rb +5 -0
  134. data/lib/compass/installers/base.rb +135 -0
  135. data/lib/compass/installers/manifest.rb +57 -0
  136. data/lib/compass/installers/rails.rb +125 -0
  137. data/lib/compass/installers/stand_alone.rb +76 -0
  138. data/lib/compass/logger.rb +34 -0
  139. data/lib/compass/merb.rb +43 -0
  140. data/lib/compass/test_case.rb +37 -0
  141. data/lib/compass/validate.rb +13 -0
  142. data/lib/compass/validate/COPYRIGHT.html +93 -0
  143. data/lib/compass/validate/JIGSAW_COPYRIGHT +64 -0
  144. data/lib/compass/validate/README.html +83 -0
  145. data/lib/compass/validate/XERCES_COPYING.txt +56 -0
  146. data/lib/compass/validate/css-validator-javadoc.jar +0 -0
  147. data/lib/compass/validate/css-validator.jar +0 -0
  148. data/lib/compass/validate/jigsaw.jar +0 -0
  149. data/lib/compass/validate/xerces.jar +0 -0
  150. data/lib/compass/validator.rb +59 -0
  151. data/lib/compass/version.rb +66 -0
  152. data/lib/sass_extensions.rb +13 -0
  153. data/test/command_line_test.rb +147 -0
  154. data/test/compass_test.rb +148 -0
  155. data/test/configuration_test.rb +28 -0
  156. data/test/fixtures/stylesheets/blueprint/css/typography.css +158 -0
  157. data/test/fixtures/stylesheets/blueprint/sass/ie.sass +3 -0
  158. data/test/fixtures/stylesheets/blueprint/sass/print.sass +3 -0
  159. data/test/fixtures/stylesheets/blueprint/sass/screen.sass +17 -0
  160. data/test/fixtures/stylesheets/blueprint/sass/typography.sass +3 -0
  161. data/test/fixtures/stylesheets/compass/css/layout.css +14 -0
  162. data/test/fixtures/stylesheets/compass/css/print.css +19 -0
  163. data/test/fixtures/stylesheets/compass/css/reset.css +69 -0
  164. data/test/fixtures/stylesheets/compass/css/utilities.css +21 -0
  165. data/test/fixtures/stylesheets/compass/sass/layout.sass +3 -0
  166. data/test/fixtures/stylesheets/compass/sass/print.sass +5 -0
  167. data/test/fixtures/stylesheets/compass/sass/reset.sass +1 -0
  168. data/test/fixtures/stylesheets/compass/sass/utilities.sass +5 -0
  169. data/test/fixtures/stylesheets/yui/css/mixins.css +16 -0
  170. data/test/fixtures/stylesheets/yui/sass/base.sass +3 -0
  171. data/test/fixtures/stylesheets/yui/sass/fonts.sass +3 -0
  172. data/test/fixtures/stylesheets/yui/sass/grids.sass +3 -0
  173. data/test/fixtures/stylesheets/yui/sass/mixins.sass +16 -0
  174. data/test/sass_extensions_test.rb +26 -0
  175. data/test/test_helper.rb +47 -0
  176. metadata +291 -0
@@ -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,291 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jsmestad-compass
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.2.1
5
+ platform: ruby
6
+ authors:
7
+ - Chris Eppstein
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-02-12 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/compiler.rb
52
+ - lib/compass/configuration.rb
53
+ - lib/compass/core_ext.rb
54
+ - lib/compass/errors.rb
55
+ - lib/compass/exec.rb
56
+ - lib/compass/frameworks.rb
57
+ - lib/compass/installers/base.rb
58
+ - lib/compass/installers/manifest.rb
59
+ - lib/compass/installers/rails.rb
60
+ - lib/compass/installers/stand_alone.rb
61
+ - lib/compass/installers.rb
62
+ - lib/compass/logger.rb
63
+ - lib/compass/merb.rb
64
+ - lib/compass/test_case.rb
65
+ - lib/compass/validate/COPYRIGHT.html
66
+ - lib/compass/validate/css-validator-javadoc.jar
67
+ - lib/compass/validate/css-validator.jar
68
+ - lib/compass/validate/jigsaw.jar
69
+ - lib/compass/validate/JIGSAW_COPYRIGHT
70
+ - lib/compass/validate/README.html
71
+ - lib/compass/validate/xerces.jar
72
+ - lib/compass/validate/XERCES_COPYING.txt
73
+ - lib/compass/validate.rb
74
+ - lib/compass/validator.rb
75
+ - lib/compass/version.rb
76
+ - lib/compass.rb
77
+ - lib/sass_extensions.rb
78
+ - README.markdown
79
+ files:
80
+ - bin/compass
81
+ - compass.gemspec
82
+ - examples/blueprint_default/index.html
83
+ - examples/blueprint_default/parts/elements.html
84
+ - examples/blueprint_default/parts/forms.html
85
+ - examples/blueprint_default/parts/grid.html
86
+ - examples/blueprint_default/parts/test-small.jpg
87
+ - examples/blueprint_default/parts/test.jpg
88
+ - examples/blueprint_default/parts/valid.png
89
+ - examples/blueprint_default/stylesheets/ie.sass
90
+ - examples/blueprint_default/stylesheets/images/grid.png
91
+ - examples/blueprint_default/stylesheets/print.sass
92
+ - examples/blueprint_default/stylesheets/screen.sass
93
+ - examples/blueprint_plugins/index.html
94
+ - examples/blueprint_plugins/parts/fancy_type.html
95
+ - examples/blueprint_plugins/parts/test-small.jpg
96
+ - examples/blueprint_plugins/parts/test.jpg
97
+ - examples/blueprint_plugins/parts/valid.png
98
+ - examples/blueprint_plugins/stylesheets/ie.sass
99
+ - examples/blueprint_plugins/stylesheets/images/grid.png
100
+ - examples/blueprint_plugins/stylesheets/print.sass
101
+ - examples/blueprint_plugins/stylesheets/screen.sass
102
+ - examples/blueprint_scoped/stylesheets/ie.sass
103
+ - examples/blueprint_scoped/stylesheets/print.sass
104
+ - examples/blueprint_scoped/stylesheets/screen.sass
105
+ - examples/blueprint_scoped_form/stylesheets/ie.sass
106
+ - examples/blueprint_scoped_form/stylesheets/print.sass
107
+ - examples/blueprint_scoped_form/stylesheets/screen.sass
108
+ - examples/blueprint_semantic/index.html
109
+ - examples/blueprint_semantic/parts/fancy_type.html
110
+ - examples/blueprint_semantic/parts/liquid.html
111
+ - examples/blueprint_semantic/parts/test-small.jpg
112
+ - examples/blueprint_semantic/parts/test.jpg
113
+ - examples/blueprint_semantic/parts/valid.png
114
+ - examples/blueprint_semantic/stylesheets/ie.sass
115
+ - examples/blueprint_semantic/stylesheets/images/grid.png
116
+ - examples/blueprint_semantic/stylesheets/liquid.sass
117
+ - examples/blueprint_semantic/stylesheets/print.sass
118
+ - examples/blueprint_semantic/stylesheets/screen.sass
119
+ - examples/compass/compass.html
120
+ - examples/compass/sticky_footer.html.haml
121
+ - examples/compass/stylesheets/compass.sass
122
+ - examples/compass/stylesheets/images/blue_arrow.gif
123
+ - examples/compass/stylesheets/sticky_footer.sass
124
+ - examples/compass/stylesheets/utilities.sass
125
+ - examples/compass/utilities.html.haml
126
+ - examples/yui/divisions.html.haml
127
+ - examples/yui/index.html.haml
128
+ - examples/yui/stylesheets/screen.sass
129
+ - examples/yui/sub_divisions.html.haml
130
+ - examples/yui/templates.html.haml
131
+ - examples/yui/test.jpg
132
+ - examples/yui/typography.html.haml
133
+ - frameworks/blueprint/lib/blueprint/constants.rb
134
+ - frameworks/blueprint/lib/blueprint/grid_builder.rb
135
+ - frameworks/blueprint/stylesheets/_blueprint.sass
136
+ - frameworks/blueprint/stylesheets/blueprint/_ie.sass
137
+ - frameworks/blueprint/stylesheets/blueprint/_print.sass
138
+ - frameworks/blueprint/stylesheets/blueprint/_screen.sass
139
+ - frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass
140
+ - frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass
141
+ - frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass
142
+ - frameworks/blueprint/stylesheets/blueprint/modules/_form.sass
143
+ - frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass
144
+ - frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass
145
+ - frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass
146
+ - frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass
147
+ - frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass
148
+ - frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass
149
+ - frameworks/blueprint/templates/project/grid.png
150
+ - frameworks/blueprint/templates/project/ie.sass
151
+ - frameworks/blueprint/templates/project/manifest.rb
152
+ - frameworks/blueprint/templates/project/print.sass
153
+ - frameworks/blueprint/templates/project/screen.sass
154
+ - frameworks/blueprint.rb
155
+ - frameworks/compass/stylesheets/_compass.sass
156
+ - frameworks/compass/stylesheets/compass/_layout.sass
157
+ - frameworks/compass/stylesheets/compass/_reset.sass
158
+ - frameworks/compass/stylesheets/compass/_utilities.sass
159
+ - frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass
160
+ - frameworks/compass/stylesheets/compass/utilities/_general.sass
161
+ - frameworks/compass/stylesheets/compass/utilities/_links.sass
162
+ - frameworks/compass/stylesheets/compass/utilities/_lists.sass
163
+ - frameworks/compass/stylesheets/compass/utilities/_print.sass
164
+ - frameworks/compass/stylesheets/compass/utilities/_tables.sass
165
+ - frameworks/compass/stylesheets/compass/utilities/_text.sass
166
+ - frameworks/compass/stylesheets/compass/utilities/general/_clearfix.sass
167
+ - frameworks/compass/stylesheets/compass/utilities/general/_inline_block.sass
168
+ - frameworks/compass/stylesheets/compass/utilities/general/_reset.sass
169
+ - frameworks/compass/stylesheets/compass/utilities/general/_tabs.sass
170
+ - frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass
171
+ - frameworks/compass/stylesheets/compass/utilities/links/_hover_link.sass
172
+ - frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass
173
+ - frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass
174
+ - frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass
175
+ - frameworks/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass
176
+ - frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass
177
+ - frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass
178
+ - frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass
179
+ - frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass
180
+ - frameworks/compass/templates/project/ie.sass
181
+ - frameworks/compass/templates/project/manifest.rb
182
+ - frameworks/compass/templates/project/print.sass
183
+ - frameworks/compass/templates/project/screen.sass
184
+ - frameworks/compass.rb
185
+ - frameworks/yui/COPYRIGHT
186
+ - frameworks/yui/stylesheets/_yui.sass
187
+ - frameworks/yui/stylesheets/yui/modules/_base.sass
188
+ - frameworks/yui/stylesheets/yui/modules/_fonts.sass
189
+ - frameworks/yui/stylesheets/yui/modules/_grids.sass
190
+ - frameworks/yui/templates/project/manifest.rb
191
+ - frameworks/yui/templates/project/screen.sass
192
+ - frameworks/yui.rb
193
+ - lib/compass/actions.rb
194
+ - lib/compass/commands/base.rb
195
+ - lib/compass/commands/create_project.rb
196
+ - lib/compass/commands/list_frameworks.rb
197
+ - lib/compass/commands/print_version.rb
198
+ - lib/compass/commands/project_base.rb
199
+ - lib/compass/commands/update_project.rb
200
+ - lib/compass/commands/watch_project.rb
201
+ - lib/compass/compiler.rb
202
+ - lib/compass/configuration.rb
203
+ - lib/compass/core_ext.rb
204
+ - lib/compass/errors.rb
205
+ - lib/compass/exec.rb
206
+ - lib/compass/frameworks.rb
207
+ - lib/compass/installers/base.rb
208
+ - lib/compass/installers/manifest.rb
209
+ - lib/compass/installers/rails.rb
210
+ - lib/compass/installers/stand_alone.rb
211
+ - lib/compass/installers.rb
212
+ - lib/compass/logger.rb
213
+ - lib/compass/merb.rb
214
+ - lib/compass/test_case.rb
215
+ - lib/compass/validate/COPYRIGHT.html
216
+ - lib/compass/validate/css-validator-javadoc.jar
217
+ - lib/compass/validate/css-validator.jar
218
+ - lib/compass/validate/jigsaw.jar
219
+ - lib/compass/validate/JIGSAW_COPYRIGHT
220
+ - lib/compass/validate/README.html
221
+ - lib/compass/validate/xerces.jar
222
+ - lib/compass/validate/XERCES_COPYING.txt
223
+ - lib/compass/validate.rb
224
+ - lib/compass/validator.rb
225
+ - lib/compass/version.rb
226
+ - lib/compass.rb
227
+ - lib/sass_extensions.rb
228
+ - Manifest
229
+ - Rakefile
230
+ - README.markdown
231
+ - test/command_line_test.rb
232
+ - test/compass_test.rb
233
+ - test/fixtures/stylesheets/blueprint/css/typography.css
234
+ - test/fixtures/stylesheets/blueprint/sass/ie.sass
235
+ - test/fixtures/stylesheets/blueprint/sass/print.sass
236
+ - test/fixtures/stylesheets/blueprint/sass/screen.sass
237
+ - test/fixtures/stylesheets/blueprint/sass/typography.sass
238
+ - test/fixtures/stylesheets/compass/css/layout.css
239
+ - test/fixtures/stylesheets/compass/css/print.css
240
+ - test/fixtures/stylesheets/compass/css/reset.css
241
+ - test/fixtures/stylesheets/compass/css/utilities.css
242
+ - test/fixtures/stylesheets/compass/sass/layout.sass
243
+ - test/fixtures/stylesheets/compass/sass/print.sass
244
+ - test/fixtures/stylesheets/compass/sass/reset.sass
245
+ - test/fixtures/stylesheets/compass/sass/utilities.sass
246
+ - test/fixtures/stylesheets/yui/css/mixins.css
247
+ - test/fixtures/stylesheets/yui/sass/base.sass
248
+ - test/fixtures/stylesheets/yui/sass/fonts.sass
249
+ - test/fixtures/stylesheets/yui/sass/grids.sass
250
+ - test/fixtures/stylesheets/yui/sass/mixins.sass
251
+ - test/sass_extensions_test.rb
252
+ - test/test_helper.rb
253
+ - VERSION
254
+ - test/configuration_test.rb
255
+ has_rdoc: false
256
+ homepage: http://github.com/chriseppstein/compass
257
+ post_install_message:
258
+ rdoc_options:
259
+ - --line-numbers
260
+ - --inline-source
261
+ - --title
262
+ - Compass
263
+ - --main
264
+ - README.markdown
265
+ require_paths:
266
+ - lib
267
+ required_ruby_version: !ruby/object:Gem::Requirement
268
+ requirements:
269
+ - - ">="
270
+ - !ruby/object:Gem::Version
271
+ version: "0"
272
+ version:
273
+ required_rubygems_version: !ruby/object:Gem::Requirement
274
+ requirements:
275
+ - - ">="
276
+ - !ruby/object:Gem::Version
277
+ version: "1.2"
278
+ version:
279
+ requirements: []
280
+
281
+ rubyforge_project: compass
282
+ rubygems_version: 1.2.0
283
+ signing_key:
284
+ specification_version: 2
285
+ summary: Sass-Based CSS Meta-Framework.
286
+ test_files:
287
+ - test/command_line_test.rb
288
+ - test/compass_test.rb
289
+ - test/configuration_test.rb
290
+ - test/sass_extensions_test.rb
291
+ - test/test_helper.rb