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