compass 0.11.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/Rakefile +1 -15
  2. data/VERSION.yml +1 -1
  3. data/features/command_line.feature +2 -0
  4. data/features/extensions.feature +2 -1
  5. data/features/step_definitions/command_line_steps.rb +7 -1
  6. data/frameworks/compass/stylesheets/compass/_support.scss +6 -8
  7. data/frameworks/compass/stylesheets/compass/css3/_images.scss +2 -0
  8. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +4 -3
  9. data/lib/compass.rb +7 -1
  10. data/lib/compass.rbc +714 -0
  11. data/lib/compass/actions.rbc +2334 -0
  12. data/lib/compass/app_integration.rbc +828 -0
  13. data/lib/compass/app_integration/merb.rbc +102 -0
  14. data/lib/compass/app_integration/rails.rbc +1580 -0
  15. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1673 -0
  16. data/lib/compass/app_integration/rails/installer.rbc +3593 -0
  17. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  18. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  19. data/lib/compass/app_integration/stand_alone/installer.rbc +1467 -0
  20. data/lib/compass/browser_support.rbc +1132 -0
  21. data/lib/compass/compiler.rbc +4628 -0
  22. data/lib/compass/configuration.rbc +1342 -0
  23. data/lib/compass/configuration/adapters.rbc +2030 -0
  24. data/lib/compass/configuration/comments.rbc +762 -0
  25. data/lib/compass/configuration/data.rbc +2643 -0
  26. data/lib/compass/configuration/defaults.rbc +3042 -0
  27. data/lib/compass/configuration/file_data.rbc +731 -0
  28. data/lib/compass/configuration/helpers.rbc +3220 -0
  29. data/lib/compass/configuration/inheritance.rbc +3345 -0
  30. data/lib/compass/configuration/paths.rbc +412 -0
  31. data/lib/compass/configuration/serialization.rbc +1929 -0
  32. data/lib/compass/dependencies.rbc +220 -0
  33. data/lib/compass/errors.rbc +176 -0
  34. data/lib/compass/frameworks.rbc +3588 -0
  35. data/lib/compass/quick_cache.rbc +320 -0
  36. data/lib/compass/sass_extensions.rb +4 -0
  37. data/lib/compass/sass_extensions.rbc +111 -0
  38. data/lib/compass/sass_extensions/functions.rbc +775 -0
  39. data/lib/compass/sass_extensions/functions/colors.rbc +1275 -0
  40. data/lib/compass/sass_extensions/functions/constants.rbc +1901 -0
  41. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1954 -0
  42. data/lib/compass/sass_extensions/functions/display.rbc +993 -0
  43. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  44. data/lib/compass/sass_extensions/functions/font_files.rbc +404 -0
  45. data/lib/compass/sass_extensions/functions/gradient_support.rb +3 -1
  46. data/lib/compass/sass_extensions/functions/gradient_support.rbc +13899 -0
  47. data/lib/compass/sass_extensions/functions/image_size.rbc +2837 -0
  48. data/lib/compass/sass_extensions/functions/inline_image.rbc +1624 -0
  49. data/lib/compass/sass_extensions/functions/lists.rbc +2565 -0
  50. data/lib/compass/sass_extensions/functions/selectors.rbc +1584 -0
  51. data/lib/compass/sass_extensions/functions/sprites.rb +13 -1
  52. data/lib/compass/sass_extensions/functions/sprites.rbc +3491 -0
  53. data/lib/compass/sass_extensions/functions/trig.rbc +809 -0
  54. data/lib/compass/sass_extensions/functions/urls.rbc +3141 -0
  55. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  56. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2153 -0
  57. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +640 -0
  58. data/lib/compass/sass_extensions/sprites.rbc +299 -0
  59. data/lib/compass/sass_extensions/sprites/base.rb +20 -7
  60. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  61. data/lib/compass/sass_extensions/sprites/engines.rbc +53 -0
  62. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +908 -0
  63. data/lib/compass/sass_extensions/sprites/image.rbc +2583 -0
  64. data/lib/compass/sass_extensions/sprites/sprite_map.rb +15 -3
  65. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +2615 -0
  66. data/lib/compass/sass_extensions/sprites/sprites.rb +3 -3
  67. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  68. data/lib/compass/util.rbc +544 -0
  69. data/lib/compass/version.rb +3 -3
  70. data/lib/compass/version.rbc +1259 -0
  71. data/test/fixtures/sprites/public/images/colors/blue.png +0 -0
  72. data/test/fixtures/sprites/public/images/colors/yellow.png +0 -0
  73. data/test/fixtures/sprites/public/images/ko/default_background.png +0 -0
  74. data/test/fixtures/sprites/public/images/ko/starbg26x27.png +0 -0
  75. data/test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png +0 -0
  76. data/test/fixtures/sprites/public/images/prefix/20-by-20.png +0 -0
  77. data/test/fixtures/sprites/public/images/prefix/ten-by-ten.png +0 -0
  78. data/test/fixtures/sprites/public/images/selectors/ten-by-ten.png +0 -0
  79. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_active.png +0 -0
  80. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_hover.png +0 -0
  81. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png +0 -0
  82. data/test/fixtures/sprites/public/images/squares/ten-by-ten.png +0 -0
  83. data/test/fixtures/sprites/public/images/squares/twenty-by-twenty.png +0 -0
  84. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -0
  85. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -0
  86. data/test/fixtures/stylesheets/compass/css/gradients.css +57 -0
  87. data/test/fixtures/stylesheets/compass/css/grid_background.css +7 -0
  88. data/test/fixtures/stylesheets/compass/css/pie.css +1 -0
  89. data/test/fixtures/stylesheets/relative/config.rb +1 -0
  90. data/test/{command_line_helper.rb → helpers/command_line.rb} +0 -0
  91. data/test/helpers/diff.rb +49 -0
  92. data/test/{io_helper.rb → helpers/io.rb} +0 -0
  93. data/test/{rails_helper.rb → helpers/rails.rb} +0 -0
  94. data/test/helpers/test_case.rb +55 -0
  95. data/test/{compass_test.rb → integrations/compass_test.rb} +8 -8
  96. data/test/{rails_integration_test.rb → integrations/rails_integration_test.rb} +2 -1
  97. data/test/integrations/sprites_test.rb +607 -0
  98. data/test/{test_rails_helper.rb → integrations/test_rails_helper.rb} +0 -0
  99. data/test/test_helper.rb +13 -4
  100. data/test/{command_line_test.rb → units/command_line_test.rb} +0 -0
  101. data/test/{compass_png_test.rb → units/compass_png_test.rb} +1 -1
  102. data/test/{configuration_test.rb → units/configuration_test.rb} +37 -12
  103. data/test/{sass_extensions_test.rb → units/sass_extensions_test.rb} +0 -0
  104. data/test/units/sprites/base_test.rb +90 -0
  105. data/test/units/sprites/image_test.rb +97 -0
  106. metadata +114 -26
  107. data/test/test_case_helper.rb +0 -13
