compass 0.12.rc.1 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/VERSION.yml +1 -2
  2. data/bin/compass.compiled.rbc +707 -0
  3. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  4. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  5. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  6. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  7. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  8. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf +0 -0
  9. data/features/command_line.feature +14 -15
  10. data/frameworks/compass/stylesheets/compass/_css3.scss +1 -2
  11. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +4 -4
  12. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +59 -38
  13. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +3 -5
  14. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +12 -4
  15. data/frameworks/compass/stylesheets/compass/utilities/_sprites.scss +1 -0
  16. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss +1 -1
  17. data/lib/compass.rb +2 -0
  18. data/lib/compass.rbc +796 -0
  19. data/lib/compass/actions.rbc +2736 -0
  20. data/lib/compass/app_integration.rbc +836 -0
  21. data/lib/compass/app_integration/merb.rbc +106 -0
  22. data/lib/compass/app_integration/rails.rbc +2096 -0
  23. data/lib/compass/app_integration/rails/configuration_defaults.rbc +2430 -0
  24. data/lib/compass/app_integration/rails/installer.rbc +3677 -0
  25. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  26. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  27. data/lib/compass/app_integration/stand_alone/installer.rbc +1487 -0
  28. data/lib/compass/browser_support.rbc +1144 -0
  29. data/lib/compass/commands.rbc +307 -0
  30. data/lib/compass/commands/base.rbc +1044 -0
  31. data/lib/compass/commands/clean_project.rbc +1856 -0
  32. data/lib/compass/commands/create_project.rbc +2691 -0
  33. data/lib/compass/commands/default.rbc +1677 -0
  34. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  35. data/lib/compass/commands/help.rbc +1921 -0
  36. data/lib/compass/commands/imports.rbc +969 -0
  37. data/lib/compass/commands/installer_command.rbc +807 -0
  38. data/lib/compass/commands/interactive.rbc +1341 -0
  39. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  40. data/lib/compass/commands/print_version.rbc +2478 -0
  41. data/lib/compass/commands/project_base.rbc +2085 -0
  42. data/lib/compass/commands/project_stats.rb +28 -13
  43. data/lib/compass/commands/project_stats.rbc +4202 -0
  44. data/lib/compass/commands/registry.rbc +1350 -0
  45. data/lib/compass/commands/sprite.rbc +2212 -0
  46. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  47. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  48. data/lib/compass/commands/update_project.rbc +3002 -0
  49. data/lib/compass/commands/validate_project.rbc +1686 -0
  50. data/lib/compass/commands/watch_project.rbc +4155 -0
  51. data/lib/compass/commands/write_configuration.rbc +2896 -0
  52. data/lib/compass/compiler.rb +3 -1
  53. data/lib/compass/compiler.rbc +4913 -0
  54. data/lib/compass/configuration.rbc +1398 -0
  55. data/lib/compass/configuration/adapters.rbc +2088 -0
  56. data/lib/compass/configuration/comments.rbc +843 -0
  57. data/lib/compass/configuration/data.rbc +2633 -0
  58. data/lib/compass/configuration/defaults.rbc +3617 -0
  59. data/lib/compass/configuration/file_data.rbc +643 -0
  60. data/lib/compass/configuration/helpers.rb +1 -4
  61. data/lib/compass/configuration/helpers.rbc +3500 -0
  62. data/lib/compass/configuration/inheritance.rbc +3592 -0
  63. data/lib/compass/configuration/paths.rbc +412 -0
  64. data/lib/compass/configuration/serialization.rbc +1996 -0
  65. data/lib/compass/dependencies.rbc +232 -0
  66. data/lib/compass/errors.rbc +176 -0
  67. data/lib/compass/exec.rbc +500 -0
  68. data/lib/compass/exec/command_option_parser.rbc +676 -0
  69. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  70. data/lib/compass/exec/helpers.rbc +758 -0
  71. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  72. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  73. data/lib/compass/frameworks.rbc +3640 -0
  74. data/lib/compass/grid_builder.rbc +0 -0
  75. data/lib/compass/installers.rbc +152 -0
  76. data/lib/compass/installers/bare_installer.rbc +939 -0
  77. data/lib/compass/installers/base.rbc +4427 -0
  78. data/lib/compass/installers/manifest.rb +1 -1
  79. data/lib/compass/installers/manifest.rbc +3335 -0
  80. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  81. data/lib/compass/installers/template_context.rbc +1030 -0
  82. data/lib/compass/logger.rbc +2317 -0
  83. data/lib/compass/quick_cache.rbc +324 -0
  84. data/lib/compass/sass_extensions.rbc +213 -0
  85. data/lib/compass/sass_extensions/functions.rb +2 -2
  86. data/lib/compass/sass_extensions/functions.rbc +808 -0
  87. data/lib/compass/sass_extensions/functions/colors.rbc +1279 -0
  88. data/lib/compass/sass_extensions/functions/constants.rbc +1921 -0
  89. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1966 -0
  90. data/lib/compass/sass_extensions/functions/display.rbc +1227 -0
  91. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  92. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  93. data/lib/compass/sass_extensions/functions/font_files.rbc +821 -0
  94. data/lib/compass/sass_extensions/functions/gradient_support.rb +18 -7
  95. data/lib/compass/sass_extensions/functions/gradient_support.rbc +14147 -0
  96. data/lib/compass/sass_extensions/functions/image_size.rbc +3152 -0
  97. data/lib/compass/sass_extensions/functions/inline_image.rb +3 -1
  98. data/lib/compass/sass_extensions/functions/inline_image.rbc +1678 -0
  99. data/lib/compass/sass_extensions/functions/lists.rbc +2601 -0
  100. data/lib/compass/sass_extensions/functions/math.rb +63 -0
  101. data/lib/compass/sass_extensions/functions/selectors.rbc +1592 -0
  102. data/lib/compass/sass_extensions/functions/sprites.rbc +3792 -0
  103. data/lib/compass/sass_extensions/functions/trig.rbc +811 -0
  104. data/lib/compass/sass_extensions/functions/urls.rbc +5248 -0
  105. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  106. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2169 -0
  107. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +660 -0
  108. data/lib/compass/sass_extensions/sprites.rbc +363 -0
  109. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  110. data/lib/compass/sass_extensions/sprites/engines.rbc +662 -0
  111. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +1074 -0
  112. data/lib/compass/sass_extensions/sprites/image.rbc +2961 -0
  113. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  114. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  115. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  116. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  117. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +1991 -0
  118. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  119. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  120. data/lib/compass/sprite_importer.rbc +3573 -0
  121. data/lib/compass/stats.rb +5 -0
  122. data/lib/compass/util.rbc +552 -0
  123. data/lib/compass/version.rbc +1245 -0
  124. data/test/fixtures/stylesheets/compass/css/background-clip.css +1 -1
  125. data/test/fixtures/stylesheets/compass/css/gradients.css +19 -369
  126. data/test/fixtures/stylesheets/compass/css/transition.css +44 -1
  127. data/test/fixtures/stylesheets/compass/css/utilities.css +1 -1
  128. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +1 -1
  129. data/test/fixtures/stylesheets/compass/sass/gradients.sass +8 -143
  130. data/test/fixtures/stylesheets/compass/sass/transition.scss +7 -1
  131. data/test/helpers/command_line.rbc +2820 -0
  132. data/test/helpers/diff.rbc +1104 -0
  133. data/test/helpers/io.rbc +962 -0
  134. data/test/helpers/rails.rbc +1116 -0
  135. data/test/helpers/test_case.rbc +1255 -0
  136. data/test/integrations/compass_test.rbc +6589 -0
  137. data/test/integrations/rails_integration_test.rbc +1342 -0
  138. data/test/integrations/sprites_test.rb +4 -4
  139. data/test/integrations/sprites_test.rbc +6192 -0
  140. data/test/test_helper.rbc +1694 -0
  141. data/test/units/actions_test.rbc +644 -0
  142. data/test/units/command_line_test.rbc +1532 -0
  143. data/test/units/compass_module_test.rb +36 -0
  144. data/test/units/compass_png_test.rbc +0 -0
  145. data/test/units/configuration_test.rbc +3833 -0
  146. data/test/units/rails_configuration_test.rbc +1032 -0
  147. data/test/units/sass_extensions_test.rb +13 -1
  148. data/test/units/sass_extensions_test.rbc +3586 -0
  149. data/test/units/sprites/engine_test.rbc +962 -0
  150. data/test/units/sprites/image_row_test.rbc +1578 -0
  151. data/test/units/sprites/image_test.rbc +2836 -0
  152. data/test/units/sprites/importer_test.rb +1 -1
  153. data/test/units/sprites/importer_test.rbc +2620 -0
  154. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  155. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  156. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  157. metadata +161 -15
  158. data/frameworks/compass/stylesheets/compass/css3/_gradient.scss +0 -99
  159. data/lib/compass/sass_extensions/functions/trig.rb +0 -28
