compass 0.11.7 → 0.12.alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (207) hide show
  1. data/Rakefile +10 -0
  2. data/VERSION.yml +4 -3
  3. data/bin/compass +1 -5
  4. data/features/command_line.feature +17 -17
  5. data/features/extensions.feature +0 -6
  6. data/features/step_definitions/command_line_steps.rb +1 -2
  7. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +35 -5
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +3 -12
  10. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +11 -14
  12. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +5 -5
  13. data/frameworks/compass/templates/pie/PIE.htc +64 -83
  14. data/lib/compass.rbc +36 -42
  15. data/lib/compass/actions.rb +1 -0
  16. data/lib/compass/actions.rbc +85 -244
  17. data/lib/compass/app_integration.rbc +20 -28
  18. data/lib/compass/app_integration/merb.rbc +4 -8
  19. data/lib/compass/app_integration/rails.rb +22 -5
  20. data/lib/compass/app_integration/rails.rbc +142 -658
  21. data/lib/compass/app_integration/rails/actionpack2x.rb +10 -0
  22. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/action_controller.rb +0 -0
  23. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/sass_plugin.rb +0 -0
  24. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/urls.rb +0 -0
  25. data/lib/compass/app_integration/rails/actionpack30.rb +11 -0
  26. data/lib/compass/app_integration/rails/{actionpack3 → actionpack30}/railtie.rb +0 -0
  27. data/lib/compass/app_integration/rails/actionpack31.rb +5 -0
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +5 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +89 -0
  30. data/lib/compass/app_integration/rails/configuration_defaults.rb +54 -14
  31. data/lib/compass/app_integration/rails/configuration_defaults.rbc +324 -1081
  32. data/lib/compass/app_integration/rails/installer.rbc +61 -145
  33. data/lib/compass/app_integration/rails/runtime.rb +6 -16
  34. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  35. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  36. data/lib/compass/app_integration/stand_alone/installer.rbc +32 -52
  37. data/lib/compass/browser_support.rbc +23 -35
  38. data/lib/compass/commands/clean_project.rb +1 -1
  39. data/lib/compass/commands/project_stats.rb +7 -7
  40. data/lib/compass/commands/sprite.rb +4 -3
  41. data/lib/compass/compiler.rb +2 -2
  42. data/lib/compass/compiler.rbc +398 -591
  43. data/lib/compass/configuration.rb +2 -0
  44. data/lib/compass/configuration.rbc +78 -134
  45. data/lib/compass/configuration/adapters.rbc +40 -98
  46. data/lib/compass/configuration/comments.rb +5 -1
  47. data/lib/compass/configuration/comments.rbc +51 -132
  48. data/lib/compass/configuration/data.rb +26 -10
  49. data/lib/compass/configuration/data.rbc +536 -526
  50. data/lib/compass/configuration/defaults.rb +24 -1
  51. data/lib/compass/configuration/defaults.rbc +187 -762
  52. data/lib/compass/configuration/file_data.rb +0 -22
  53. data/lib/compass/configuration/file_data.rbc +125 -37
  54. data/lib/compass/configuration/helpers.rb +9 -8
  55. data/lib/compass/configuration/helpers.rbc +153 -433
  56. data/lib/compass/configuration/inheritance.rb +13 -0
  57. data/lib/compass/configuration/inheritance.rbc +165 -412
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rb +1 -0
  60. data/lib/compass/configuration/serialization.rbc +84 -151
  61. data/lib/compass/dependencies.rbc +4 -16
  62. data/lib/compass/errors.rbc +5 -5
  63. data/lib/compass/frameworks.rb +4 -10
  64. data/lib/compass/frameworks.rbc +66 -118
  65. data/lib/compass/quick_cache.rbc +8 -12
  66. data/lib/compass/sass_extensions.rbc +4 -8
  67. data/lib/compass/sass_extensions/functions.rbc +57 -90
  68. data/lib/compass/sass_extensions/functions/colors.rbc +18 -22
  69. data/lib/compass/sass_extensions/functions/constants.rbc +25 -45
  70. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +36 -48
  71. data/lib/compass/sass_extensions/functions/display.rbc +107 -341
  72. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  73. data/lib/compass/sass_extensions/functions/font_files.rbc +125 -542
  74. data/lib/compass/sass_extensions/functions/gradient_support.rbc +167 -379
  75. data/lib/compass/sass_extensions/functions/image_size.rb +10 -2
  76. data/lib/compass/sass_extensions/functions/image_size.rbc +400 -715
  77. data/lib/compass/sass_extensions/functions/inline_image.rbc +98 -152
  78. data/lib/compass/sass_extensions/functions/lists.rb +0 -5
  79. data/lib/compass/sass_extensions/functions/lists.rbc +39 -75
  80. data/lib/compass/sass_extensions/functions/selectors.rbc +28 -36
  81. data/lib/compass/sass_extensions/functions/sprites.rb +5 -7
  82. data/lib/compass/sass_extensions/functions/sprites.rbc +233 -255
  83. data/lib/compass/sass_extensions/functions/trig.rb +2 -1
  84. data/lib/compass/sass_extensions/functions/trig.rbc +51 -53
  85. data/lib/compass/sass_extensions/functions/urls.rb +171 -80
  86. data/lib/compass/sass_extensions/functions/urls.rbc +1051 -3158
  87. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  88. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +47 -63
  89. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +16 -36
  90. data/lib/compass/sass_extensions/sprites.rb +3 -1
  91. data/lib/compass/sass_extensions/sprites.rbc +13 -93
  92. data/lib/compass/sass_extensions/sprites/engines.rbc +6 -615
  93. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +94 -260
  94. data/lib/compass/sass_extensions/sprites/image.rb +23 -11
  95. data/lib/compass/sass_extensions/sprites/image.rbc +313 -691
  96. data/lib/compass/sass_extensions/sprites/image_row.rb +47 -0
  97. data/lib/compass/sass_extensions/sprites/layout_methods.rb +117 -0
  98. data/lib/compass/sass_extensions/sprites/row_fitter.rb +86 -0
  99. data/lib/compass/sass_extensions/sprites/sprite_map.rb +18 -4
  100. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +3635 -708
  101. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +5 -17
  102. data/lib/compass/sprite_importer.rb +38 -62
  103. data/lib/compass/sprite_importer.rbc +1495 -1125
  104. data/lib/compass/util.rbc +11 -19
  105. data/lib/compass/version.rbc +25 -53
  106. data/test/fixtures/sprites/public/images/image_row/large.png +0 -0
  107. data/test/fixtures/sprites/public/images/image_row/large_square.png +0 -0
  108. data/test/fixtures/sprites/public/images/image_row/medium.png +0 -0
  109. data/test/fixtures/sprites/public/images/image_row/small.png +0 -0
  110. data/test/fixtures/sprites/public/images/image_row/tall.png +0 -0
  111. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  112. data/test/fixtures/stylesheets/compass/css/reset.css +1 -0
  113. data/test/fixtures/stylesheets/compass/css/sprites.css +248 -248
  114. data/test/fixtures/stylesheets/compass/images/flag-s8c3c755a68.png +0 -0
  115. data/test/integrations/sprites_test.rb +115 -3
  116. data/test/test_helper.rb +29 -1
  117. data/test/tmp/compass_rails/public/images/selectors-sef52c5c63a.png +0 -0
  118. data/test/units/configuration_test.rb +2 -5
  119. data/test/units/rails_configuration_test.rb +50 -0
  120. data/test/units/sass_extensions_test.rb +17 -5
  121. data/test/units/sprites/image_row_test.rb +57 -0
  122. data/test/units/sprites/image_test.rb +53 -45
  123. data/test/units/sprites/importer_test.rb +31 -12
  124. data/test/units/sprites/row_fitter_test.rb +66 -0
  125. data/test/units/sprites/sprite_command_test.rb +1 -11
  126. data/test/units/sprites/sprite_map_test.rb +122 -16
  127. metadata +38 -149
  128. data/bin/compass.compiled.rbc +0 -707
  129. data/examples/compass/compass_app_log.txt +0 -6
  130. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +0 -19
  131. data/lib/compass/commands.rbc +0 -307
  132. data/lib/compass/commands/base.rbc +0 -1044
  133. data/lib/compass/commands/clean_project.rbc +0 -1856
  134. data/lib/compass/commands/create_project.rbc +0 -2691
  135. data/lib/compass/commands/default.rbc +0 -1677
  136. data/lib/compass/commands/generate_grid_background.rbc +0 -1939
  137. data/lib/compass/commands/help.rbc +0 -1921
  138. data/lib/compass/commands/imports.rbc +0 -969
  139. data/lib/compass/commands/installer_command.rbc +0 -807
  140. data/lib/compass/commands/interactive.rbc +0 -1341
  141. data/lib/compass/commands/list_frameworks.rbc +0 -1111
  142. data/lib/compass/commands/print_version.rbc +0 -2478
  143. data/lib/compass/commands/project_base.rbc +0 -2085
  144. data/lib/compass/commands/project_stats.rbc +0 -4202
  145. data/lib/compass/commands/registry.rbc +0 -1350
  146. data/lib/compass/commands/sprite.rbc +0 -2212
  147. data/lib/compass/commands/stamp_pattern.rbc +0 -2011
  148. data/lib/compass/commands/unpack_extension.rbc +0 -2348
  149. data/lib/compass/commands/update_project.rbc +0 -3002
  150. data/lib/compass/commands/validate_project.rbc +0 -1686
  151. data/lib/compass/commands/watch_project.rbc +0 -4155
  152. data/lib/compass/commands/write_configuration.rbc +0 -2896
  153. data/lib/compass/exec.rbc +0 -500
  154. data/lib/compass/exec/command_option_parser.rbc +0 -676
  155. data/lib/compass/exec/global_options_parser.rbc +0 -1306
  156. data/lib/compass/exec/helpers.rbc +0 -758
  157. data/lib/compass/exec/project_options_parser.rbc +0 -1515
  158. data/lib/compass/exec/sub_command_ui.rbc +0 -1191
  159. data/lib/compass/grid_builder.rbc +0 -0
  160. data/lib/compass/installers.rbc +0 -152
  161. data/lib/compass/installers/bare_installer.rbc +0 -939
  162. data/lib/compass/installers/base.rbc +0 -4427
  163. data/lib/compass/installers/manifest.rbc +0 -3335
  164. data/lib/compass/installers/manifest_installer.rbc +0 -1591
  165. data/lib/compass/installers/template_context.rbc +0 -1030
  166. data/lib/compass/logger.rbc +0 -2317
  167. data/lib/compass/sass_extensions/functions/env.rbc +0 -299
  168. data/lib/compass/sass_extensions/sprites/image_methods.rbc +0 -900
  169. data/lib/compass/sass_extensions/sprites/image_row.rbc +0 -1168
  170. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +0 -3236
  171. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +0 -2067
  172. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +0 -3190
  173. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +0 -1
  174. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +0 -3
  175. data/test/fixtures/stylesheets/compass/css/user-interface.css +0 -5
  176. data/test/fixtures/stylesheets/compass/images/flag-s03c3b29b35.png +0 -0
  177. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +0 -5
  178. data/test/fixtures/stylesheets/envtest/tmp/env.css +0 -2
  179. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +0 -25
  180. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +0 -5
  181. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +0 -3
  182. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +0 -6
  183. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +0 -5
  184. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +0 -3
  185. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +0 -68
  186. data/test/helpers/command_line.rbc +0 -2820
  187. data/test/helpers/diff.rbc +0 -1104
  188. data/test/helpers/io.rbc +0 -962
  189. data/test/helpers/rails.rbc +0 -1116
  190. data/test/helpers/test_case.rbc +0 -1255
  191. data/test/integrations/compass_test.rbc +0 -6589
  192. data/test/integrations/rails_integration_test.rbc +0 -1342
  193. data/test/integrations/sprites_test.rbc +0 -6192
  194. data/test/test_helper.rbc +0 -1694
  195. data/test/units/actions_test.rbc +0 -644
  196. data/test/units/command_line_test.rbc +0 -1532
  197. data/test/units/compass_png_test.rbc +0 -0
  198. data/test/units/configuration_test.rbc +0 -3833
  199. data/test/units/rails_configuration_test.rbc +0 -1032
  200. data/test/units/sass_extensions_test.rbc +0 -3586
  201. data/test/units/sprites/engine_test.rbc +0 -962
  202. data/test/units/sprites/image_row_test.rbc +0 -1578
  203. data/test/units/sprites/image_test.rbc +0 -2836
  204. data/test/units/sprites/importer_test.rbc +0 -2620
  205. data/test/units/sprites/row_fitter_test.rbc +0 -1479
  206. data/test/units/sprites/sprite_command_test.rbc +0 -1147
  207. data/test/units/sprites/sprite_map_test.rbc +0 -6515