@@ -0,0 +1,102 @@
1
+ !RBIX
2
+ 333337424968067900
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 47
13
+ 26
14
+ 93
15
+ 0
16
+ 15
17
+ 29
18
+ 19
19
+ 0
20
+ 45
21
+ 0
22
+ 1
23
+ 7
24
+ 2
25
+ 3
26
+ 98
27
+ 3
28
+ 3
29
+ 30
30
+ 8
31
+ 25
32
+ 25
33
+ 92
34
+ 0
35
+ 27
36
+ 8
37
+ 30
38
+ 15
39
+ 7
40
+ 4
41
+ 8
42
+ 31
43
+ 1
44
+ 9
45
+ 43
46
+ 5
47
+ 7
48
+ 5
49
+ 64
50
+ 47
51
+ 49
52
+ 6
53
+ 1
54
+ 8
55
+ 44
56
+ 1
57
+ 15
58
+ 2
59
+ 11
60
+ I
61
+ 4
62
+ I
63
+ 0
64
+ I
65
+ 0
66
+ I
67
+ 0
68
+ n
69
+ p
70
+ 7
71
+ x
72
+ 4
73
+ Merb
74
+ n
75
+ x
76
+ 7
77
+ Plugins
78
+ x
79
+ 22
80
+ vm_const_defined_under
81
+ s
82
+ 8
83
+ constant
84
+ s
85
+ 36
86
+ compass/app_integration/merb/runtime
87
+ x
88
+ 7
89
+ require
90
+ p
91
+ 3
92
+ I
93
+ 0
94
+ I
95
+ 1
96
+ I
97
+ 2f
98
+ x
99
+ 65
100
+ /Users/chris/Projects/compass/lib/compass/app_integration/merb.rb
101
+ p
102
+ 0
@@ -0,0 +1,1580 @@
1
+ !RBIX
2
+ 333337424968067900
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 87
13
+ 7
14
+ 0
15
+ 64
16
+ 7
17
+ 1
18
+ 64
19
+ 35
20
+ 2
21
+ 56
22
+ 2
23
+ 50
24
+ 3
25
+ 0
26
+ 15
27
+ 26
28
+ 93
29
+ 0
30
+ 15
31
+ 29
32
+ 33
33
+ 0
34
+ 45
35
+ 4
36
+ 5
37
+ 7
38
+ 6
39
+ 3
40
+ 98
41
+ 7
42
+ 3
43
+ 30
44
+ 8
45
+ 39
46
+ 25
47
+ 92
48
+ 0
49
+ 27
50
+ 8
51
+ 44
52
+ 15
53
+ 7
54
+ 8
55
+ 8
56
+ 45
57
+ 1
58
+ 9
59
+ 57
60
+ 5
61
+ 7
62
+ 9
63
+ 64
64
+ 47
65
+ 49
66
+ 10
67
+ 1
68
+ 8
69
+ 58
70
+ 1
71
+ 15
72
+ 99
73
+ 7
74
+ 11
75
+ 65
76
+ 49
77
+ 12
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 13
84
+ 12
85
+ 7
86
+ 14
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 15
92
+ 4
93
+ 15
94
+ 49
95
+ 13
96
+ 0
97
+ 15
98
+ 2
99
+ 11
100
+ I
101
+ 7
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ I
107
+ 0
108
+ n
109
+ p
110
+ 16
111
+ s
112
+ 22
113
+ configuration_defaults
114
+ s
115
+ 9
116
+ installer
117
+ M
118
+ 1
119
+ p
120
+ 2
121
+ x
122
+ 9
123
+ for_block
124
+ t
125
+ n
126
+ x
127
+ 9
128
+ __block__
129
+ i
130
+ 19
131
+ 57
132
+ 19
133
+ 0
134
+ 15
135
+ 5
136
+ 7
137
+ 0
138
+ 20
139
+ 0
140
+ 47
141
+ 101
142
+ 1
143
+ 63
144
+ 2
145
+ 47
146
+ 49
147
+ 2
148
+ 1
149
+ 11
150
+ I
151
+ 5
152
+ I
153
+ 1
154
+ I
155
+ 1
156
+ I
157
+ 1
158
+ n
159
+ p
160
+ 3
161
+ s
162
+ 30
163
+ compass/app_integration/rails/
164
+ x
165
+ 4
166
+ to_s
167
+ x
168
+ 7
169
+ require
170
+ p
171
+ 5
172
+ I
173
+ 0
174
+ I
175
+ 1
176
+ I
177
+ 4
178
+ I
179
+ 2
180
+ I
181
+ 13
182
+ x
183
+ 66
184
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
185
+ p
186
+ 1
187
+ x
188
+ 3
189
+ lib
190
+ x
191
+ 4
192
+ each
193
+ x
194
+ 16
195
+ ActionController
196
+ n
197
+ x
198
+ 4
199
+ Base
200
+ x
201
+ 22
202
+ vm_const_defined_under
203
+ s
204
+ 8
205
+ constant
206
+ s
207
+ 37
208
+ compass/app_integration/rails/runtime
209
+ x
210
+ 7
211
+ require
212
+ x
213
+ 7
214
+ Compass
215
+ x
216
+ 11
217
+ open_module
218
+ x
219
+ 15
220
+ __module_init__
221
+ M
222
+ 1
223
+ n
224
+ n
225
+ x
226
+ 7
227
+ Compass
228
+ i
229
+ 28
230
+ 5
231
+ 66
232
+ 99
233
+ 7
234
+ 0
235
+ 65
236
+ 49
237
+ 1
238
+ 2
239
+ 13
240
+ 99
241
+ 12
242
+ 7
243
+ 2
244
+ 12
245
+ 7
246
+ 3
247
+ 12
248
+ 65
249
+ 12
250
+ 49
251
+ 4
252
+ 4
253
+ 15
254
+ 49
255
+ 2
256
+ 0
257
+ 11
258
+ I
259
+ 6
260
+ I
261
+ 0
262
+ I
263
+ 0
264
+ I
265
+ 0
266
+ n
267
+ p
268
+ 5
269
+ x
270
+ 14
271
+ AppIntegration
272
+ x
273
+ 11
274
+ open_module
275
+ x
276
+ 15
277
+ __module_init__
278
+ M
279
+ 1
280
+ n
281
+ n
282
+ x
283
+ 14
284
+ AppIntegration
285
+ i
286
+ 28
287
+ 5
288
+ 66
289
+ 99
290
+ 7
291
+ 0
292
+ 65
293
+ 49
294
+ 1
295
+ 2
296
+ 13
297
+ 99
298
+ 12
299
+ 7
300
+ 2
301
+ 12
302
+ 7
303
+ 3
304
+ 12
305
+ 65
306
+ 12
307
+ 49
308
+ 4
309
+ 4
310
+ 15
311
+ 49
312
+ 2
313
+ 0
314
+ 11
315
+ I
316
+ 6
317
+ I
318
+ 0
319
+ I
320
+ 0
321
+ I
322
+ 0
323
+ n
324
+ p
325
+ 5
326
+ x
327
+ 5
328
+ Rails
329
+ x
330
+ 11
331
+ open_module
332
+ x
333
+ 15
334
+ __module_init__
335
+ M
336
+ 1
337
+ n
338
+ n
339
+ x
340
+ 5
341
+ Rails
342
+ i
343
+ 121
344
+ 5
345
+ 66
346
+ 5
347
+ 5
348
+ 47
349
+ 49
350
+ 0
351
+ 1
352
+ 15
353
+ 99
354
+ 7
355
+ 1
356
+ 7
357
+ 2
358
+ 65
359
+ 67
360
+ 49
361
+ 3
362
+ 0
363
+ 49
364
+ 4
365
+ 4
366
+ 15
367
+ 99
368
+ 7
369
+ 5
370
+ 7
371
+ 6
372
+ 65
373
+ 67
374
+ 49
375
+ 3
376
+ 0
377
+ 49
378
+ 4
379
+ 4
380
+ 15
381
+ 99
382
+ 7
383
+ 7
384
+ 7
385
+ 8
386
+ 65
387
+ 67
388
+ 49
389
+ 3
390
+ 0
391
+ 49
392
+ 4
393
+ 4
394
+ 15
395
+ 99
396
+ 7
397
+ 9
398
+ 7
399
+ 10
400
+ 65
401
+ 67
402
+ 49
403
+ 3
404
+ 0
405
+ 49
406
+ 4
407
+ 4
408
+ 15
409
+ 99
410
+ 7
411
+ 11
412
+ 7
413
+ 12
414
+ 65
415
+ 67
416
+ 49
417
+ 3
418
+ 0
419
+ 49
420
+ 4
421
+ 4
422
+ 15
423
+ 99
424
+ 7
425
+ 13
426
+ 7
427
+ 14
428
+ 65
429
+ 67
430
+ 49
431
+ 3
432
+ 0
433
+ 49
434
+ 4
435
+ 4
436
+ 15
437
+ 99
438
+ 7
439
+ 15
440
+ 7
441
+ 16
442
+ 65
443
+ 67
444
+ 49
445
+ 3
446
+ 0
447
+ 49
448
+ 4
449
+ 4
450
+ 15
451
+ 99
452
+ 7
453
+ 17
454
+ 7
455
+ 18
456
+ 65
457
+ 67
458
+ 49
459
+ 3
460
+ 0
461
+ 49
462
+ 4
463
+ 4
464
+ 11
465
+ I
466
+ 5
467
+ I
468
+ 0
469
+ I
470
+ 0
471
+ I
472
+ 0
473
+ n
474
+ p
475
+ 19
476
+ x
477
+ 6
478
+ extend
479
+ x
480
+ 7
481
+ booted!
482
+ M
483
+ 1
484
+ n
485
+ n
486
+ x
487
+ 7
488
+ booted!
489
+ i
490
+ 14
491
+ 45
492
+ 0
493
+ 1
494
+ 43
495
+ 2
496
+ 43
497
+ 3
498
+ 7
499
+ 4
500
+ 2
501
+ 49
502
+ 5
503
+ 2
504
+ 11
505
+ I
506
+ 3
507
+ I
508
+ 0
509
+ I
510
+ 0
511
+ I
512
+ 0
513
+ n
514
+ p
515
+ 6
516
+ x
517
+ 7
518
+ Compass
519
+ n
520
+ x
521
+ 14
522
+ AppIntegration
523
+ x
524
+ 5
525
+ Rails
526
+ x
527
+ 6
528
+ BOOTED
529
+ x
530
+ 9
531
+ const_set
532
+ p
533
+ 5
534
+ I
535
+ -1
536
+ I
537
+ e
538
+ I
539
+ 0
540
+ I
541
+ f
542
+ I
543
+ e
544
+ x
545
+ 66
546
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
547
+ p
548
+ 0
549
+ x
550
+ 17
551
+ method_visibility
552
+ x
553
+ 15
554
+ add_defn_method
555
+ x
556
+ 7
557
+ booted?
558
+ M
559
+ 1
560
+ n
561
+ n
562
+ x
563
+ 7
564
+ booted?
565
+ i
566
+ 49
567
+ 26
568
+ 93
569
+ 0
570
+ 15
571
+ 29
572
+ 23
573
+ 0
574
+ 45
575
+ 0
576
+ 1
577
+ 43
578
+ 2
579
+ 43
580
+ 3
581
+ 7
582
+ 4
583
+ 3
584
+ 98
585
+ 5
586
+ 3
587
+ 30
588
+ 8
589
+ 29
590
+ 25
591
+ 92
592
+ 0
593
+ 27
594
+ 8
595
+ 34
596
+ 15
597
+ 7
598
+ 6
599
+ 8
600
+ 35
601
+ 1
602
+ 13
603
+ 9
604
+ 48
605
+ 15
606
+ 45
607
+ 0
608
+ 7
609
+ 43
610
+ 2
611
+ 43
612
+ 3
613
+ 43
614
+ 4
615
+ 11
616
+ I
617
+ 4
618
+ I
619
+ 0
620
+ I
621
+ 0
622
+ I
623
+ 0
624
+ n
625
+ p
626
+ 8
627
+ x
628
+ 7
629
+ Compass
630
+ n
631
+ x
632
+ 14
633
+ AppIntegration
634
+ x
635
+ 5
636
+ Rails
637
+ x
638
+ 6
639
+ BOOTED
640
+ x
641
+ 22
642
+ vm_const_defined_under
643
+ s
644
+ 8
645
+ constant
646
+ n
647
+ p
648
+ 5
649
+ I
650
+ -1
651
+ I
652
+ 12
653
+ I
654
+ 0
655
+ I
656
+ 13
657
+ I
658
+ 31
659
+ x
660
+ 66
661
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
662
+ p
663
+ 0
664
+ x
665
+ 9
666
+ installer
667
+ M
668
+ 1
669
+ n
670
+ n
671
+ x
672
+ 9
673
+ installer
674
+ i
675
+ 11
676
+ 45
677
+ 0
678
+ 1
679
+ 20
680
+ 0
681
+ 36
682
+ 1
683
+ 51
684
+ 2
685
+ 0
686
+ 11
687
+ I
688
+ 4
689
+ I
690
+ 1
691
+ I
692
+ 0
693
+ I
694
+ 0
695
+ I
696
+ 0
697
+ p
698
+ 3
699
+ x
700
+ 9
701
+ Installer
702
+ n
703
+ x
704
+ 3
705
+ new
706
+ p
707
+ 5
708
+ I
709
+ -1
710
+ I
711
+ 16
712
+ I
713
+ 0
714
+ I
715
+ 17
716
+ I
717
+ b
718
+ x
719
+ 66
720
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
721
+ p
722
+ 1
723
+ x
724
+ 4
725
+ args
726
+ x
727
+ 13
728
+ configuration
729
+ M
730
+ 1
731
+ n
732
+ n
733
+ x
734
+ 13
735
+ configuration
736
+ i
737
+ 41
738
+ 45
739
+ 0
740
+ 1
741
+ 43
742
+ 2
743
+ 43
744
+ 3
745
+ 13
746
+ 71
747
+ 4
748
+ 47
749
+ 9
750
+ 28
751
+ 47
752
+ 49
753
+ 5
754
+ 0
755
+ 13
756
+ 7
757
+ 6
758
+ 64
759
+ 47
760
+ 49
761
+ 7
762
+ 1
763
+ 15
764
+ 8
765
+ 34
766
+ 7
767
+ 6
768
+ 64
769
+ 49
770
+ 4
771
+ 1
772
+ 45
773
+ 8
774
+ 9
775
+ 49
776
+ 10
777
+ 1
778
+ 11
779
+ I
780
+ 3
781
+ I
782
+ 0
783
+ I
784
+ 0
785
+ I
786
+ 0
787
+ n
788
+ p
789
+ 11
790
+ x
791
+ 7
792
+ Compass
793
+ n
794
+ x
795
+ 13
796
+ Configuration
797
+ x
798
+ 4
799
+ Data
800
+ x
801
+ 3
802
+ new
803
+ x
804
+ 8
805
+ allocate
806
+ s
807
+ 5
808
+ rails
809
+ x
810
+ 10
811
+ initialize
812
+ x
813
+ 21
814
+ ConfigurationDefaults
815
+ n
816
+ x
817
+ 6
818
+ extend
819
+ p
820
+ 9
821
+ I
822
+ -1
823
+ I
824
+ 1a
825
+ I
826
+ 0
827
+ I
828
+ 1b
829
+ I
830
+ 22
831
+ I
832
+ 1c
833
+ I
834
+ 25
835
+ I
836
+ 1b
837
+ I
838
+ 29
839
+ x
840
+ 66
841
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
842
+ p
843
+ 0
844
+ x
845
+ 3
846
+ env
847
+ M
848
+ 1
849
+ n
850
+ n
851
+ x
852
+ 3
853
+ env
854
+ i
855
+ 14
856
+ 5
857
+ 47
858
+ 49
859
+ 0
860
+ 0
861
+ 9
862
+ 11
863
+ 7
864
+ 1
865
+ 8
866
+ 13
867
+ 7
868
+ 2
869
+ 11
870
+ I
871
+ 1
872
+ I
873
+ 0
874
+ I
875
+ 0
876
+ I
877
+ 0
878
+ n
879
+ p
880
+ 3
881
+ x
882
+ 15
883
+ env_production?
884
+ x
885
+ 10
886
+ production
887
+ x
888
+ 11
889
+ development
890
+ p
891
+ 5
892
+ I
893
+ -1
894
+ I
895
+ 1f
896
+ I
897
+ 0
898
+ I
899
+ 20
900
+ I
901
+ e
902
+ x
903
+ 66
904
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
905
+ p
906
+ 0
907
+ x
908
+ 15
909
+ env_production?
910
+ M
911
+ 1
912
+ n
913
+ n
914
+ x
915
+ 15
916
+ env_production?
917
+ i
918
+ 95
919
+ 26
920
+ 93
921
+ 0
922
+ 15
923
+ 29
924
+ 17
925
+ 0
926
+ 44
927
+ 7
928
+ 0
929
+ 3
930
+ 98
931
+ 1
932
+ 3
933
+ 30
934
+ 8
935
+ 23
936
+ 25
937
+ 92
938
+ 0
939
+ 27
940
+ 8
941
+ 28
942
+ 15
943
+ 7
944
+ 2
945
+ 8
946
+ 29
947
+ 1
948
+ 13
949
+ 9
950
+ 41
951
+ 15
952
+ 44
953
+ 43
954
+ 0
955
+ 7
956
+ 3
957
+ 49
958
+ 4
959
+ 1
960
+ 9
961
+ 54
962
+ 44
963
+ 43
964
+ 0
965
+ 49
966
+ 3
967
+ 0
968
+ 49
969
+ 5
970
+ 0
971
+ 8
972
+ 94
973
+ 26
974
+ 93
975
+ 1
976
+ 15
977
+ 29
978
+ 69
979
+ 0
980
+ 7
981
+ 6
982
+ 98
983
+ 7
984
+ 1
985
+ 30
986
+ 8
987
+ 75
988
+ 25
989
+ 92
990
+ 1
991
+ 27
992
+ 8
993
+ 80
994
+ 15
995
+ 7
996
+ 2
997
+ 8
998
+ 81
999
+ 1
1000
+ 9
1001
+ 93
1002
+ 45
1003
+ 6
1004
+ 8
1005
+ 7
1006
+ 9
1007
+ 64
1008
+ 83
1009
+ 10
1010
+ 8
1011
+ 94
1012
+ 1
1013
+ 11
1014
+ I
1015
+ 5
1016
+ I
1017
+ 0
1018
+ I
1019
+ 0
1020
+ I
1021
+ 0
1022
+ n
1023
+ p
1024
+ 11
1025
+ x
1026
+ 5
1027
+ Rails
1028
+ x
1029
+ 22
1030
+ vm_const_defined_under
1031
+ s
1032
+ 8
1033
+ constant
1034
+ x
1035
+ 3
1036
+ env
1037
+ x
1038
+ 11
1039
+ respond_to?
1040
+ x
1041
+ 11
1042
+ production?
1043
+ x
1044
+ 9
1045
+ RAILS_ENV
1046
+ x
1047
+ 16
1048
+ vm_const_defined
1049
+ n
1050
+ s
1051
+ 10
1052
+ production
1053
+ x
1054
+ 2
1055
+ ==
1056
+ p
1057
+ 13
1058
+ I
1059
+ -1
1060
+ I
1061
+ 23
1062
+ I
1063
+ 0
1064
+ I
1065
+ 24
1066
+ I
1067
+ 2b
1068
+ I
1069
+ 25
1070
+ I
1071
+ 36
1072
+ I
1073
+ 26
1074
+ I
1075
+ 53
1076
+ I
1077
+ 27
1078
+ I
1079
+ 5d
1080
+ I
1081
+ 26
1082
+ I
1083
+ 5f
1084
+ x
1085
+ 66
1086
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1087
+ p
1088
+ 0
1089
+ x
1090
+ 4
1091
+ root
1092
+ M
1093
+ 1
1094
+ n
1095
+ n
1096
+ x
1097
+ 4
1098
+ root
1099
+ i
1100
+ 87
1101
+ 26
1102
+ 93
1103
+ 0
1104
+ 15
1105
+ 29
1106
+ 17
1107
+ 0
1108
+ 44
1109
+ 7
1110
+ 0
1111
+ 3
1112
+ 98
1113
+ 1
1114
+ 3
1115
+ 30
1116
+ 8
1117
+ 23
1118
+ 25
1119
+ 92
1120
+ 0
1121
+ 27
1122
+ 8
1123
+ 28
1124
+ 15
1125
+ 7
1126
+ 2
1127
+ 8
1128
+ 29
1129
+ 1
1130
+ 13
1131
+ 9
1132
+ 41
1133
+ 15
1134
+ 44
1135
+ 43
1136
+ 0
1137
+ 7
1138
+ 3
1139
+ 49
1140
+ 4
1141
+ 1
1142
+ 9
1143
+ 51
1144
+ 44
1145
+ 43
1146
+ 0
1147
+ 49
1148
+ 3
1149
+ 0
1150
+ 8
1151
+ 86
1152
+ 26
1153
+ 93
1154
+ 1
1155
+ 15
1156
+ 29
1157
+ 66
1158
+ 0
1159
+ 7
1160
+ 5
1161
+ 98
1162
+ 6
1163
+ 1
1164
+ 30
1165
+ 8
1166
+ 72
1167
+ 25
1168
+ 92
1169
+ 1
1170
+ 27
1171
+ 8
1172
+ 77
1173
+ 15
1174
+ 7
1175
+ 2
1176
+ 8
1177
+ 78
1178
+ 1
1179
+ 9
1180
+ 85
1181
+ 45
1182
+ 5
1183
+ 7
1184
+ 8
1185
+ 86
1186
+ 1
1187
+ 11
1188
+ I
1189
+ 5
1190
+ I
1191
+ 0
1192
+ I
1193
+ 0
1194
+ I
1195
+ 0
1196
+ n
1197
+ p
1198
+ 8
1199
+ x
1200
+ 5
1201
+ Rails
1202
+ x
1203
+ 22
1204
+ vm_const_defined_under
1205
+ s
1206
+ 8
1207
+ constant
1208
+ x
1209
+ 4
1210
+ root
1211
+ x
1212
+ 11
1213
+ respond_to?
1214
+ x
1215
+ 10
1216
+ RAILS_ROOT
1217
+ x
1218
+ 16
1219
+ vm_const_defined
1220
+ n
1221
+ p
1222
+ 13
1223
+ I
1224
+ -1
1225
+ I
1226
+ 2b
1227
+ I
1228
+ 0
1229
+ I
1230
+ 2c
1231
+ I
1232
+ 2b
1233
+ I
1234
+ 2d
1235
+ I
1236
+ 33
1237
+ I
1238
+ 2e
1239
+ I
1240
+ 50
1241
+ I
1242
+ 2f
1243
+ I
1244
+ 55
1245
+ I
1246
+ 2e
1247
+ I
1248
+ 57
1249
+ x
1250
+ 66
1251
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1252
+ p
1253
+ 0
1254
+ x
1255
+ 11
1256
+ initialize!
1257
+ M
1258
+ 1
1259
+ n
1260
+ n
1261
+ x
1262
+ 11
1263
+ initialize!
1264
+ i
1265
+ 98
1266
+ 23
1267
+ 0
1268
+ 10
1269
+ 8
1270
+ 1
1271
+ 19
1272
+ 0
1273
+ 15
1274
+ 5
1275
+ 47
1276
+ 49
1277
+ 0
1278
+ 0
1279
+ 9
1280
+ 28
1281
+ 45
1282
+ 1
1283
+ 2
1284
+ 43
1285
+ 3
1286
+ 7
1287
+ 4
1288
+ 64
1289
+ 49
1290
+ 5
1291
+ 1
1292
+ 8
1293
+ 33
1294
+ 5
1295
+ 47
1296
+ 49
1297
+ 6
1298
+ 0
1299
+ 15
1300
+ 20
1301
+ 0
1302
+ 13
1303
+ 10
1304
+ 51
1305
+ 15
1306
+ 45
1307
+ 1
1308
+ 7
1309
+ 5
1310
+ 48
1311
+ 8
1312
+ 49
1313
+ 9
1314
+ 1
1315
+ 19
1316
+ 0
1317
+ 15
1318
+ 45
1319
+ 1
1320
+ 10
1321
+ 20
1322
+ 0
1323
+ 44
1324
+ 43
1325
+ 11
1326
+ 79
1327
+ 49
1328
+ 12
1329
+ 1
1330
+ 13
1331
+ 7
1332
+ 13
1333
+ 7
1334
+ 14
1335
+ 49
1336
+ 15
1337
+ 2
1338
+ 15
1339
+ 49
1340
+ 16
1341
+ 2
1342
+ 15
1343
+ 45
1344
+ 1
1345
+ 17
1346
+ 49
1347
+ 18
1348
+ 0
1349
+ 15
1350
+ 45
1351
+ 1
1352
+ 19
1353
+ 49
1354
+ 20
1355
+ 0
1356
+ 15
1357
+ 45
1358
+ 1
1359
+ 21
1360
+ 49
1361
+ 22
1362
+ 0
1363
+ 11
1364
+ I
1365
+ 7
1366
+ I
1367
+ 1
1368
+ I
1369
+ 0
1370
+ I
1371
+ 1
1372
+ n
1373
+ p
1374
+ 23
1375
+ x
1376
+ 7
1377
+ booted?
1378
+ x
1379
+ 7
1380
+ Compass
1381
+ n
1382
+ x
1383
+ 4
1384
+ Util
1385
+ s
1386
+ 92
1387
+ Warning: Compass was booted twice. Compass has a Railtie now; please remove your intializer.
1388
+ x
1389
+ 12
1390
+ compass_warn
1391
+ x
1392
+ 7
1393
+ booted!
1394
+ n
1395
+ x
1396
+ 4
1397
+ root
1398
+ x
1399
+ 25
1400
+ detect_configuration_file
1401
+ n
1402
+ x
1403
+ 4
1404
+ Hash
1405
+ x
1406
+ 16
1407
+ new_from_literal
1408
+ x
1409
+ 12
1410
+ project_type
1411
+ x
1412
+ 5
1413
+ rails
1414
+ x
1415
+ 3
1416
+ []=
1417
+ x
1418
+ 25
1419
+ add_project_configuration
1420
+ n
1421
+ x
1422
+ 20
1423
+ discover_extensions!
1424
+ n
1425
+ x
1426
+ 22
1427
+ configure_sass_plugin!
1428
+ n
1429
+ x
1430
+ 28
1431
+ handle_configuration_change!
1432
+ p
1433
+ 19
1434
+ I
1435
+ -1
1436
+ I
1437
+ 33
1438
+ I
1439
+ 8
1440
+ I
1441
+ 34
1442
+ I
1443
+ f
1444
+ I
1445
+ 35
1446
+ I
1447
+ 1c
1448
+ I
1449
+ 37
1450
+ I
1451
+ 22
1452
+ I
1453
+ 39
1454
+ I
1455
+ 34
1456
+ I
1457
+ 3a
1458
+ I
1459
+ 4d
1460
+ I
1461
+ 3b
1462
+ I
1463
+ 54
1464
+ I
1465
+ 3c
1466
+ I
1467
+ 5b
1468
+ I
1469
+ 3d
1470
+ I
1471
+ 62
1472
+ x
1473
+ 66
1474
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1475
+ p
1476
+ 1
1477
+ x
1478
+ 6
1479
+ config
1480
+ p
1481
+ 19
1482
+ I
1483
+ 2
1484
+ I
1485
+ c
1486
+ I
1487
+ 9
1488
+ I
1489
+ e
1490
+ I
1491
+ 17
1492
+ I
1493
+ 12
1494
+ I
1495
+ 25
1496
+ I
1497
+ 16
1498
+ I
1499
+ 33
1500
+ I
1501
+ 1a
1502
+ I
1503
+ 41
1504
+ I
1505
+ 1f
1506
+ I
1507
+ 4f
1508
+ I
1509
+ 23
1510
+ I
1511
+ 5d
1512
+ I
1513
+ 2b
1514
+ I
1515
+ 6b
1516
+ I
1517
+ 33
1518
+ I
1519
+ 79
1520
+ x
1521
+ 66
1522
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1523
+ p
1524
+ 0
1525
+ x
1526
+ 13
1527
+ attach_method
1528
+ p
1529
+ 3
1530
+ I
1531
+ 2
1532
+ I
1533
+ a
1534
+ I
1535
+ 1c
1536
+ x
1537
+ 66
1538
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1539
+ p
1540
+ 0
1541
+ x
1542
+ 13
1543
+ attach_method
1544
+ p
1545
+ 3
1546
+ I
1547
+ 2
1548
+ I
1549
+ 9
1550
+ I
1551
+ 1c
1552
+ x
1553
+ 66
1554
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1555
+ p
1556
+ 0
1557
+ x
1558
+ 13
1559
+ attach_method
1560
+ p
1561
+ 7
1562
+ I
1563
+ 0
1564
+ I
1565
+ 1
1566
+ I
1567
+ e
1568
+ I
1569
+ 5
1570
+ I
1571
+ 3b
1572
+ I
1573
+ 8
1574
+ I
1575
+ 57
1576
+ x
1577
+ 66
1578
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1579
+ p
1580
+ 0