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