Binary file
@@ -1,152 +0,0 @@
1
- !RBIX
2
- 9595534255132031488
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 25
13
- 7
14
- 0
15
- 64
16
- 7
17
- 1
18
- 64
19
- 7
20
- 2
21
- 64
22
- 7
23
- 3
24
- 64
25
- 7
26
- 4
27
- 64
28
- 35
29
- 5
30
- 56
31
- 5
32
- 50
33
- 6
34
- 0
35
- 15
36
- 2
37
- 11
38
- I
39
- 5
40
- I
41
- 0
42
- I
43
- 0
44
- I
45
- 0
46
- n
47
- p
48
- 7
49
- s
50
- 8
51
- manifest
52
- s
53
- 16
54
- template_context
55
- s
56
- 4
57
- base
58
- s
59
- 18
60
- manifest_installer
61
- s
62
- 14
63
- bare_installer
64
- M
65
- 1
66
- p
67
- 2
68
- x
69
- 9
70
- for_block
71
- t
72
- n
73
- x
74
- 9
75
- __block__
76
- i
77
- 19
78
- 57
79
- 19
80
- 0
81
- 15
82
- 5
83
- 7
84
- 0
85
- 20
86
- 0
87
- 47
88
- 101
89
- 1
90
- 63
91
- 2
92
- 47
93
- 49
94
- 2
95
- 1
96
- 11
97
- I
98
- 5
99
- I
100
- 1
101
- I
102
- 1
103
- I
104
- 1
105
- n
106
- p
107
- 3
108
- s
109
- 19
110
- compass/installers/
111
- x
112
- 4
113
- to_s
114
- x
115
- 7
116
- require
117
- p
118
- 5
119
- I
120
- 0
121
- I
122
- 1
123
- I
124
- 4
125
- I
126
- 2
127
- I
128
- 13
129
- x
130
- 57
131
- /Users/crispee/Projects/compass/lib/compass/installers.rb
132
- p
133
- 1
134
- x
135
- 1
136
- f
137
- x
138
- 4
139
- each
140
- p
141
- 3
142
- I
143
- 0
144
- I
145
- 1
146
- I
147
- 19
148
- x
149
- 57
150
- /Users/crispee/Projects/compass/lib/compass/installers.rb
151
- p
152
- 0
@@ -1,939 +0,0 @@
1
- !RBIX
2
- 9595534255132031488
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 28
13
- 99
14
- 7
15
- 0
16
- 65
17
- 49
18
- 1
19
- 2
20
- 13
21
- 99
22
- 12
23
- 7
24
- 2
25
- 12
26
- 7
27
- 3
28
- 12
29
- 65
30
- 12
31
- 49
32
- 4
33
- 4
34
- 15
35
- 49
36
- 2
37
- 0
38
- 15
39
- 2
40
- 11
41
- I
42
- 6
43
- I
44
- 0
45
- I
46
- 0
47
- I
48
- 0
49
- n
50
- p
51
- 5
52
- x
53
- 7
54
- Compass
55
- x
56
- 11
57
- open_module
58
- x
59
- 15
60
- __module_init__
61
- M
62
- 1
63
- n
64
- n
65
- x
66
- 7
67
- Compass
68
- i
69
- 28
70
- 5
71
- 66
72
- 99
73
- 7
74
- 0
75
- 65
76
- 49
77
- 1
78
- 2
79
- 13
80
- 99
81
- 12
82
- 7
83
- 2
84
- 12
85
- 7
86
- 3
87
- 12
88
- 65
89
- 12
90
- 49
91
- 4
92
- 4
93
- 15
94
- 49
95
- 2
96
- 0
97
- 11
98
- I
99
- 6
100
- I
101
- 0
102
- I
103
- 0
104
- I
105
- 0
106
- n
107
- p
108
- 5
109
- x
110
- 10
111
- Installers
112
- x
113
- 11
114
- open_module
115
- x
116
- 15
117
- __module_init__
118
- M
119
- 1
120
- n
121
- n
122
- x
123
- 10
124
- Installers
125
- i
126
- 31
127
- 5
128
- 66
129
- 99
130
- 7
131
- 0
132
- 45
133
- 1
134
- 2
135
- 65
136
- 49
137
- 3
138
- 3
139
- 13
140
- 99
141
- 12
142
- 7
143
- 4
144
- 12
145
- 7
146
- 5
147
- 12
148
- 65
149
- 12
150
- 49
151
- 6
152
- 4
153
- 15
154
- 49
155
- 4
156
- 0
157
- 11
158
- I
159
- 6
160
- I
161
- 0
162
- I
163
- 0
164
- I
165
- 0
166
- n
167
- p
168
- 7
169
- x
170
- 13
171
- BareInstaller
172
- x
173
- 4
174
- Base
175
- n
176
- x
177
- 10
178
- open_class
179
- x
180
- 14
181
- __class_init__
182
- M
183
- 1
184
- n
185
- n
186
- x
187
- 13
188
- BareInstaller
189
- i
190
- 86
191
- 5
192
- 66
193
- 99
194
- 7
195
- 0
196
- 7
197
- 1
198
- 65
199
- 67
200
- 49
201
- 2
202
- 0
203
- 49
204
- 3
205
- 4
206
- 15
207
- 99
208
- 7
209
- 4
210
- 7
211
- 5
212
- 65
213
- 67
214
- 49
215
- 2
216
- 0
217
- 49
218
- 3
219
- 4
220
- 15
221
- 99
222
- 7
223
- 6
224
- 7
225
- 7
226
- 65
227
- 67
228
- 49
229
- 2
230
- 0
231
- 49
232
- 3
233
- 4
234
- 15
235
- 99
236
- 7
237
- 8
238
- 7
239
- 9
240
- 65
241
- 67
242
- 49
243
- 2
244
- 0
245
- 49
246
- 3
247
- 4
248
- 15
249
- 99
250
- 7
251
- 10
252
- 7
253
- 11
254
- 65
255
- 67
256
- 49
257
- 2
258
- 0
259
- 49
260
- 3
261
- 4
262
- 15
263
- 99
264
- 7
265
- 12
266
- 7
267
- 13
268
- 65
269
- 67
270
- 49
271
- 2
272
- 0
273
- 49
274
- 3
275
- 4
276
- 11
277
- I
278
- 5
279
- I
280
- 0
281
- I
282
- 0
283
- I
284
- 0
285
- n
286
- p
287
- 14
288
- x
289
- 23
290
- completed_configuration
291
- M
292
- 1
293
- n
294
- n
295
- x
296
- 23
297
- completed_configuration
298
- i
299
- 2
300
- 1
301
- 11
302
- I
303
- 1
304
- I
305
- 0
306
- I
307
- 0
308
- I
309
- 0
310
- n
311
- p
312
- 0
313
- p
314
- 5
315
- I
316
- -1
317
- I
318
- 5
319
- I
320
- 0
321
- I
322
- 6
323
- I
324
- 2
325
- x
326
- 72
327
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
328
- p
329
- 0
330
- x
331
- 17
332
- method_visibility
333
- x
334
- 15
335
- add_defn_method
336
- x
337
- 4
338
- init
339
- M
340
- 1
341
- n
342
- n
343
- x
344
- 4
345
- init
346
- i
347
- 34
348
- 5
349
- 5
350
- 7
351
- 0
352
- 64
353
- 47
354
- 49
355
- 1
356
- 1
357
- 47
358
- 49
359
- 2
360
- 1
361
- 15
362
- 5
363
- 5
364
- 45
365
- 3
366
- 4
367
- 49
368
- 5
369
- 0
370
- 49
371
- 6
372
- 0
373
- 47
374
- 49
375
- 1
376
- 1
377
- 47
378
- 49
379
- 2
380
- 1
381
- 11
382
- I
383
- 3
384
- I
385
- 0
386
- I
387
- 0
388
- I
389
- 0
390
- n
391
- p
392
- 7
393
- s
394
- 0
395
-
396
- x
397
- 9
398
- targetize
399
- x
400
- 9
401
- directory
402
- x
403
- 7
404
- Compass
405
- n
406
- x
407
- 13
408
- configuration
409
- x
410
- 8
411
- sass_dir
412
- p
413
- 7
414
- I
415
- -1
416
- I
417
- 9
418
- I
419
- 0
420
- I
421
- a
422
- I
423
- e
424
- I
425
- b
426
- I
427
- 22
428
- x
429
- 72
430
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
431
- p
432
- 0
433
- x
434
- 7
435
- prepare
436
- M
437
- 1
438
- n
439
- n
440
- x
441
- 7
442
- prepare
443
- i
444
- 2
445
- 1
446
- 11
447
- I
448
- 1
449
- I
450
- 0
451
- I
452
- 0
453
- I
454
- 0
455
- n
456
- p
457
- 0
458
- p
459
- 5
460
- I
461
- -1
462
- I
463
- e
464
- I
465
- 0
466
- I
467
- f
468
- I
469
- 2
470
- x
471
- 72
472
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
473
- p
474
- 0
475
- x
476
- 7
477
- install
478
- M
479
- 1
480
- n
481
- n
482
- x
483
- 7
484
- install
485
- i
486
- 28
487
- 20
488
- 0
489
- 13
490
- 10
491
- 16
492
- 15
493
- 5
494
- 7
495
- 0
496
- 64
497
- 47
498
- 49
499
- 1
500
- 1
501
- 19
502
- 0
503
- 15
504
- 5
505
- 20
506
- 0
507
- 5
508
- 48
509
- 2
510
- 47
511
- 49
512
- 3
513
- 2
514
- 11
515
- I
516
- 4
517
- I
518
- 1
519
- I
520
- 0
521
- I
522
- 0
523
- n
524
- p
525
- 4
526
- s
527
- 9
528
- config.rb
529
- x
530
- 9
531
- targetize
532
- x
533
- 15
534
- config_contents
535
- x
536
- 10
537
- write_file
538
- p
539
- 7
540
- I
541
- -1
542
- I
543
- 11
544
- I
545
- 0
546
- I
547
- 12
548
- I
549
- 11
550
- I
551
- 13
552
- I
553
- 1c
554
- x
555
- 72
556
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
557
- p
558
- 1
559
- x
560
- 11
561
- config_file
562
- x
563
- 15
564
- config_contents
565
- M
566
- 1
567
- n
568
- n
569
- x
570
- 15
571
- config_contents
572
- i
573
- 83
574
- 29
575
- 47
576
- 1
577
- 26
578
- 93
579
- 0
580
- 15
581
- 45
582
- 0
583
- 1
584
- 49
585
- 2
586
- 0
587
- 49
588
- 3
589
- 0
590
- 1
591
- 17
592
- 2
593
- 19
594
- 0
595
- 15
596
- 45
597
- 0
598
- 4
599
- 49
600
- 2
601
- 0
602
- 12
603
- 49
604
- 5
605
- 1
606
- 15
607
- 2
608
- 15
609
- 45
610
- 0
611
- 6
612
- 49
613
- 2
614
- 0
615
- 49
616
- 7
617
- 0
618
- 30
619
- 8
620
- 66
621
- 26
622
- 45
623
- 0
624
- 8
625
- 49
626
- 2
627
- 0
628
- 20
629
- 0
630
- 13
631
- 18
632
- 2
633
- 49
634
- 5
635
- 1
636
- 15
637
- 15
638
- 27
639
- 34
640
- 45
641
- 0
642
- 9
643
- 49
644
- 2
645
- 0
646
- 20
647
- 0
648
- 13
649
- 18
650
- 2
651
- 49
652
- 5
653
- 1
654
- 15
655
- 15
656
- 11
657
- I
658
- 6
659
- I
660
- 1
661
- I
662
- 0
663
- I
664
- 0
665
- n
666
- p
667
- 10
668
- x
669
- 7
670
- Compass
671
- n
672
- x
673
- 13
674
- configuration
675
- x
676
- 12
677
- project_path
678
- n
679
- x
680
- 13
681
- project_path=
682
- n
683
- x
684
- 9
685
- serialize
686
- n
687
- n
688
- p
689
- 11
690
- I
691
- -1
692
- I
693
- 16
694
- I
695
- 0
696
- I
697
- 17
698
- I
699
- 23
700
- I
701
- 18
702
- I
703
- 30
704
- I
705
- 1a
706
- I
707
- 42
708
- I
709
- 1a
710
- I
711
- 53
712
- x
713
- 72
714
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
715
- p
716
- 1
717
- x
718
- 12
719
- project_path
720
- x
721
- 8
722
- finalize
723
- M
724
- 1
725
- n
726
- n
727
- x
728
- 8
729
- finalize
730
- i
731
- 38
732
- 23
733
- 0
734
- 10
735
- 14
736
- 44
737
- 43
738
- 0
739
- 78
740
- 49
741
- 1
742
- 1
743
- 19
744
- 0
745
- 15
746
- 5
747
- 7
748
- 2
749
- 45
750
- 3
751
- 4
752
- 49
753
- 5
754
- 0
755
- 49
756
- 6
757
- 0
758
- 47
759
- 101
760
- 7
761
- 7
762
- 8
763
- 63
764
- 3
765
- 47
766
- 49
767
- 9
768
- 1
769
- 11
770
- I
771
- 5
772
- I
773
- 1
774
- I
775
- 0
776
- I
777
- 1
778
- n
779
- p
780
- 10
781
- x
782
- 4
783
- Hash
784
- x
785
- 16
786
- new_from_literal
787
- s
788
- 168
789
-
790
- *********************************************************************
791
- Congratulations! Your compass project has been created.
792
-
793
- You may now add sass stylesheets to the
794
- x
795
- 7
796
- Compass
797
- n
798
- x
799
- 13
800
- configuration
801
- x
802
- 8
803
- sass_dir
804
- x
805
- 4
806
- to_s
807
- s
808
- 688
809
- subdirectory of your project.
810
-
811
- Sass files beginning with an underscore are called partials and won't be
812
- compiled to CSS, but they can be imported into other sass stylesheets.
813
-
814
- You can configure your project by editing the config.rb configuration file.
815
-
816
- You must compile your sass stylesheets into CSS when they change.
817
- This can be done in one of the following ways:
818
- 1. To compile on demand:
819
- compass compile [path/to/project]
820
- 2. To monitor your project for changes and automatically recompile:
821
- compass watch [path/to/project]
822
-
823
- More Resources:
824
- * Website: http://compass-style.org/
825
- * Sass: http://sass-lang.com
826
- * Community: http://groups.google.com/group/compass-users/
827
-
828
- x
829
- 4
830
- puts
831
- p
832
- 9
833
- I
834
- -1
835
- I
836
- 1d
837
- I
838
- e
839
- I
840
- 1e
841
- I
842
- f
843
- I
844
- 23
845
- I
846
- 21
847
- I
848
- 1e
849
- I
850
- 26
851
- x
852
- 72
853
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
854
- p
855
- 1
856
- x
857
- 7
858
- options
859
- p
860
- 13
861
- I
862
- 2
863
- I
864
- 5
865
- I
866
- 10
867
- I
868
- 9
869
- I
870
- 1e
871
- I
872
- e
873
- I
874
- 2c
875
- I
876
- 11
877
- I
878
- 3a
879
- I
880
- 16
881
- I
882
- 48
883
- I
884
- 1d
885
- I
886
- 56
887
- x
888
- 72
889
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
890
- p
891
- 0
892
- x
893
- 13
894
- attach_method
895
- p
896
- 3
897
- I
898
- 2
899
- I
900
- 4
901
- I
902
- 1f
903
- x
904
- 72
905
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
906
- p
907
- 0
908
- x
909
- 13
910
- attach_method
911
- p
912
- 3
913
- I
914
- 2
915
- I
916
- 2
917
- I
918
- 1c
919
- x
920
- 72
921
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
922
- p
923
- 0
924
- x
925
- 13
926
- attach_method
927
- p
928
- 3
929
- I
930
- 0
931
- I
932
- 1
933
- I
934
- 1c
935
- x
936
- 72
937
- /Users/crispee/Projects/compass/lib/compass/installers/bare_installer.rb
938
- p
939
- 0