lumberjack 1.0.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 (60) hide show
  1. data/MIT_LICENSE +20 -0
  2. data/README.rdoc +86 -0
  3. data/Rakefile +56 -0
  4. data/VERSION +1 -0
  5. data/lib/lumberjack.rb +39 -0
  6. data/lib/lumberjack/device.rb +26 -0
  7. data/lib/lumberjack/device/date_rolling_log_file.rb +58 -0
  8. data/lib/lumberjack/device/log_file.rb +18 -0
  9. data/lib/lumberjack/device/null.rb +15 -0
  10. data/lib/lumberjack/device/rolling_log_file.rb +109 -0
  11. data/lib/lumberjack/device/size_rolling_log_file.rb +58 -0
  12. data/lib/lumberjack/device/writer.rb +119 -0
  13. data/lib/lumberjack/formatter.rb +76 -0
  14. data/lib/lumberjack/formatter/exception_formatter.rb +12 -0
  15. data/lib/lumberjack/formatter/inspect_formatter.rb +10 -0
  16. data/lib/lumberjack/formatter/pretty_print_formatter.rb +23 -0
  17. data/lib/lumberjack/formatter/string_formatter.rb +10 -0
  18. data/lib/lumberjack/log_entry.rb +36 -0
  19. data/lib/lumberjack/logger.rb +302 -0
  20. data/lib/lumberjack/rack.rb +5 -0
  21. data/lib/lumberjack/rack/unit_of_work.rb +15 -0
  22. data/lib/lumberjack/severity.rb +23 -0
  23. data/lib/lumberjack/template.rb +71 -0
  24. data/spec/device/date_rolling_log_file_spec.rb +66 -0
  25. data/spec/device/date_rolling_log_file_spec.rbc +2118 -0
  26. data/spec/device/log_file_spec.rb +26 -0
  27. data/spec/device/log_file_spec.rbc +727 -0
  28. data/spec/device/null_spec.rb +12 -0
  29. data/spec/device/null_spec.rbc +362 -0
  30. data/spec/device/rolling_log_file_spec.rb +117 -0
  31. data/spec/device/rolling_log_file_spec.rbc +2894 -0
  32. data/spec/device/size_rolling_log_file_spec.rb +54 -0
  33. data/spec/device/size_rolling_log_file_spec.rbc +1961 -0
  34. data/spec/device/stream_spec.rbc +3310 -0
  35. data/spec/device/writer_spec.rb +118 -0
  36. data/spec/entry_spec.rbc +2333 -0
  37. data/spec/formatter/exception_formatter_spec.rb +20 -0
  38. data/spec/formatter/exception_formatter_spec.rbc +620 -0
  39. data/spec/formatter/inspect_formatter_spec.rb +13 -0
  40. data/spec/formatter/inspect_formatter_spec.rbc +360 -0
  41. data/spec/formatter/pretty_print_formatter_spec.rb +14 -0
  42. data/spec/formatter/pretty_print_formatter_spec.rbc +380 -0
  43. data/spec/formatter/string_formatter_spec.rb +12 -0
  44. data/spec/formatter/string_formatter_spec.rbc +314 -0
  45. data/spec/formatter_spec.rb +45 -0
  46. data/spec/formatter_spec.rbc +1431 -0
  47. data/spec/log_entry_spec.rb +69 -0
  48. data/spec/logger_spec.rb +390 -0
  49. data/spec/logger_spec.rbc +10043 -0
  50. data/spec/lumberjack_spec.rb +22 -0
  51. data/spec/lumberjack_spec.rbc +523 -0
  52. data/spec/rack/unit_of_work_spec.rb +26 -0
  53. data/spec/rack/unit_of_work_spec.rbc +697 -0
  54. data/spec/severity_spec.rb +23 -0
  55. data/spec/spec_helper.rb +16 -0
  56. data/spec/spec_helper.rbc +391 -0
  57. data/spec/template_spec.rb +34 -0
  58. data/spec/template_spec.rbc +1563 -0
  59. data/spec/unique_identifier_spec.rbc +329 -0
  60. metadata +128 -0