@@ -0,0 +1,643 @@
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
+ 13
111
+ Configuration
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
+ 13
124
+ Configuration
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
+ 8
171
+ FileData
172
+ x
173
+ 4
174
+ Data
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
+ 8
188
+ FileData
189
+ i
190
+ 24
191
+ 5
192
+ 66
193
+ 99
194
+ 7
195
+ 0
196
+ 7
197
+ 1
198
+ 65
199
+ 5
200
+ 49
201
+ 2
202
+ 4
203
+ 15
204
+ 99
205
+ 7
206
+ 3
207
+ 7
208
+ 4
209
+ 65
210
+ 5
211
+ 49
212
+ 2
213
+ 4
214
+ 11
215
+ I
216
+ 5
217
+ I
218
+ 0
219
+ I
220
+ 0
221
+ I
222
+ 0
223
+ n
224
+ p
225
+ 5
226
+ x
227
+ 13
228
+ new_from_file
229
+ M
230
+ 1
231
+ n
232
+ n
233
+ x
234
+ 13
235
+ new_from_file
236
+ i
237
+ 51
238
+ 23
239
+ 1
240
+ 10
241
+ 8
242
+ 1
243
+ 19
244
+ 1
245
+ 15
246
+ 5
247
+ 13
248
+ 72
249
+ 0
250
+ 47
251
+ 9
252
+ 29
253
+ 47
254
+ 49
255
+ 1
256
+ 0
257
+ 13
258
+ 20
259
+ 0
260
+ 47
261
+ 49
262
+ 2
263
+ 1
264
+ 15
265
+ 8
266
+ 35
267
+ 20
268
+ 0
269
+ 47
270
+ 49
271
+ 0
272
+ 1
273
+ 19
274
+ 2
275
+ 15
276
+ 20
277
+ 2
278
+ 20
279
+ 1
280
+ 56
281
+ 3
282
+ 50
283
+ 4
284
+ 1
285
+ 15
286
+ 20
287
+ 2
288
+ 11
289
+ I
290
+ 6
291
+ I
292
+ 3
293
+ I
294
+ 1
295
+ I
296
+ 2
297
+ n
298
+ p
299
+ 5
300
+ x
301
+ 3
302
+ new
303
+ x
304
+ 8
305
+ allocate
306
+ x
307
+ 10
308
+ initialize
309
+ M
310
+ 1
311
+ p
312
+ 2
313
+ x
314
+ 9
315
+ for_block
316
+ t
317
+ n
318
+ x
319
+ 13
320
+ new_from_file
321
+ i
322
+ 10
323
+ 21
324
+ 1
325
+ 2
326
+ 21
327
+ 1
328
+ 0
329
+ 49
330
+ 0
331
+ 1
332
+ 11
333
+ I
334
+ 3
335
+ I
336
+ 0
337
+ I
338
+ 0
339
+ I
340
+ 0
341
+ I
342
+ -2
343
+ p
344
+ 1
345
+ x
346
+ 6
347
+ _parse
348
+ p
349
+ 3
350
+ I
351
+ 0
352
+ I
353
+ 7
354
+ I
355
+ a
356
+ x
357
+ 70
358
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
359
+ p
360
+ 0
361
+ x
362
+ 13
363
+ with_defaults
364
+ p
365
+ 9
366
+ I
367
+ -1
368
+ I
369
+ 4
370
+ I
371
+ 8
372
+ I
373
+ 5
374
+ I
375
+ 26
376
+ I
377
+ 6
378
+ I
379
+ 30
380
+ I
381
+ 9
382
+ I
383
+ 33
384
+ x
385
+ 70
386
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
387
+ p
388
+ 3
389
+ x
390
+ 11
391
+ config_file
392
+ x
393
+ 8
394
+ defaults
395
+ x
396
+ 4
397
+ data
398
+ x
399
+ 13
400
+ attach_method
401
+ x
402
+ 15
403
+ new_from_string
404
+ M
405
+ 1
406
+ n
407
+ n
408
+ x
409
+ 15
410
+ new_from_string
411
+ i
412
+ 51
413
+ 23
414
+ 2
415
+ 10
416
+ 8
417
+ 1
418
+ 19
419
+ 2
420
+ 15
421
+ 5
422
+ 13
423
+ 72
424
+ 0
425
+ 47
426
+ 9
427
+ 29
428
+ 47
429
+ 49
430
+ 1
431
+ 0
432
+ 13
433
+ 20
434
+ 1
435
+ 47
436
+ 49
437
+ 2
438
+ 1
439
+ 15
440
+ 8
441
+ 35
442
+ 20
443
+ 1
444
+ 47
445
+ 49
446
+ 0
447
+ 1
448
+ 19
449
+ 3
450
+ 15
451
+ 20
452
+ 3
453
+ 20
454
+ 2
455
+ 56
456
+ 3
457
+ 50
458
+ 4
459
+ 1
460
+ 15
461
+ 20
462
+ 3
463
+ 11
464
+ I
465
+ 7
466
+ I
467
+ 4
468
+ I
469
+ 2
470
+ I
471
+ 3
472
+ n
473
+ p
474
+ 5
475
+ x
476
+ 3
477
+ new
478
+ x
479
+ 8
480
+ allocate
481
+ x
482
+ 10
483
+ initialize
484
+ M
485
+ 1
486
+ p
487
+ 2
488
+ x
489
+ 9
490
+ for_block
491
+ t
492
+ n
493
+ x
494
+ 15
495
+ new_from_string
496
+ i
497
+ 13
498
+ 21
499
+ 1
500
+ 3
501
+ 21
502
+ 1
503
+ 0
504
+ 21
505
+ 1
506
+ 1
507
+ 49
508
+ 0
509
+ 2
510
+ 11
511
+ I
512
+ 4
513
+ I
514
+ 0
515
+ I
516
+ 0
517
+ I
518
+ 0
519
+ I
520
+ -2
521
+ p
522
+ 1
523
+ x
524
+ 12
525
+ parse_string
526
+ p
527
+ 3
528
+ I
529
+ 0
530
+ I
531
+ f
532
+ I
533
+ d
534
+ x
535
+ 70
536
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
537
+ p
538
+ 0
539
+ x
540
+ 13
541
+ with_defaults
542
+ p
543
+ 9
544
+ I
545
+ -1
546
+ I
547
+ c
548
+ I
549
+ 8
550
+ I
551
+ d
552
+ I
553
+ 26
554
+ I
555
+ e
556
+ I
557
+ 30
558
+ I
559
+ 11
560
+ I
561
+ 33
562
+ x
563
+ 70
564
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
565
+ p
566
+ 4
567
+ x
568
+ 8
569
+ contents
570
+ x
571
+ 8
572
+ filename
573
+ x
574
+ 8
575
+ defaults
576
+ x
577
+ 4
578
+ data
579
+ p
580
+ 5
581
+ I
582
+ 2
583
+ I
584
+ 4
585
+ I
586
+ d
587
+ I
588
+ c
589
+ I
590
+ 18
591
+ x
592
+ 70
593
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
594
+ p
595
+ 0
596
+ x
597
+ 13
598
+ attach_method
599
+ p
600
+ 3
601
+ I
602
+ 2
603
+ I
604
+ 3
605
+ I
606
+ 1f
607
+ x
608
+ 70
609
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
610
+ p
611
+ 0
612
+ x
613
+ 13
614
+ attach_method
615
+ p
616
+ 3
617
+ I
618
+ 2
619
+ I
620
+ 2
621
+ I
622
+ 1c
623
+ x
624
+ 70
625
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
626
+ p
627
+ 0
628
+ x
629
+ 13
630
+ attach_method
631
+ p
632
+ 3
633
+ I
634
+ 0
635
+ I
636
+ 1
637
+ I
638
+ 1c
639
+ x
640
+ 70
641
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
642
+ p
643
+ 0