@@ -0,0 +1,2894 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 26
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 45
24
+ 2
25
+ 3
26
+ 43
27
+ 4
28
+ 43
29
+ 5
30
+ 56
31
+ 6
32
+ 47
33
+ 50
34
+ 7
35
+ 1
36
+ 15
37
+ 2
38
+ 11
39
+ I
40
+ 3
41
+ I
42
+ 0
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ n
48
+ p
49
+ 8
50
+ s
51
+ 11
52
+ spec_helper
53
+ x
54
+ 7
55
+ require
56
+ x
57
+ 10
58
+ Lumberjack
59
+ n
60
+ x
61
+ 6
62
+ Device
63
+ x
64
+ 14
65
+ RollingLogFile
66
+ M
67
+ 1
68
+ p
69
+ 2
70
+ x
71
+ 9
72
+ for_block
73
+ t
74
+ n
75
+ x
76
+ 9
77
+ __block__
78
+ i
79
+ 74
80
+ 5
81
+ 7
82
+ 0
83
+ 56
84
+ 1
85
+ 47
86
+ 50
87
+ 2
88
+ 1
89
+ 15
90
+ 5
91
+ 7
92
+ 0
93
+ 56
94
+ 3
95
+ 47
96
+ 50
97
+ 4
98
+ 1
99
+ 15
100
+ 5
101
+ 7
102
+ 5
103
+ 56
104
+ 6
105
+ 47
106
+ 50
107
+ 7
108
+ 1
109
+ 15
110
+ 5
111
+ 7
112
+ 8
113
+ 64
114
+ 56
115
+ 9
116
+ 47
117
+ 50
118
+ 10
119
+ 1
120
+ 15
121
+ 5
122
+ 7
123
+ 11
124
+ 64
125
+ 56
126
+ 12
127
+ 47
128
+ 50
129
+ 10
130
+ 1
131
+ 15
132
+ 5
133
+ 7
134
+ 13
135
+ 64
136
+ 56
137
+ 14
138
+ 47
139
+ 50
140
+ 10
141
+ 1
142
+ 15
143
+ 5
144
+ 7
145
+ 15
146
+ 64
147
+ 56
148
+ 16
149
+ 47
150
+ 50
151
+ 10
152
+ 1
153
+ 11
154
+ I
155
+ 4
156
+ I
157
+ 0
158
+ I
159
+ 0
160
+ I
161
+ 0
162
+ I
163
+ -2
164
+ p
165
+ 17
166
+ x
167
+ 3
168
+ all
169
+ M
170
+ 1
171
+ p
172
+ 2
173
+ x
174
+ 9
175
+ for_block
176
+ t
177
+ n
178
+ x
179
+ 9
180
+ __block__
181
+ i
182
+ 4
183
+ 5
184
+ 48
185
+ 0
186
+ 11
187
+ I
188
+ 2
189
+ I
190
+ 0
191
+ I
192
+ 0
193
+ I
194
+ 0
195
+ I
196
+ -2
197
+ p
198
+ 1
199
+ x
200
+ 14
201
+ create_tmp_dir
202
+ p
203
+ 3
204
+ I
205
+ 0
206
+ I
207
+ 6
208
+ I
209
+ 4
210
+ x
211
+ 75
212
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
213
+ p
214
+ 0
215
+ x
216
+ 6
217
+ before
218
+ M
219
+ 1
220
+ p
221
+ 2
222
+ x
223
+ 9
224
+ for_block
225
+ t
226
+ n
227
+ x
228
+ 9
229
+ __block__
230
+ i
231
+ 4
232
+ 5
233
+ 48
234
+ 0
235
+ 11
236
+ I
237
+ 2
238
+ I
239
+ 0
240
+ I
241
+ 0
242
+ I
243
+ 0
244
+ I
245
+ -2
246
+ p
247
+ 1
248
+ x
249
+ 14
250
+ delete_tmp_dir
251
+ p
252
+ 3
253
+ I
254
+ 0
255
+ I
256
+ a
257
+ I
258
+ 4
259
+ x
260
+ 75
261
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
262
+ p
263
+ 0
264
+ x
265
+ 5
266
+ after
267
+ x
268
+ 5
269
+ entry
270
+ M
271
+ 1
272
+ p
273
+ 2
274
+ x
275
+ 9
276
+ for_block
277
+ t
278
+ n
279
+ x
280
+ 9
281
+ __block__
282
+ i
283
+ 67
284
+ 45
285
+ 0
286
+ 1
287
+ 43
288
+ 2
289
+ 13
290
+ 71
291
+ 3
292
+ 47
293
+ 9
294
+ 43
295
+ 47
296
+ 49
297
+ 4
298
+ 0
299
+ 13
300
+ 45
301
+ 5
302
+ 6
303
+ 49
304
+ 7
305
+ 0
306
+ 79
307
+ 7
308
+ 8
309
+ 64
310
+ 1
311
+ 99
312
+ 43
313
+ 9
314
+ 7
315
+ 10
316
+ 49
317
+ 11
318
+ 1
319
+ 1
320
+ 47
321
+ 49
322
+ 12
323
+ 6
324
+ 15
325
+ 8
326
+ 66
327
+ 45
328
+ 5
329
+ 13
330
+ 49
331
+ 7
332
+ 0
333
+ 79
334
+ 7
335
+ 8
336
+ 64
337
+ 1
338
+ 99
339
+ 43
340
+ 9
341
+ 7
342
+ 10
343
+ 49
344
+ 11
345
+ 1
346
+ 1
347
+ 49
348
+ 3
349
+ 6
350
+ 11
351
+ I
352
+ 9
353
+ I
354
+ 0
355
+ I
356
+ 0
357
+ I
358
+ 0
359
+ I
360
+ -2
361
+ p
362
+ 14
363
+ x
364
+ 10
365
+ Lumberjack
366
+ n
367
+ x
368
+ 5
369
+ Entry
370
+ x
371
+ 3
372
+ new
373
+ x
374
+ 8
375
+ allocate
376
+ x
377
+ 4
378
+ Time
379
+ n
380
+ x
381
+ 3
382
+ now
383
+ s
384
+ 13
385
+ New log entry
386
+ x
387
+ 7
388
+ Globals
389
+ x
390
+ 2
391
+ $$
392
+ x
393
+ 2
394
+ []
395
+ x
396
+ 10
397
+ initialize
398
+ n
399
+ p
400
+ 3
401
+ I
402
+ 0
403
+ I
404
+ d
405
+ I
406
+ 43
407
+ x
408
+ 75
409
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
410
+ p
411
+ 0
412
+ x
413
+ 3
414
+ let
415
+ s
416
+ 46
417
+ should check for rolling the log file on flush
418
+ M
419
+ 1
420
+ p
421
+ 2
422
+ x
423
+ 9
424
+ for_block
425
+ t
426
+ n
427
+ x
428
+ 9
429
+ __block__
430
+ i
431
+ 91
432
+ 45
433
+ 0
434
+ 1
435
+ 43
436
+ 2
437
+ 43
438
+ 3
439
+ 13
440
+ 71
441
+ 4
442
+ 47
443
+ 9
444
+ 37
445
+ 47
446
+ 49
447
+ 5
448
+ 0
449
+ 13
450
+ 45
451
+ 6
452
+ 7
453
+ 5
454
+ 48
455
+ 8
456
+ 7
457
+ 9
458
+ 64
459
+ 49
460
+ 10
461
+ 2
462
+ 47
463
+ 49
464
+ 11
465
+ 1
466
+ 15
467
+ 8
468
+ 52
469
+ 45
470
+ 6
471
+ 12
472
+ 5
473
+ 48
474
+ 8
475
+ 7
476
+ 9
477
+ 64
478
+ 49
479
+ 10
480
+ 2
481
+ 49
482
+ 4
483
+ 1
484
+ 19
485
+ 0
486
+ 15
487
+ 20
488
+ 0
489
+ 5
490
+ 48
491
+ 13
492
+ 49
493
+ 14
494
+ 1
495
+ 15
496
+ 20
497
+ 0
498
+ 7
499
+ 15
500
+ 49
501
+ 16
502
+ 1
503
+ 49
504
+ 17
505
+ 0
506
+ 3
507
+ 49
508
+ 18
509
+ 1
510
+ 15
511
+ 20
512
+ 0
513
+ 49
514
+ 19
515
+ 0
516
+ 15
517
+ 20
518
+ 0
519
+ 49
520
+ 20
521
+ 0
522
+ 11
523
+ I
524
+ 7
525
+ I
526
+ 1
527
+ I
528
+ 0
529
+ I
530
+ 0
531
+ I
532
+ -2
533
+ p
534
+ 21
535
+ x
536
+ 10
537
+ Lumberjack
538
+ n
539
+ x
540
+ 6
541
+ Device
542
+ x
543
+ 14
544
+ RollingLogFile
545
+ x
546
+ 3
547
+ new
548
+ x
549
+ 8
550
+ allocate
551
+ x
552
+ 4
553
+ File
554
+ n
555
+ x
556
+ 7
557
+ tmp_dir
558
+ s
559
+ 8
560
+ test.log
561
+ x
562
+ 4
563
+ join
564
+ x
565
+ 10
566
+ initialize
567
+ n
568
+ x
569
+ 5
570
+ entry
571
+ x
572
+ 5
573
+ write
574
+ x
575
+ 10
576
+ roll_file?
577
+ x
578
+ 14
579
+ should_receive
580
+ x
581
+ 5
582
+ twice
583
+ x
584
+ 10
585
+ and_return
586
+ x
587
+ 5
588
+ flush
589
+ x
590
+ 5
591
+ close
592
+ p
593
+ 11
594
+ I
595
+ 0
596
+ I
597
+ 10
598
+ I
599
+ 37
600
+ I
601
+ 11
602
+ I
603
+ 40
604
+ I
605
+ 12
606
+ I
607
+ 4f
608
+ I
609
+ 13
610
+ I
611
+ 55
612
+ I
613
+ 14
614
+ I
615
+ 5b
616
+ x
617
+ 75
618
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
619
+ p
620
+ 1
621
+ x
622
+ 6
623
+ device
624
+ x
625
+ 2
626
+ it
627
+ s
628
+ 99
629
+ should roll the file by archiving the existing file and opening a new stream and calling after_roll
630
+ M
631
+ 1
632
+ p
633
+ 2
634
+ x
635
+ 9
636
+ for_block
637
+ t
638
+ n
639
+ x
640
+ 9
641
+ __block__
642
+ i
643
+ 277
644
+ 45
645
+ 0
646
+ 1
647
+ 5
648
+ 48
649
+ 2
650
+ 7
651
+ 3
652
+ 64
653
+ 49
654
+ 4
655
+ 2
656
+ 19
657
+ 0
658
+ 15
659
+ 45
660
+ 5
661
+ 6
662
+ 43
663
+ 7
664
+ 43
665
+ 8
666
+ 13
667
+ 71
668
+ 9
669
+ 47
670
+ 9
671
+ 59
672
+ 47
673
+ 49
674
+ 10
675
+ 0
676
+ 13
677
+ 20
678
+ 0
679
+ 44
680
+ 43
681
+ 11
682
+ 79
683
+ 49
684
+ 12
685
+ 1
686
+ 13
687
+ 7
688
+ 13
689
+ 7
690
+ 14
691
+ 64
692
+ 49
693
+ 15
694
+ 2
695
+ 15
696
+ 47
697
+ 49
698
+ 16
699
+ 2
700
+ 15
701
+ 8
702
+ 81
703
+ 20
704
+ 0
705
+ 44
706
+ 43
707
+ 11
708
+ 79
709
+ 49
710
+ 12
711
+ 1
712
+ 13
713
+ 7
714
+ 13
715
+ 7
716
+ 14
717
+ 64
718
+ 49
719
+ 15
720
+ 2
721
+ 15
722
+ 49
723
+ 9
724
+ 2
725
+ 19
726
+ 1
727
+ 15
728
+ 20
729
+ 1
730
+ 7
731
+ 17
732
+ 49
733
+ 18
734
+ 1
735
+ 3
736
+ 2
737
+ 49
738
+ 19
739
+ 2
740
+ 15
741
+ 20
742
+ 1
743
+ 7
744
+ 20
745
+ 49
746
+ 18
747
+ 1
748
+ 15
749
+ 20
750
+ 1
751
+ 7
752
+ 21
753
+ 49
754
+ 22
755
+ 1
756
+ 20
757
+ 0
758
+ 47
759
+ 101
760
+ 23
761
+ 7
762
+ 24
763
+ 63
764
+ 2
765
+ 49
766
+ 19
767
+ 1
768
+ 15
769
+ 20
770
+ 1
771
+ 5
772
+ 48
773
+ 25
774
+ 49
775
+ 26
776
+ 1
777
+ 15
778
+ 20
779
+ 1
780
+ 49
781
+ 27
782
+ 0
783
+ 15
784
+ 20
785
+ 1
786
+ 45
787
+ 5
788
+ 28
789
+ 43
790
+ 29
791
+ 13
792
+ 71
793
+ 9
794
+ 47
795
+ 9
796
+ 185
797
+ 47
798
+ 49
799
+ 10
800
+ 0
801
+ 13
802
+ 45
803
+ 30
804
+ 31
805
+ 49
806
+ 32
807
+ 0
808
+ 79
809
+ 7
810
+ 33
811
+ 64
812
+ 1
813
+ 99
814
+ 43
815
+ 34
816
+ 7
817
+ 35
818
+ 49
819
+ 36
820
+ 1
821
+ 1
822
+ 47
823
+ 49
824
+ 16
825
+ 6
826
+ 15
827
+ 8
828
+ 208
829
+ 45
830
+ 30
831
+ 37
832
+ 49
833
+ 32
834
+ 0
835
+ 79
836
+ 7
837
+ 33
838
+ 64
839
+ 1
840
+ 99
841
+ 43
842
+ 34
843
+ 7
844
+ 35
845
+ 49
846
+ 36
847
+ 1
848
+ 1
849
+ 49
850
+ 9
851
+ 6
852
+ 49
853
+ 26
854
+ 1
855
+ 15
856
+ 20
857
+ 1
858
+ 49
859
+ 38
860
+ 0
861
+ 15
862
+ 45
863
+ 0
864
+ 39
865
+ 20
866
+ 0
867
+ 47
868
+ 101
869
+ 23
870
+ 7
871
+ 24
872
+ 63
873
+ 2
874
+ 49
875
+ 40
876
+ 1
877
+ 49
878
+ 41
879
+ 0
880
+ 7
881
+ 42
882
+ 45
883
+ 5
884
+ 43
885
+ 43
886
+ 44
887
+ 47
888
+ 101
889
+ 23
890
+ 63
891
+ 2
892
+ 83
893
+ 45
894
+ 15
895
+ 45
896
+ 0
897
+ 46
898
+ 20
899
+ 0
900
+ 49
901
+ 40
902
+ 1
903
+ 49
904
+ 41
905
+ 0
906
+ 7
907
+ 33
908
+ 45
909
+ 5
910
+ 47
911
+ 43
912
+ 44
913
+ 47
914
+ 101
915
+ 23
916
+ 63
917
+ 2
918
+ 83
919
+ 45
920
+ 11
921
+ I
922
+ c
923
+ I
924
+ 2
925
+ I
926
+ 0
927
+ I
928
+ 0
929
+ I
930
+ -2
931
+ p
932
+ 48
933
+ x
934
+ 4
935
+ File
936
+ n
937
+ x
938
+ 7
939
+ tmp_dir
940
+ s
941
+ 10
942
+ test_2.log
943
+ x
944
+ 4
945
+ join
946
+ x
947
+ 10
948
+ Lumberjack
949
+ n
950
+ x
951
+ 6
952
+ Device
953
+ x
954
+ 14
955
+ RollingLogFile
956
+ x
957
+ 3
958
+ new
959
+ x
960
+ 8
961
+ allocate
962
+ x
963
+ 4
964
+ Hash
965
+ x
966
+ 16
967
+ new_from_literal
968
+ x
969
+ 8
970
+ template
971
+ s
972
+ 8
973
+ :message
974
+ x
975
+ 3
976
+ []=
977
+ x
978
+ 10
979
+ initialize
980
+ x
981
+ 10
982
+ roll_file?
983
+ x
984
+ 14
985
+ should_receive
986
+ x
987
+ 10
988
+ and_return
989
+ x
990
+ 10
991
+ after_roll
992
+ x
993
+ 17
994
+ archive_file_name
995
+ x
996
+ 5
997
+ stub!
998
+ x
999
+ 4
1000
+ to_s
1001
+ s
1002
+ 7
1003
+ .rolled
1004
+ x
1005
+ 5
1006
+ entry
1007
+ x
1008
+ 5
1009
+ write
1010
+ x
1011
+ 5
1012
+ flush
1013
+ n
1014
+ x
1015
+ 5
1016
+ Entry
1017
+ x
1018
+ 4
1019
+ Time
1020
+ n
1021
+ x
1022
+ 3
1023
+ now
1024
+ s
1025
+ 17
1026
+ Another log entry
1027
+ x
1028
+ 7
1029
+ Globals
1030
+ x
1031
+ 2
1032
+ $$
1033
+ x
1034
+ 2
1035
+ []
1036
+ n
1037
+ x
1038
+ 5
1039
+ close
1040
+ n
1041
+ x
1042
+ 4
1043
+ read
1044
+ x
1045
+ 6
1046
+ should
1047
+ s
1048
+ 13
1049
+ New log entry
1050
+ n
1051
+ x
1052
+ 14
1053
+ LINE_SEPARATOR
1054
+ x
1055
+ 2
1056
+ ==
1057
+ n
1058
+ n
1059
+ p
1060
+ 23
1061
+ I
1062
+ 0
1063
+ I
1064
+ 18
1065
+ I
1066
+ f
1067
+ I
1068
+ 19
1069
+ I
1070
+ 54
1071
+ I
1072
+ 1a
1073
+ I
1074
+ 61
1075
+ I
1076
+ 1b
1077
+ I
1078
+ 69
1079
+ I
1080
+ 1c
1081
+ I
1082
+ 7d
1083
+ I
1084
+ 1d
1085
+ I
1086
+ 86
1087
+ I
1088
+ 1e
1089
+ I
1090
+ 8c
1091
+ I
1092
+ 1f
1093
+ I
1094
+ d4
1095
+ I
1096
+ 20
1097
+ I
1098
+ da
1099
+ I
1100
+ 21
1101
+ I
1102
+ fb
1103
+ I
1104
+ 22
1105
+ I
1106
+ 115
1107
+ x
1108
+ 75
1109
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
1110
+ p
1111
+ 2
1112
+ x
1113
+ 8
1114
+ log_file
1115
+ x
1116
+ 6
1117
+ device
1118
+ s
1119
+ 76
1120
+ should reopen the file if the stream inode doesn't match the file path inode
1121
+ M
1122
+ 1
1123
+ p
1124
+ 2
1125
+ x
1126
+ 9
1127
+ for_block
1128
+ t
1129
+ n
1130
+ x
1131
+ 9
1132
+ __block__
1133
+ i
1134
+ 272
1135
+ 45
1136
+ 0
1137
+ 1
1138
+ 5
1139
+ 48
1140
+ 2
1141
+ 7
1142
+ 3
1143
+ 64
1144
+ 49
1145
+ 4
1146
+ 2
1147
+ 19
1148
+ 0
1149
+ 15
1150
+ 45
1151
+ 5
1152
+ 6
1153
+ 43
1154
+ 7
1155
+ 43
1156
+ 8
1157
+ 13
1158
+ 71
1159
+ 9
1160
+ 47
1161
+ 9
1162
+ 59
1163
+ 47
1164
+ 49
1165
+ 10
1166
+ 0
1167
+ 13
1168
+ 20
1169
+ 0
1170
+ 44
1171
+ 43
1172
+ 11
1173
+ 79
1174
+ 49
1175
+ 12
1176
+ 1
1177
+ 13
1178
+ 7
1179
+ 13
1180
+ 7
1181
+ 14
1182
+ 64
1183
+ 49
1184
+ 15
1185
+ 2
1186
+ 15
1187
+ 47
1188
+ 49
1189
+ 16
1190
+ 2
1191
+ 15
1192
+ 8
1193
+ 81
1194
+ 20
1195
+ 0
1196
+ 44
1197
+ 43
1198
+ 11
1199
+ 79
1200
+ 49
1201
+ 12
1202
+ 1
1203
+ 13
1204
+ 7
1205
+ 13
1206
+ 7
1207
+ 14
1208
+ 64
1209
+ 49
1210
+ 15
1211
+ 2
1212
+ 15
1213
+ 49
1214
+ 9
1215
+ 2
1216
+ 19
1217
+ 1
1218
+ 15
1219
+ 20
1220
+ 1
1221
+ 7
1222
+ 17
1223
+ 49
1224
+ 18
1225
+ 1
1226
+ 3
1227
+ 49
1228
+ 19
1229
+ 1
1230
+ 15
1231
+ 20
1232
+ 1
1233
+ 5
1234
+ 48
1235
+ 20
1236
+ 49
1237
+ 21
1238
+ 1
1239
+ 15
1240
+ 20
1241
+ 1
1242
+ 49
1243
+ 22
1244
+ 0
1245
+ 15
1246
+ 45
1247
+ 0
1248
+ 23
1249
+ 20
1250
+ 0
1251
+ 20
1252
+ 0
1253
+ 47
1254
+ 101
1255
+ 24
1256
+ 7
1257
+ 25
1258
+ 63
1259
+ 2
1260
+ 49
1261
+ 26
1262
+ 2
1263
+ 15
1264
+ 20
1265
+ 1
1266
+ 49
1267
+ 22
1268
+ 0
1269
+ 15
1270
+ 20
1271
+ 1
1272
+ 45
1273
+ 5
1274
+ 27
1275
+ 43
1276
+ 28
1277
+ 13
1278
+ 71
1279
+ 9
1280
+ 47
1281
+ 9
1282
+ 180
1283
+ 47
1284
+ 49
1285
+ 10
1286
+ 0
1287
+ 13
1288
+ 45
1289
+ 29
1290
+ 30
1291
+ 49
1292
+ 31
1293
+ 0
1294
+ 79
1295
+ 7
1296
+ 32
1297
+ 64
1298
+ 1
1299
+ 99
1300
+ 43
1301
+ 33
1302
+ 7
1303
+ 34
1304
+ 49
1305
+ 35
1306
+ 1
1307
+ 1
1308
+ 47
1309
+ 49
1310
+ 16
1311
+ 6
1312
+ 15
1313
+ 8
1314
+ 203
1315
+ 45
1316
+ 29
1317
+ 36
1318
+ 49
1319
+ 31
1320
+ 0
1321
+ 79
1322
+ 7
1323
+ 32
1324
+ 64
1325
+ 1
1326
+ 99
1327
+ 43
1328
+ 33
1329
+ 7
1330
+ 34
1331
+ 49
1332
+ 35
1333
+ 1
1334
+ 1
1335
+ 49
1336
+ 9
1337
+ 6
1338
+ 49
1339
+ 21
1340
+ 1
1341
+ 15
1342
+ 20
1343
+ 1
1344
+ 49
1345
+ 37
1346
+ 0
1347
+ 15
1348
+ 45
1349
+ 0
1350
+ 38
1351
+ 20
1352
+ 0
1353
+ 47
1354
+ 101
1355
+ 24
1356
+ 7
1357
+ 25
1358
+ 63
1359
+ 2
1360
+ 49
1361
+ 39
1362
+ 1
1363
+ 49
1364
+ 40
1365
+ 0
1366
+ 7
1367
+ 41
1368
+ 45
1369
+ 5
1370
+ 42
1371
+ 43
1372
+ 43
1373
+ 47
1374
+ 101
1375
+ 24
1376
+ 63
1377
+ 2
1378
+ 83
1379
+ 44
1380
+ 15
1381
+ 45
1382
+ 0
1383
+ 45
1384
+ 20
1385
+ 0
1386
+ 49
1387
+ 39
1388
+ 1
1389
+ 49
1390
+ 40
1391
+ 0
1392
+ 7
1393
+ 32
1394
+ 45
1395
+ 5
1396
+ 46
1397
+ 43
1398
+ 43
1399
+ 47
1400
+ 101
1401
+ 24
1402
+ 63
1403
+ 2
1404
+ 83
1405
+ 44
1406
+ 11
1407
+ I
1408
+ c
1409
+ I
1410
+ 2
1411
+ I
1412
+ 0
1413
+ I
1414
+ 0
1415
+ I
1416
+ -2
1417
+ p
1418
+ 47
1419
+ x
1420
+ 4
1421
+ File
1422
+ n
1423
+ x
1424
+ 7
1425
+ tmp_dir
1426
+ s
1427
+ 10
1428
+ test_3.log
1429
+ x
1430
+ 4
1431
+ join
1432
+ x
1433
+ 10
1434
+ Lumberjack
1435
+ n
1436
+ x
1437
+ 6
1438
+ Device
1439
+ x
1440
+ 14
1441
+ RollingLogFile
1442
+ x
1443
+ 3
1444
+ new
1445
+ x
1446
+ 8
1447
+ allocate
1448
+ x
1449
+ 4
1450
+ Hash
1451
+ x
1452
+ 16
1453
+ new_from_literal
1454
+ x
1455
+ 8
1456
+ template
1457
+ s
1458
+ 8
1459
+ :message
1460
+ x
1461
+ 3
1462
+ []=
1463
+ x
1464
+ 10
1465
+ initialize
1466
+ x
1467
+ 10
1468
+ roll_file?
1469
+ x
1470
+ 5
1471
+ stub!
1472
+ x
1473
+ 10
1474
+ and_return
1475
+ x
1476
+ 5
1477
+ entry
1478
+ x
1479
+ 5
1480
+ write
1481
+ x
1482
+ 5
1483
+ flush
1484
+ n
1485
+ x
1486
+ 4
1487
+ to_s
1488
+ s
1489
+ 7
1490
+ .rolled
1491
+ x
1492
+ 6
1493
+ rename
1494
+ n
1495
+ x
1496
+ 5
1497
+ Entry
1498
+ x
1499
+ 4
1500
+ Time
1501
+ n
1502
+ x
1503
+ 3
1504
+ now
1505
+ s
1506
+ 17
1507
+ Another log entry
1508
+ x
1509
+ 7
1510
+ Globals
1511
+ x
1512
+ 2
1513
+ $$
1514
+ x
1515
+ 2
1516
+ []
1517
+ n
1518
+ x
1519
+ 5
1520
+ close
1521
+ n
1522
+ x
1523
+ 4
1524
+ read
1525
+ x
1526
+ 6
1527
+ should
1528
+ s
1529
+ 13
1530
+ New log entry
1531
+ n
1532
+ x
1533
+ 14
1534
+ LINE_SEPARATOR
1535
+ x
1536
+ 2
1537
+ ==
1538
+ n
1539
+ n
1540
+ p
1541
+ 23
1542
+ I
1543
+ 0
1544
+ I
1545
+ 26
1546
+ I
1547
+ f
1548
+ I
1549
+ 27
1550
+ I
1551
+ 54
1552
+ I
1553
+ 28
1554
+ I
1555
+ 60
1556
+ I
1557
+ 29
1558
+ I
1559
+ 69
1560
+ I
1561
+ 2a
1562
+ I
1563
+ 6f
1564
+ I
1565
+ 2b
1566
+ I
1567
+ 81
1568
+ I
1569
+ 2c
1570
+ I
1571
+ 87
1572
+ I
1573
+ 2d
1574
+ I
1575
+ cf
1576
+ I
1577
+ 2e
1578
+ I
1579
+ d5
1580
+ I
1581
+ 2f
1582
+ I
1583
+ f6
1584
+ I
1585
+ 30
1586
+ I
1587
+ 110
1588
+ x
1589
+ 75
1590
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
1591
+ p
1592
+ 2
1593
+ x
1594
+ 8
1595
+ log_file
1596
+ x
1597
+ 6
1598
+ device
1599
+ s
1600
+ 73
1601
+ should roll the file properly with multiple thread and processes using it
1602
+ M
1603
+ 1
1604
+ p
1605
+ 2
1606
+ x
1607
+ 9
1608
+ for_block
1609
+ t
1610
+ n
1611
+ x
1612
+ 9
1613
+ __block__
1614
+ i
1615
+ 137
1616
+ 45
1617
+ 0
1618
+ 1
1619
+ 2
1620
+ 13
1621
+ 18
1622
+ 2
1623
+ 49
1624
+ 2
1625
+ 1
1626
+ 15
1627
+ 15
1628
+ 45
1629
+ 3
1630
+ 4
1631
+ 5
1632
+ 48
1633
+ 5
1634
+ 7
1635
+ 6
1636
+ 64
1637
+ 49
1638
+ 7
1639
+ 2
1640
+ 19
1641
+ 0
1642
+ 15
1643
+ 4
1644
+ 8
1645
+ 19
1646
+ 1
1647
+ 15
1648
+ 4
1649
+ 4
1650
+ 19
1651
+ 2
1652
+ 15
1653
+ 7
1654
+ 8
1655
+ 19
1656
+ 3
1657
+ 15
1658
+ 4
1659
+ 128
1660
+ 19
1661
+ 4
1662
+ 15
1663
+ 45
1664
+ 9
1665
+ 10
1666
+ 43
1667
+ 11
1668
+ 43
1669
+ 12
1670
+ 19
1671
+ 5
1672
+ 15
1673
+ 7
1674
+ 13
1675
+ 64
1676
+ 19
1677
+ 6
1678
+ 15
1679
+ 20
1680
+ 1
1681
+ 56
1682
+ 14
1683
+ 50
1684
+ 15
1685
+ 0
1686
+ 15
1687
+ 45
1688
+ 16
1689
+ 17
1690
+ 49
1691
+ 18
1692
+ 0
1693
+ 15
1694
+ 78
1695
+ 19
1696
+ 7
1697
+ 15
1698
+ 78
1699
+ 19
1700
+ 8
1701
+ 15
1702
+ 45
1703
+ 19
1704
+ 20
1705
+ 20
1706
+ 0
1707
+ 47
1708
+ 101
1709
+ 21
1710
+ 7
1711
+ 22
1712
+ 63
1713
+ 2
1714
+ 49
1715
+ 23
1716
+ 1
1717
+ 56
1718
+ 24
1719
+ 50
1720
+ 25
1721
+ 0
1722
+ 15
1723
+ 20
1724
+ 8
1725
+ 49
1726
+ 26
1727
+ 0
1728
+ 4
1729
+ 3
1730
+ 85
1731
+ 27
1732
+ 15
1733
+ 20
1734
+ 7
1735
+ 49
1736
+ 26
1737
+ 0
1738
+ 20
1739
+ 1
1740
+ 20
1741
+ 2
1742
+ 49
1743
+ 28
1744
+ 1
1745
+ 20
1746
+ 3
1747
+ 49
1748
+ 28
1749
+ 1
1750
+ 83
1751
+ 29
1752
+ 11
1753
+ I
1754
+ d
1755
+ I
1756
+ 9
1757
+ I
1758
+ 0
1759
+ I
1760
+ 0
1761
+ I
1762
+ -2
1763
+ p
1764
+ 30
1765
+ x
1766
+ 6
1767
+ STDOUT
1768
+ n
1769
+ x
1770
+ 5
1771
+ sync=
1772
+ x
1773
+ 4
1774
+ File
1775
+ n
1776
+ x
1777
+ 7
1778
+ tmp_dir
1779
+ s
1780
+ 10
1781
+ test_4.log
1782
+ x
1783
+ 4
1784
+ join
1785
+ I
1786
+ 190
1787
+ x
1788
+ 10
1789
+ Lumberjack
1790
+ n
1791
+ x
1792
+ 6
1793
+ Logger
1794
+ x
1795
+ 4
1796
+ INFO
1797
+ s
1798
+ 104
1799
+ This is a test message that is written to the log file to indicate what the state of the application is.
1800
+ M
1801
+ 1
1802
+ p
1803
+ 2
1804
+ x
1805
+ 9
1806
+ for_block
1807
+ t
1808
+ n
1809
+ x
1810
+ 9
1811
+ __block__
1812
+ i
1813
+ 9
1814
+ 45
1815
+ 0
1816
+ 1
1817
+ 56
1818
+ 2
1819
+ 50
1820
+ 3
1821
+ 0
1822
+ 11
1823
+ I
1824
+ 3
1825
+ I
1826
+ 0
1827
+ I
1828
+ 0
1829
+ I
1830
+ 0
1831
+ I
1832
+ -2
1833
+ p
1834
+ 4
1835
+ x
1836
+ 7
1837
+ Process
1838
+ n
1839
+ M
1840
+ 1
1841
+ p
1842
+ 2
1843
+ x
1844
+ 9
1845
+ for_block
1846
+ t
1847
+ n
1848
+ x
1849
+ 9
1850
+ __block__
1851
+ i
1852
+ 119
1853
+ 45
1854
+ 0
1855
+ 1
1856
+ 43
1857
+ 2
1858
+ 43
1859
+ 3
1860
+ 13
1861
+ 71
1862
+ 4
1863
+ 47
1864
+ 9
1865
+ 55
1866
+ 47
1867
+ 49
1868
+ 5
1869
+ 0
1870
+ 13
1871
+ 21
1872
+ 2
1873
+ 0
1874
+ 44
1875
+ 43
1876
+ 6
1877
+ 80
1878
+ 49
1879
+ 7
1880
+ 1
1881
+ 13
1882
+ 7
1883
+ 8
1884
+ 21
1885
+ 2
1886
+ 4
1887
+ 49
1888
+ 9
1889
+ 2
1890
+ 15
1891
+ 13
1892
+ 7
1893
+ 10
1894
+ 7
1895
+ 11
1896
+ 64
1897
+ 49
1898
+ 9
1899
+ 2
1900
+ 15
1901
+ 47
1902
+ 49
1903
+ 12
1904
+ 2
1905
+ 15
1906
+ 8
1907
+ 88
1908
+ 21
1909
+ 2
1910
+ 0
1911
+ 44
1912
+ 43
1913
+ 6
1914
+ 80
1915
+ 49
1916
+ 7
1917
+ 1
1918
+ 13
1919
+ 7
1920
+ 8
1921
+ 21
1922
+ 2
1923
+ 4
1924
+ 49
1925
+ 9
1926
+ 2
1927
+ 15
1928
+ 13
1929
+ 7
1930
+ 10
1931
+ 7
1932
+ 11
1933
+ 64
1934
+ 49
1935
+ 9
1936
+ 2
1937
+ 15
1938
+ 49
1939
+ 4
1940
+ 2
1941
+ 19
1942
+ 0
1943
+ 15
1944
+ 35
1945
+ 0
1946
+ 19
1947
+ 1
1948
+ 15
1949
+ 21
1950
+ 2
1951
+ 2
1952
+ 56
1953
+ 13
1954
+ 50
1955
+ 14
1956
+ 0
1957
+ 15
1958
+ 20
1959
+ 1
1960
+ 56
1961
+ 15
1962
+ 50
1963
+ 16
1964
+ 0
1965
+ 15
1966
+ 20
1967
+ 0
1968
+ 49
1969
+ 17
1970
+ 0
1971
+ 11
1972
+ I
1973
+ a
1974
+ I
1975
+ 2
1976
+ I
1977
+ 0
1978
+ I
1979
+ 0
1980
+ I
1981
+ -2
1982
+ p
1983
+ 18
1984
+ x
1985
+ 10
1986
+ Lumberjack
1987
+ n
1988
+ x
1989
+ 6
1990
+ Device
1991
+ x
1992
+ 18
1993
+ SizeRollingLogFile
1994
+ x
1995
+ 3
1996
+ new
1997
+ x
1998
+ 8
1999
+ allocate
2000
+ x
2001
+ 4
2002
+ Hash
2003
+ x
2004
+ 16
2005
+ new_from_literal
2006
+ x
2007
+ 8
2008
+ max_size
2009
+ x
2010
+ 3
2011
+ []=
2012
+ x
2013
+ 8
2014
+ template
2015
+ s
2016
+ 8
2017
+ :message
2018
+ x
2019
+ 10
2020
+ initialize
2021
+ M
2022
+ 1
2023
+ p
2024
+ 2
2025
+ x
2026
+ 9
2027
+ for_block
2028
+ t
2029
+ n
2030
+ x
2031
+ 9
2032
+ __block__
2033
+ i
2034
+ 15
2035
+ 21
2036
+ 1
2037
+ 1
2038
+ 45
2039
+ 0
2040
+ 1
2041
+ 56
2042
+ 2
2043
+ 50
2044
+ 3
2045
+ 0
2046
+ 49
2047
+ 4
2048
+ 1
2049
+ 11
2050
+ I
2051
+ 4
2052
+ I
2053
+ 0
2054
+ I
2055
+ 0
2056
+ I
2057
+ 0
2058
+ I
2059
+ -2
2060
+ p
2061
+ 5
2062
+ x
2063
+ 6
2064
+ Thread
2065
+ n
2066
+ M
2067
+ 1
2068
+ p
2069
+ 2
2070
+ x
2071
+ 9
2072
+ for_block
2073
+ t
2074
+ n
2075
+ x
2076
+ 9
2077
+ __block__
2078
+ i
2079
+ 9
2080
+ 21
2081
+ 4
2082
+ 3
2083
+ 56
2084
+ 0
2085
+ 50
2086
+ 1
2087
+ 0
2088
+ 11
2089
+ I
2090
+ 3
2091
+ I
2092
+ 0
2093
+ I
2094
+ 0
2095
+ I
2096
+ 0
2097
+ I
2098
+ -2
2099
+ p
2100
+ 2
2101
+ M
2102
+ 1
2103
+ p
2104
+ 2
2105
+ x
2106
+ 9
2107
+ for_block
2108
+ t
2109
+ n
2110
+ x
2111
+ 9
2112
+ __block__
2113
+ i
2114
+ 103
2115
+ 57
2116
+ 19
2117
+ 0
2118
+ 15
2119
+ 21
2120
+ 3
2121
+ 0
2122
+ 45
2123
+ 0
2124
+ 1
2125
+ 43
2126
+ 2
2127
+ 13
2128
+ 71
2129
+ 3
2130
+ 47
2131
+ 9
2132
+ 52
2133
+ 47
2134
+ 49
2135
+ 4
2136
+ 0
2137
+ 13
2138
+ 45
2139
+ 5
2140
+ 6
2141
+ 49
2142
+ 7
2143
+ 0
2144
+ 21
2145
+ 5
2146
+ 5
2147
+ 21
2148
+ 5
2149
+ 6
2150
+ 7
2151
+ 8
2152
+ 64
2153
+ 45
2154
+ 9
2155
+ 10
2156
+ 49
2157
+ 11
2158
+ 0
2159
+ 1
2160
+ 47
2161
+ 49
2162
+ 12
2163
+ 6
2164
+ 15
2165
+ 8
2166
+ 77
2167
+ 45
2168
+ 5
2169
+ 13
2170
+ 49
2171
+ 7
2172
+ 0
2173
+ 21
2174
+ 5
2175
+ 5
2176
+ 21
2177
+ 5
2178
+ 6
2179
+ 7
2180
+ 8
2181
+ 64
2182
+ 45
2183
+ 9
2184
+ 14
2185
+ 49
2186
+ 11
2187
+ 0
2188
+ 1
2189
+ 49
2190
+ 3
2191
+ 6
2192
+ 49
2193
+ 15
2194
+ 1
2195
+ 15
2196
+ 20
2197
+ 0
2198
+ 4
2199
+ 10
2200
+ 49
2201
+ 16
2202
+ 1
2203
+ 78
2204
+ 83
2205
+ 17
2206
+ 9
2207
+ 101
2208
+ 21
2209
+ 3
2210
+ 0
2211
+ 49
2212
+ 18
2213
+ 0
2214
+ 8
2215
+ 102
2216
+ 1
2217
+ 11
2218
+ I
2219
+ b
2220
+ I
2221
+ 1
2222
+ I
2223
+ 1
2224
+ I
2225
+ 1
2226
+ n
2227
+ p
2228
+ 19
2229
+ x
2230
+ 10
2231
+ Lumberjack
2232
+ n
2233
+ x
2234
+ 5
2235
+ Entry
2236
+ x
2237
+ 3
2238
+ new
2239
+ x
2240
+ 8
2241
+ allocate
2242
+ x
2243
+ 4
2244
+ Time
2245
+ n
2246
+ x
2247
+ 3
2248
+ now
2249
+ s
2250
+ 4
2251
+ test
2252
+ x
2253
+ 7
2254
+ Process
2255
+ n
2256
+ x
2257
+ 3
2258
+ pid
2259
+ x
2260
+ 10
2261
+ initialize
2262
+ n
2263
+ n
2264
+ x
2265
+ 5
2266
+ write
2267
+ x
2268
+ 1
2269
+ %
2270
+ x
2271
+ 2
2272
+ ==
2273
+ x
2274
+ 5
2275
+ flush
2276
+ p
2277
+ 7
2278
+ I
2279
+ 0
2280
+ I
2281
+ 43
2282
+ I
2283
+ 4
2284
+ I
2285
+ 44
2286
+ I
2287
+ 51
2288
+ I
2289
+ 45
2290
+ I
2291
+ 67
2292
+ x
2293
+ 75
2294
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2295
+ p
2296
+ 1
2297
+ x
2298
+ 1
2299
+ i
2300
+ x
2301
+ 5
2302
+ times
2303
+ p
2304
+ 3
2305
+ I
2306
+ 0
2307
+ I
2308
+ 43
2309
+ I
2310
+ 9
2311
+ x
2312
+ 75
2313
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2314
+ p
2315
+ 0
2316
+ x
2317
+ 3
2318
+ new
2319
+ x
2320
+ 2
2321
+ <<
2322
+ p
2323
+ 3
2324
+ I
2325
+ 0
2326
+ I
2327
+ 42
2328
+ I
2329
+ f
2330
+ x
2331
+ 75
2332
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2333
+ p
2334
+ 0
2335
+ x
2336
+ 5
2337
+ times
2338
+ M
2339
+ 1
2340
+ p
2341
+ 2
2342
+ x
2343
+ 9
2344
+ for_block
2345
+ t
2346
+ n
2347
+ x
2348
+ 9
2349
+ __block__
2350
+ i
2351
+ 10
2352
+ 57
2353
+ 19
2354
+ 0
2355
+ 15
2356
+ 20
2357
+ 0
2358
+ 49
2359
+ 0
2360
+ 0
2361
+ 11
2362
+ I
2363
+ 3
2364
+ I
2365
+ 1
2366
+ I
2367
+ 1
2368
+ I
2369
+ 1
2370
+ n
2371
+ p
2372
+ 1
2373
+ x
2374
+ 4
2375
+ join
2376
+ p
2377
+ 3
2378
+ I
2379
+ 0
2380
+ I
2381
+ 49
2382
+ I
2383
+ a
2384
+ x
2385
+ 75
2386
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2387
+ p
2388
+ 1
2389
+ x
2390
+ 6
2391
+ thread
2392
+ x
2393
+ 4
2394
+ each
2395
+ x
2396
+ 5
2397
+ close
2398
+ p
2399
+ 11
2400
+ I
2401
+ 0
2402
+ I
2403
+ 3f
2404
+ I
2405
+ 5b
2406
+ I
2407
+ 40
2408
+ I
2409
+ 60
2410
+ I
2411
+ 41
2412
+ I
2413
+ 69
2414
+ I
2415
+ 49
2416
+ I
2417
+ 71
2418
+ I
2419
+ 4a
2420
+ I
2421
+ 77
2422
+ x
2423
+ 75
2424
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2425
+ p
2426
+ 2
2427
+ x
2428
+ 6
2429
+ device
2430
+ x
2431
+ 7
2432
+ threads
2433
+ x
2434
+ 4
2435
+ fork
2436
+ p
2437
+ 3
2438
+ I
2439
+ 0
2440
+ I
2441
+ 3e
2442
+ I
2443
+ 9
2444
+ x
2445
+ 75
2446
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2447
+ p
2448
+ 0
2449
+ x
2450
+ 5
2451
+ times
2452
+ x
2453
+ 7
2454
+ Process
2455
+ n
2456
+ x
2457
+ 7
2458
+ waitall
2459
+ x
2460
+ 3
2461
+ Dir
2462
+ n
2463
+ x
2464
+ 4
2465
+ to_s
2466
+ s
2467
+ 1
2468
+ *
2469
+ x
2470
+ 4
2471
+ glob
2472
+ M
2473
+ 1
2474
+ p
2475
+ 2
2476
+ x
2477
+ 9
2478
+ for_block
2479
+ t
2480
+ n
2481
+ x
2482
+ 9
2483
+ __block__
2484
+ i
2485
+ 85
2486
+ 57
2487
+ 19
2488
+ 0
2489
+ 15
2490
+ 21
2491
+ 1
2492
+ 8
2493
+ 79
2494
+ 81
2495
+ 0
2496
+ 22
2497
+ 1
2498
+ 8
2499
+ 15
2500
+ 45
2501
+ 1
2502
+ 2
2503
+ 20
2504
+ 0
2505
+ 49
2506
+ 3
2507
+ 1
2508
+ 45
2509
+ 4
2510
+ 5
2511
+ 43
2512
+ 6
2513
+ 49
2514
+ 7
2515
+ 1
2516
+ 19
2517
+ 1
2518
+ 15
2519
+ 21
2520
+ 1
2521
+ 7
2522
+ 20
2523
+ 1
2524
+ 49
2525
+ 8
2526
+ 0
2527
+ 81
2528
+ 0
2529
+ 22
2530
+ 1
2531
+ 7
2532
+ 15
2533
+ 20
2534
+ 1
2535
+ 56
2536
+ 9
2537
+ 50
2538
+ 10
2539
+ 0
2540
+ 15
2541
+ 20
2542
+ 0
2543
+ 21
2544
+ 1
2545
+ 0
2546
+ 83
2547
+ 11
2548
+ 9
2549
+ 67
2550
+ 1
2551
+ 8
2552
+ 84
2553
+ 45
2554
+ 1
2555
+ 12
2556
+ 20
2557
+ 0
2558
+ 49
2559
+ 8
2560
+ 1
2561
+ 49
2562
+ 13
2563
+ 0
2564
+ 21
2565
+ 1
2566
+ 4
2567
+ 49
2568
+ 14
2569
+ 1
2570
+ 11
2571
+ I
2572
+ 5
2573
+ I
2574
+ 2
2575
+ I
2576
+ 1
2577
+ I
2578
+ 1
2579
+ n
2580
+ p
2581
+ 15
2582
+ x
2583
+ 1
2584
+ +
2585
+ x
2586
+ 4
2587
+ File
2588
+ n
2589
+ x
2590
+ 4
2591
+ read
2592
+ x
2593
+ 10
2594
+ Lumberjack
2595
+ n
2596
+ x
2597
+ 14
2598
+ LINE_SEPARATOR
2599
+ x
2600
+ 5
2601
+ split
2602
+ x
2603
+ 4
2604
+ size
2605
+ M
2606
+ 1
2607
+ p
2608
+ 2
2609
+ x
2610
+ 9
2611
+ for_block
2612
+ t
2613
+ n
2614
+ x
2615
+ 9
2616
+ __block__
2617
+ i
2618
+ 15
2619
+ 57
2620
+ 19
2621
+ 0
2622
+ 15
2623
+ 20
2624
+ 0
2625
+ 49
2626
+ 0
2627
+ 0
2628
+ 21
2629
+ 2
2630
+ 6
2631
+ 83
2632
+ 1
2633
+ 11
2634
+ I
2635
+ 4
2636
+ I
2637
+ 1
2638
+ I
2639
+ 1
2640
+ I
2641
+ 1
2642
+ n
2643
+ p
2644
+ 2
2645
+ x
2646
+ 6
2647
+ should
2648
+ x
2649
+ 2
2650
+ ==
2651
+ p
2652
+ 5
2653
+ I
2654
+ 0
2655
+ I
2656
+ 55
2657
+ I
2658
+ 4
2659
+ I
2660
+ 56
2661
+ I
2662
+ f
2663
+ x
2664
+ 75
2665
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2666
+ p
2667
+ 1
2668
+ x
2669
+ 4
2670
+ line
2671
+ x
2672
+ 4
2673
+ each
2674
+ x
2675
+ 2
2676
+ ==
2677
+ n
2678
+ x
2679
+ 6
2680
+ should
2681
+ x
2682
+ 2
2683
+ >=
2684
+ p
2685
+ 15
2686
+ I
2687
+ 0
2688
+ I
2689
+ 51
2690
+ I
2691
+ 4
2692
+ I
2693
+ 52
2694
+ I
2695
+ e
2696
+ I
2697
+ 53
2698
+ I
2699
+ 21
2700
+ I
2701
+ 54
2702
+ I
2703
+ 2f
2704
+ I
2705
+ 55
2706
+ I
2707
+ 37
2708
+ I
2709
+ 58
2710
+ I
2711
+ 43
2712
+ I
2713
+ 59
2714
+ I
2715
+ 55
2716
+ x
2717
+ 75
2718
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2719
+ p
2720
+ 2
2721
+ x
2722
+ 4
2723
+ file
2724
+ x
2725
+ 5
2726
+ lines
2727
+ x
2728
+ 4
2729
+ each
2730
+ x
2731
+ 6
2732
+ should
2733
+ x
2734
+ 1
2735
+ >
2736
+ x
2737
+ 1
2738
+ *
2739
+ x
2740
+ 2
2741
+ ==
2742
+ p
2743
+ 31
2744
+ I
2745
+ 0
2746
+ I
2747
+ 34
2748
+ I
2749
+ c
2750
+ I
2751
+ 35
2752
+ I
2753
+ 1b
2754
+ I
2755
+ 36
2756
+ I
2757
+ 20
2758
+ I
2759
+ 37
2760
+ I
2761
+ 25
2762
+ I
2763
+ 38
2764
+ I
2765
+ 2a
2766
+ I
2767
+ 39
2768
+ I
2769
+ 2f
2770
+ I
2771
+ 3a
2772
+ I
2773
+ 39
2774
+ I
2775
+ 3b
2776
+ I
2777
+ 3f
2778
+ I
2779
+ 3d
2780
+ I
2781
+ 47
2782
+ I
2783
+ 4d
2784
+ I
2785
+ 4e
2786
+ I
2787
+ 4f
2788
+ I
2789
+ 52
2790
+ I
2791
+ 50
2792
+ I
2793
+ 56
2794
+ I
2795
+ 51
2796
+ I
2797
+ 6b
2798
+ I
2799
+ 5d
2800
+ I
2801
+ 75
2802
+ I
2803
+ 5e
2804
+ I
2805
+ 89
2806
+ x
2807
+ 75
2808
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2809
+ p
2810
+ 9
2811
+ x
2812
+ 8
2813
+ log_file
2814
+ x
2815
+ 13
2816
+ process_count
2817
+ x
2818
+ 12
2819
+ thread_count
2820
+ x
2821
+ 11
2822
+ entry_count
2823
+ x
2824
+ 8
2825
+ max_size
2826
+ x
2827
+ 8
2828
+ severity
2829
+ x
2830
+ 7
2831
+ message
2832
+ x
2833
+ 10
2834
+ line_count
2835
+ x
2836
+ 10
2837
+ file_count
2838
+ p
2839
+ 15
2840
+ I
2841
+ 0
2842
+ I
2843
+ 5
2844
+ I
2845
+ a
2846
+ I
2847
+ 9
2848
+ I
2849
+ 14
2850
+ I
2851
+ d
2852
+ I
2853
+ 1e
2854
+ I
2855
+ f
2856
+ I
2857
+ 29
2858
+ I
2859
+ 17
2860
+ I
2861
+ 34
2862
+ I
2863
+ 25
2864
+ I
2865
+ 3f
2866
+ I
2867
+ 33
2868
+ I
2869
+ 4a
2870
+ x
2871
+ 75
2872
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2873
+ p
2874
+ 0
2875
+ x
2876
+ 8
2877
+ describe
2878
+ p
2879
+ 5
2880
+ I
2881
+ 0
2882
+ I
2883
+ 1
2884
+ I
2885
+ 9
2886
+ I
2887
+ 3
2888
+ I
2889
+ 1a
2890
+ x
2891
+ 75
2892
+ /Users/bdurand/dev/projects/lumberjack/spec/device/rolling_log_file_spec.rb
2893
+ p
2894
+ 0