tzinfo 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of tzinfo might be problematic. Click here for more details.
- data/CHANGES +25 -0
- data/Rakefile +1 -1
- data/lib/tzinfo/definitions/America/Dawson.rb +89 -89
- data/lib/tzinfo/definitions/America/Goose_Bay.rb +89 -89
- data/lib/tzinfo/definitions/America/Inuvik.rb +89 -89
- data/lib/tzinfo/definitions/America/Port__m__au__m__Prince.rb +91 -1
- data/lib/tzinfo/definitions/America/St_Johns.rb +89 -89
- data/lib/tzinfo/definitions/America/Vancouver.rb +89 -89
- data/lib/tzinfo/definitions/America/Whitehorse.rb +89 -89
- data/lib/tzinfo/definitions/America/Winnipeg.rb +132 -132
- data/lib/tzinfo/definitions/America/Yellowknife.rb +89 -89
- data/lib/tzinfo/definitions/Asia/Colombo.rb +2 -2
- data/lib/tzinfo/time_or_datetime.rb +15 -3
- data/lib/tzinfo/timezone_period.rb +2 -1
- data/lib/tzinfo/timezone_period_list.rb +9 -8
- data/lib/tzinfo/tzdataparser.rb +1 -1
- data/test/tc_time_or_datetime.rb +8 -2
- data/test/tc_timezone.rb +45 -3
- data/test/tc_timezone_period.rb +7 -3
- data/test/tc_timezone_period_list.rb +12 -0
- metadata +852 -845
@@ -212,6 +212,18 @@ class TCTimezonePeriod < Test::Unit::TestCase
|
|
212
212
|
}
|
213
213
|
end
|
214
214
|
|
215
|
+
def test_periods_for_local_warsaw
|
216
|
+
list = TimezonePeriodList.new
|
217
|
+
list.add_unbounded_start {TimezonePeriod.new(nil,DateTime.new(1879,12,31,22,36,0),5040,0,:LMT)}
|
218
|
+
list.add(1879,12) {TimezonePeriod.new(DateTime.new(1879,12,31,22,36,0),DateTime.new(1915,8,4,22,36,0),5040,0,:WMT)}
|
219
|
+
list.add(1915,8) {TimezonePeriod.new(DateTime.new(1915,8,4,22,36,0),DateTime.new(1916,4,30,22,0,0),3600,0,:CET)}
|
220
|
+
|
221
|
+
assert_periods_equal([
|
222
|
+
TimezonePeriod.new(DateTime.new(1879,12,31,22,36,0),DateTime.new(1915,8,4,22,36,0),5040,0,:WMT),
|
223
|
+
TimezonePeriod.new(DateTime.new(1915,8,4,22,36,0),DateTime.new(1916,4,30,22,0,0),3600,0,:CET)],
|
224
|
+
list.periods_for_local(DateTime.new(1915,8,4,23,40,0)))
|
225
|
+
end
|
226
|
+
|
215
227
|
def test_period_for_local_unbounded
|
216
228
|
list = TimezonePeriodList.new
|
217
229
|
list.add_unbounded_start { TimezonePeriod.new(nil,DateTime.new(2000,10,2,1,0,0),-18000,3600,:'TESTD') }
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.11
|
3
3
|
specification_version: 1
|
4
4
|
name: tzinfo
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.2.
|
7
|
-
date: 2006-04-
|
6
|
+
version: 0.2.1
|
7
|
+
date: 2006-04-17 00:00:00 +01:00
|
8
8
|
summary: Daylight-savings aware timezone library
|
9
9
|
require_paths:
|
10
|
-
|
10
|
+
- lib
|
11
11
|
email: phil.ross@gmail.com
|
12
12
|
homepage: http://tzinfo.rubyforge.org/
|
13
13
|
rubyforge_project: tzinfo
|
@@ -18,854 +18,861 @@ bindir: bin
|
|
18
18
|
has_rdoc: false
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
20
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
version: 0.0.0
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
25
24
|
version:
|
26
25
|
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
27
28
|
authors:
|
28
|
-
|
29
|
+
- Philip Ross
|
29
30
|
files:
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
31
|
+
- CHANGES
|
32
|
+
- LICENSE
|
33
|
+
- Rakefile
|
34
|
+
- README
|
35
|
+
- lib/tzinfo
|
36
|
+
- lib/tzinfo.rb
|
37
|
+
- lib/tzinfo/countries
|
38
|
+
- lib/tzinfo/country.rb
|
39
|
+
- lib/tzinfo/definitions
|
40
|
+
- lib/tzinfo/offset_rationals.rb
|
41
|
+
- lib/tzinfo/timezone.rb
|
42
|
+
- lib/tzinfo/timezone_period.rb
|
43
|
+
- lib/tzinfo/timezone_period_list.rb
|
44
|
+
- lib/tzinfo/time_or_datetime.rb
|
45
|
+
- lib/tzinfo/tzdataparser.rb
|
46
|
+
- lib/tzinfo/countries/AD.rb
|
47
|
+
- lib/tzinfo/countries/AE.rb
|
48
|
+
- lib/tzinfo/countries/AF.rb
|
49
|
+
- lib/tzinfo/countries/AG.rb
|
50
|
+
- lib/tzinfo/countries/AI.rb
|
51
|
+
- lib/tzinfo/countries/AL.rb
|
52
|
+
- lib/tzinfo/countries/AM.rb
|
53
|
+
- lib/tzinfo/countries/AN.rb
|
54
|
+
- lib/tzinfo/countries/AO.rb
|
55
|
+
- lib/tzinfo/countries/AQ.rb
|
56
|
+
- lib/tzinfo/countries/AR.rb
|
57
|
+
- lib/tzinfo/countries/AS.rb
|
58
|
+
- lib/tzinfo/countries/AT.rb
|
59
|
+
- lib/tzinfo/countries/AU.rb
|
60
|
+
- lib/tzinfo/countries/AW.rb
|
61
|
+
- lib/tzinfo/countries/AX.rb
|
62
|
+
- lib/tzinfo/countries/AZ.rb
|
63
|
+
- lib/tzinfo/countries/BA.rb
|
64
|
+
- lib/tzinfo/countries/BB.rb
|
65
|
+
- lib/tzinfo/countries/BD.rb
|
66
|
+
- lib/tzinfo/countries/BE.rb
|
67
|
+
- lib/tzinfo/countries/BF.rb
|
68
|
+
- lib/tzinfo/countries/BG.rb
|
69
|
+
- lib/tzinfo/countries/BH.rb
|
70
|
+
- lib/tzinfo/countries/BI.rb
|
71
|
+
- lib/tzinfo/countries/BJ.rb
|
72
|
+
- lib/tzinfo/countries/BM.rb
|
73
|
+
- lib/tzinfo/countries/BN.rb
|
74
|
+
- lib/tzinfo/countries/BO.rb
|
75
|
+
- lib/tzinfo/countries/BR.rb
|
76
|
+
- lib/tzinfo/countries/BS.rb
|
77
|
+
- lib/tzinfo/countries/BT.rb
|
78
|
+
- lib/tzinfo/countries/BV.rb
|
79
|
+
- lib/tzinfo/countries/BW.rb
|
80
|
+
- lib/tzinfo/countries/BY.rb
|
81
|
+
- lib/tzinfo/countries/BZ.rb
|
82
|
+
- lib/tzinfo/countries/CA.rb
|
83
|
+
- lib/tzinfo/countries/CC.rb
|
84
|
+
- lib/tzinfo/countries/CD.rb
|
85
|
+
- lib/tzinfo/countries/CF.rb
|
86
|
+
- lib/tzinfo/countries/CG.rb
|
87
|
+
- lib/tzinfo/countries/CH.rb
|
88
|
+
- lib/tzinfo/countries/CI.rb
|
89
|
+
- lib/tzinfo/countries/CK.rb
|
90
|
+
- lib/tzinfo/countries/CL.rb
|
91
|
+
- lib/tzinfo/countries/CM.rb
|
92
|
+
- lib/tzinfo/countries/CN.rb
|
93
|
+
- lib/tzinfo/countries/CO.rb
|
94
|
+
- lib/tzinfo/countries/CR.rb
|
95
|
+
- lib/tzinfo/countries/CS.rb
|
96
|
+
- lib/tzinfo/countries/CU.rb
|
97
|
+
- lib/tzinfo/countries/CV.rb
|
98
|
+
- lib/tzinfo/countries/CX.rb
|
99
|
+
- lib/tzinfo/countries/CY.rb
|
100
|
+
- lib/tzinfo/countries/CZ.rb
|
101
|
+
- lib/tzinfo/countries/DE.rb
|
102
|
+
- lib/tzinfo/countries/DJ.rb
|
103
|
+
- lib/tzinfo/countries/DK.rb
|
104
|
+
- lib/tzinfo/countries/DM.rb
|
105
|
+
- lib/tzinfo/countries/DO.rb
|
106
|
+
- lib/tzinfo/countries/DZ.rb
|
107
|
+
- lib/tzinfo/countries/EC.rb
|
108
|
+
- lib/tzinfo/countries/EE.rb
|
109
|
+
- lib/tzinfo/countries/EG.rb
|
110
|
+
- lib/tzinfo/countries/EH.rb
|
111
|
+
- lib/tzinfo/countries/ER.rb
|
112
|
+
- lib/tzinfo/countries/ES.rb
|
113
|
+
- lib/tzinfo/countries/ET.rb
|
114
|
+
- lib/tzinfo/countries/FI.rb
|
115
|
+
- lib/tzinfo/countries/FJ.rb
|
116
|
+
- lib/tzinfo/countries/FK.rb
|
117
|
+
- lib/tzinfo/countries/FM.rb
|
118
|
+
- lib/tzinfo/countries/FO.rb
|
119
|
+
- lib/tzinfo/countries/FR.rb
|
120
|
+
- lib/tzinfo/countries/GA.rb
|
121
|
+
- lib/tzinfo/countries/GB.rb
|
122
|
+
- lib/tzinfo/countries/GD.rb
|
123
|
+
- lib/tzinfo/countries/GE.rb
|
124
|
+
- lib/tzinfo/countries/GF.rb
|
125
|
+
- lib/tzinfo/countries/GH.rb
|
126
|
+
- lib/tzinfo/countries/GI.rb
|
127
|
+
- lib/tzinfo/countries/GL.rb
|
128
|
+
- lib/tzinfo/countries/GM.rb
|
129
|
+
- lib/tzinfo/countries/GN.rb
|
130
|
+
- lib/tzinfo/countries/GP.rb
|
131
|
+
- lib/tzinfo/countries/GQ.rb
|
132
|
+
- lib/tzinfo/countries/GR.rb
|
133
|
+
- lib/tzinfo/countries/GS.rb
|
134
|
+
- lib/tzinfo/countries/GT.rb
|
135
|
+
- lib/tzinfo/countries/GU.rb
|
136
|
+
- lib/tzinfo/countries/GW.rb
|
137
|
+
- lib/tzinfo/countries/GY.rb
|
138
|
+
- lib/tzinfo/countries/HK.rb
|
139
|
+
- lib/tzinfo/countries/HM.rb
|
140
|
+
- lib/tzinfo/countries/HN.rb
|
141
|
+
- lib/tzinfo/countries/HR.rb
|
142
|
+
- lib/tzinfo/countries/HT.rb
|
143
|
+
- lib/tzinfo/countries/HU.rb
|
144
|
+
- lib/tzinfo/countries/ID.rb
|
145
|
+
- lib/tzinfo/countries/IE.rb
|
146
|
+
- lib/tzinfo/countries/IL.rb
|
147
|
+
- lib/tzinfo/countries/IN.rb
|
148
|
+
- lib/tzinfo/countries/Index.rb
|
149
|
+
- lib/tzinfo/countries/IO.rb
|
150
|
+
- lib/tzinfo/countries/IQ.rb
|
151
|
+
- lib/tzinfo/countries/IR.rb
|
152
|
+
- lib/tzinfo/countries/IS.rb
|
153
|
+
- lib/tzinfo/countries/IT.rb
|
154
|
+
- lib/tzinfo/countries/JM.rb
|
155
|
+
- lib/tzinfo/countries/JO.rb
|
156
|
+
- lib/tzinfo/countries/JP.rb
|
157
|
+
- lib/tzinfo/countries/KE.rb
|
158
|
+
- lib/tzinfo/countries/KG.rb
|
159
|
+
- lib/tzinfo/countries/KH.rb
|
160
|
+
- lib/tzinfo/countries/KI.rb
|
161
|
+
- lib/tzinfo/countries/KM.rb
|
162
|
+
- lib/tzinfo/countries/KN.rb
|
163
|
+
- lib/tzinfo/countries/KP.rb
|
164
|
+
- lib/tzinfo/countries/KR.rb
|
165
|
+
- lib/tzinfo/countries/KW.rb
|
166
|
+
- lib/tzinfo/countries/KY.rb
|
167
|
+
- lib/tzinfo/countries/KZ.rb
|
168
|
+
- lib/tzinfo/countries/LA.rb
|
169
|
+
- lib/tzinfo/countries/LB.rb
|
170
|
+
- lib/tzinfo/countries/LC.rb
|
171
|
+
- lib/tzinfo/countries/LI.rb
|
172
|
+
- lib/tzinfo/countries/LK.rb
|
173
|
+
- lib/tzinfo/countries/LR.rb
|
174
|
+
- lib/tzinfo/countries/LS.rb
|
175
|
+
- lib/tzinfo/countries/LT.rb
|
176
|
+
- lib/tzinfo/countries/LU.rb
|
177
|
+
- lib/tzinfo/countries/LV.rb
|
178
|
+
- lib/tzinfo/countries/LY.rb
|
179
|
+
- lib/tzinfo/countries/MA.rb
|
180
|
+
- lib/tzinfo/countries/MC.rb
|
181
|
+
- lib/tzinfo/countries/MD.rb
|
182
|
+
- lib/tzinfo/countries/MG.rb
|
183
|
+
- lib/tzinfo/countries/MH.rb
|
184
|
+
- lib/tzinfo/countries/MK.rb
|
185
|
+
- lib/tzinfo/countries/ML.rb
|
186
|
+
- lib/tzinfo/countries/MM.rb
|
187
|
+
- lib/tzinfo/countries/MN.rb
|
188
|
+
- lib/tzinfo/countries/MO.rb
|
189
|
+
- lib/tzinfo/countries/MP.rb
|
190
|
+
- lib/tzinfo/countries/MQ.rb
|
191
|
+
- lib/tzinfo/countries/MR.rb
|
192
|
+
- lib/tzinfo/countries/MS.rb
|
193
|
+
- lib/tzinfo/countries/MT.rb
|
194
|
+
- lib/tzinfo/countries/MU.rb
|
195
|
+
- lib/tzinfo/countries/MV.rb
|
196
|
+
- lib/tzinfo/countries/MW.rb
|
197
|
+
- lib/tzinfo/countries/MX.rb
|
198
|
+
- lib/tzinfo/countries/MY.rb
|
199
|
+
- lib/tzinfo/countries/MZ.rb
|
200
|
+
- lib/tzinfo/countries/NA.rb
|
201
|
+
- lib/tzinfo/countries/NC.rb
|
202
|
+
- lib/tzinfo/countries/NE.rb
|
203
|
+
- lib/tzinfo/countries/NF.rb
|
204
|
+
- lib/tzinfo/countries/NG.rb
|
205
|
+
- lib/tzinfo/countries/NI.rb
|
206
|
+
- lib/tzinfo/countries/NL.rb
|
207
|
+
- lib/tzinfo/countries/NO.rb
|
208
|
+
- lib/tzinfo/countries/NP.rb
|
209
|
+
- lib/tzinfo/countries/NR.rb
|
210
|
+
- lib/tzinfo/countries/NU.rb
|
211
|
+
- lib/tzinfo/countries/NZ.rb
|
212
|
+
- lib/tzinfo/countries/OM.rb
|
213
|
+
- lib/tzinfo/countries/PA.rb
|
214
|
+
- lib/tzinfo/countries/PE.rb
|
215
|
+
- lib/tzinfo/countries/PF.rb
|
216
|
+
- lib/tzinfo/countries/PG.rb
|
217
|
+
- lib/tzinfo/countries/PH.rb
|
218
|
+
- lib/tzinfo/countries/PK.rb
|
219
|
+
- lib/tzinfo/countries/PL.rb
|
220
|
+
- lib/tzinfo/countries/PM.rb
|
221
|
+
- lib/tzinfo/countries/PN.rb
|
222
|
+
- lib/tzinfo/countries/PR.rb
|
223
|
+
- lib/tzinfo/countries/PS.rb
|
224
|
+
- lib/tzinfo/countries/PT.rb
|
225
|
+
- lib/tzinfo/countries/PW.rb
|
226
|
+
- lib/tzinfo/countries/PY.rb
|
227
|
+
- lib/tzinfo/countries/QA.rb
|
228
|
+
- lib/tzinfo/countries/RE.rb
|
229
|
+
- lib/tzinfo/countries/RO.rb
|
230
|
+
- lib/tzinfo/countries/RU.rb
|
231
|
+
- lib/tzinfo/countries/RW.rb
|
232
|
+
- lib/tzinfo/countries/SA.rb
|
233
|
+
- lib/tzinfo/countries/SB.rb
|
234
|
+
- lib/tzinfo/countries/SC.rb
|
235
|
+
- lib/tzinfo/countries/SD.rb
|
236
|
+
- lib/tzinfo/countries/SE.rb
|
237
|
+
- lib/tzinfo/countries/SG.rb
|
238
|
+
- lib/tzinfo/countries/SH.rb
|
239
|
+
- lib/tzinfo/countries/SI.rb
|
240
|
+
- lib/tzinfo/countries/SJ.rb
|
241
|
+
- lib/tzinfo/countries/SK.rb
|
242
|
+
- lib/tzinfo/countries/SL.rb
|
243
|
+
- lib/tzinfo/countries/SM.rb
|
244
|
+
- lib/tzinfo/countries/SN.rb
|
245
|
+
- lib/tzinfo/countries/SO.rb
|
246
|
+
- lib/tzinfo/countries/SR.rb
|
247
|
+
- lib/tzinfo/countries/ST.rb
|
248
|
+
- lib/tzinfo/countries/SV.rb
|
249
|
+
- lib/tzinfo/countries/SY.rb
|
250
|
+
- lib/tzinfo/countries/SZ.rb
|
251
|
+
- lib/tzinfo/countries/TC.rb
|
252
|
+
- lib/tzinfo/countries/TD.rb
|
253
|
+
- lib/tzinfo/countries/TF.rb
|
254
|
+
- lib/tzinfo/countries/TG.rb
|
255
|
+
- lib/tzinfo/countries/TH.rb
|
256
|
+
- lib/tzinfo/countries/TJ.rb
|
257
|
+
- lib/tzinfo/countries/TK.rb
|
258
|
+
- lib/tzinfo/countries/TL.rb
|
259
|
+
- lib/tzinfo/countries/TM.rb
|
260
|
+
- lib/tzinfo/countries/TN.rb
|
261
|
+
- lib/tzinfo/countries/TO.rb
|
262
|
+
- lib/tzinfo/countries/TR.rb
|
263
|
+
- lib/tzinfo/countries/TT.rb
|
264
|
+
- lib/tzinfo/countries/TV.rb
|
265
|
+
- lib/tzinfo/countries/TW.rb
|
266
|
+
- lib/tzinfo/countries/TZ.rb
|
267
|
+
- lib/tzinfo/countries/UA.rb
|
268
|
+
- lib/tzinfo/countries/UG.rb
|
269
|
+
- lib/tzinfo/countries/UM.rb
|
270
|
+
- lib/tzinfo/countries/US.rb
|
271
|
+
- lib/tzinfo/countries/UY.rb
|
272
|
+
- lib/tzinfo/countries/UZ.rb
|
273
|
+
- lib/tzinfo/countries/VA.rb
|
274
|
+
- lib/tzinfo/countries/VC.rb
|
275
|
+
- lib/tzinfo/countries/VE.rb
|
276
|
+
- lib/tzinfo/countries/VG.rb
|
277
|
+
- lib/tzinfo/countries/VI.rb
|
278
|
+
- lib/tzinfo/countries/VN.rb
|
279
|
+
- lib/tzinfo/countries/VU.rb
|
280
|
+
- lib/tzinfo/countries/WF.rb
|
281
|
+
- lib/tzinfo/countries/WS.rb
|
282
|
+
- lib/tzinfo/countries/YE.rb
|
283
|
+
- lib/tzinfo/countries/YT.rb
|
284
|
+
- lib/tzinfo/countries/ZA.rb
|
285
|
+
- lib/tzinfo/countries/ZM.rb
|
286
|
+
- lib/tzinfo/countries/ZW.rb
|
287
|
+
- lib/tzinfo/definitions/Africa
|
288
|
+
- lib/tzinfo/definitions/America
|
289
|
+
- lib/tzinfo/definitions/Antarctica
|
290
|
+
- lib/tzinfo/definitions/Arctic
|
291
|
+
- lib/tzinfo/definitions/Asia
|
292
|
+
- lib/tzinfo/definitions/Atlantic
|
293
|
+
- lib/tzinfo/definitions/Australia
|
294
|
+
- lib/tzinfo/definitions/Brazil
|
295
|
+
- lib/tzinfo/definitions/Canada
|
296
|
+
- lib/tzinfo/definitions/CET.rb
|
297
|
+
- lib/tzinfo/definitions/Chile
|
298
|
+
- lib/tzinfo/definitions/CST6CDT.rb
|
299
|
+
- lib/tzinfo/definitions/Cuba.rb
|
300
|
+
- lib/tzinfo/definitions/EET.rb
|
301
|
+
- lib/tzinfo/definitions/Egypt.rb
|
302
|
+
- lib/tzinfo/definitions/Eire.rb
|
303
|
+
- lib/tzinfo/definitions/EST.rb
|
304
|
+
- lib/tzinfo/definitions/EST5EDT.rb
|
305
|
+
- lib/tzinfo/definitions/Etc
|
306
|
+
- lib/tzinfo/definitions/Europe
|
307
|
+
- lib/tzinfo/definitions/GB.rb
|
308
|
+
- lib/tzinfo/definitions/GB__m__Eire.rb
|
309
|
+
- lib/tzinfo/definitions/GMT.rb
|
310
|
+
- lib/tzinfo/definitions/GMT0.rb
|
311
|
+
- lib/tzinfo/definitions/GMT__m__0.rb
|
312
|
+
- lib/tzinfo/definitions/GMT__p__0.rb
|
313
|
+
- lib/tzinfo/definitions/Greenwich.rb
|
314
|
+
- lib/tzinfo/definitions/Hongkong.rb
|
315
|
+
- lib/tzinfo/definitions/HST.rb
|
316
|
+
- lib/tzinfo/definitions/Iceland.rb
|
317
|
+
- lib/tzinfo/definitions/Indian
|
318
|
+
- lib/tzinfo/definitions/Iran.rb
|
319
|
+
- lib/tzinfo/definitions/Israel.rb
|
320
|
+
- lib/tzinfo/definitions/Jamaica.rb
|
321
|
+
- lib/tzinfo/definitions/Japan.rb
|
322
|
+
- lib/tzinfo/definitions/Kwajalein.rb
|
323
|
+
- lib/tzinfo/definitions/Libya.rb
|
324
|
+
- lib/tzinfo/definitions/MET.rb
|
325
|
+
- lib/tzinfo/definitions/Mexico
|
326
|
+
- lib/tzinfo/definitions/Mideast
|
327
|
+
- lib/tzinfo/definitions/MST.rb
|
328
|
+
- lib/tzinfo/definitions/MST7MDT.rb
|
329
|
+
- lib/tzinfo/definitions/Navajo.rb
|
330
|
+
- lib/tzinfo/definitions/NZ.rb
|
331
|
+
- lib/tzinfo/definitions/NZ__m__CHAT.rb
|
332
|
+
- lib/tzinfo/definitions/Pacific
|
333
|
+
- lib/tzinfo/definitions/Poland.rb
|
334
|
+
- lib/tzinfo/definitions/Portugal.rb
|
335
|
+
- lib/tzinfo/definitions/PRC.rb
|
336
|
+
- lib/tzinfo/definitions/PST8PDT.rb
|
337
|
+
- lib/tzinfo/definitions/ROC.rb
|
338
|
+
- lib/tzinfo/definitions/ROK.rb
|
339
|
+
- lib/tzinfo/definitions/Singapore.rb
|
340
|
+
- lib/tzinfo/definitions/Turkey.rb
|
341
|
+
- lib/tzinfo/definitions/UCT.rb
|
342
|
+
- lib/tzinfo/definitions/Universal.rb
|
343
|
+
- lib/tzinfo/definitions/US
|
344
|
+
- lib/tzinfo/definitions/UTC.rb
|
345
|
+
- lib/tzinfo/definitions/WET.rb
|
346
|
+
- lib/tzinfo/definitions/W__m__SU.rb
|
347
|
+
- lib/tzinfo/definitions/Zulu.rb
|
348
|
+
- lib/tzinfo/definitions/Africa/Abidjan.rb
|
349
|
+
- lib/tzinfo/definitions/Africa/Accra.rb
|
350
|
+
- lib/tzinfo/definitions/Africa/Addis_Ababa.rb
|
351
|
+
- lib/tzinfo/definitions/Africa/Algiers.rb
|
352
|
+
- lib/tzinfo/definitions/Africa/Asmera.rb
|
353
|
+
- lib/tzinfo/definitions/Africa/Bamako.rb
|
354
|
+
- lib/tzinfo/definitions/Africa/Bangui.rb
|
355
|
+
- lib/tzinfo/definitions/Africa/Banjul.rb
|
356
|
+
- lib/tzinfo/definitions/Africa/Bissau.rb
|
357
|
+
- lib/tzinfo/definitions/Africa/Blantyre.rb
|
358
|
+
- lib/tzinfo/definitions/Africa/Brazzaville.rb
|
359
|
+
- lib/tzinfo/definitions/Africa/Bujumbura.rb
|
360
|
+
- lib/tzinfo/definitions/Africa/Cairo.rb
|
361
|
+
- lib/tzinfo/definitions/Africa/Casablanca.rb
|
362
|
+
- lib/tzinfo/definitions/Africa/Ceuta.rb
|
363
|
+
- lib/tzinfo/definitions/Africa/Conakry.rb
|
364
|
+
- lib/tzinfo/definitions/Africa/Dakar.rb
|
365
|
+
- lib/tzinfo/definitions/Africa/Dar_es_Salaam.rb
|
366
|
+
- lib/tzinfo/definitions/Africa/Djibouti.rb
|
367
|
+
- lib/tzinfo/definitions/Africa/Douala.rb
|
368
|
+
- lib/tzinfo/definitions/Africa/El_Aaiun.rb
|
369
|
+
- lib/tzinfo/definitions/Africa/Freetown.rb
|
370
|
+
- lib/tzinfo/definitions/Africa/Gaborone.rb
|
371
|
+
- lib/tzinfo/definitions/Africa/Harare.rb
|
372
|
+
- lib/tzinfo/definitions/Africa/Johannesburg.rb
|
373
|
+
- lib/tzinfo/definitions/Africa/Kampala.rb
|
374
|
+
- lib/tzinfo/definitions/Africa/Khartoum.rb
|
375
|
+
- lib/tzinfo/definitions/Africa/Kigali.rb
|
376
|
+
- lib/tzinfo/definitions/Africa/Kinshasa.rb
|
377
|
+
- lib/tzinfo/definitions/Africa/Lagos.rb
|
378
|
+
- lib/tzinfo/definitions/Africa/Libreville.rb
|
379
|
+
- lib/tzinfo/definitions/Africa/Lome.rb
|
380
|
+
- lib/tzinfo/definitions/Africa/Luanda.rb
|
381
|
+
- lib/tzinfo/definitions/Africa/Lubumbashi.rb
|
382
|
+
- lib/tzinfo/definitions/Africa/Lusaka.rb
|
383
|
+
- lib/tzinfo/definitions/Africa/Malabo.rb
|
384
|
+
- lib/tzinfo/definitions/Africa/Maputo.rb
|
385
|
+
- lib/tzinfo/definitions/Africa/Maseru.rb
|
386
|
+
- lib/tzinfo/definitions/Africa/Mbabane.rb
|
387
|
+
- lib/tzinfo/definitions/Africa/Mogadishu.rb
|
388
|
+
- lib/tzinfo/definitions/Africa/Monrovia.rb
|
389
|
+
- lib/tzinfo/definitions/Africa/Nairobi.rb
|
390
|
+
- lib/tzinfo/definitions/Africa/Ndjamena.rb
|
391
|
+
- lib/tzinfo/definitions/Africa/Niamey.rb
|
392
|
+
- lib/tzinfo/definitions/Africa/Nouakchott.rb
|
393
|
+
- lib/tzinfo/definitions/Africa/Ouagadougou.rb
|
394
|
+
- lib/tzinfo/definitions/Africa/Porto__m__Novo.rb
|
395
|
+
- lib/tzinfo/definitions/Africa/Sao_Tome.rb
|
396
|
+
- lib/tzinfo/definitions/Africa/Timbuktu.rb
|
397
|
+
- lib/tzinfo/definitions/Africa/Tripoli.rb
|
398
|
+
- lib/tzinfo/definitions/Africa/Tunis.rb
|
399
|
+
- lib/tzinfo/definitions/Africa/Windhoek.rb
|
400
|
+
- lib/tzinfo/definitions/America/Adak.rb
|
401
|
+
- lib/tzinfo/definitions/America/Anchorage.rb
|
402
|
+
- lib/tzinfo/definitions/America/Anguilla.rb
|
403
|
+
- lib/tzinfo/definitions/America/Antigua.rb
|
404
|
+
- lib/tzinfo/definitions/America/Araguaina.rb
|
405
|
+
- lib/tzinfo/definitions/America/Argentina
|
406
|
+
- lib/tzinfo/definitions/America/Aruba.rb
|
407
|
+
- lib/tzinfo/definitions/America/Asuncion.rb
|
408
|
+
- lib/tzinfo/definitions/America/Atka.rb
|
409
|
+
- lib/tzinfo/definitions/America/Bahia.rb
|
410
|
+
- lib/tzinfo/definitions/America/Barbados.rb
|
411
|
+
- lib/tzinfo/definitions/America/Belem.rb
|
412
|
+
- lib/tzinfo/definitions/America/Belize.rb
|
413
|
+
- lib/tzinfo/definitions/America/Boa_Vista.rb
|
414
|
+
- lib/tzinfo/definitions/America/Bogota.rb
|
415
|
+
- lib/tzinfo/definitions/America/Boise.rb
|
416
|
+
- lib/tzinfo/definitions/America/Buenos_Aires.rb
|
417
|
+
- lib/tzinfo/definitions/America/Cambridge_Bay.rb
|
418
|
+
- lib/tzinfo/definitions/America/Campo_Grande.rb
|
419
|
+
- lib/tzinfo/definitions/America/Cancun.rb
|
420
|
+
- lib/tzinfo/definitions/America/Caracas.rb
|
421
|
+
- lib/tzinfo/definitions/America/Catamarca.rb
|
422
|
+
- lib/tzinfo/definitions/America/Cayenne.rb
|
423
|
+
- lib/tzinfo/definitions/America/Cayman.rb
|
424
|
+
- lib/tzinfo/definitions/America/Chicago.rb
|
425
|
+
- lib/tzinfo/definitions/America/Chihuahua.rb
|
426
|
+
- lib/tzinfo/definitions/America/Coral_Harbour.rb
|
427
|
+
- lib/tzinfo/definitions/America/Cordoba.rb
|
428
|
+
- lib/tzinfo/definitions/America/Costa_Rica.rb
|
429
|
+
- lib/tzinfo/definitions/America/Cuiaba.rb
|
430
|
+
- lib/tzinfo/definitions/America/Curacao.rb
|
431
|
+
- lib/tzinfo/definitions/America/Danmarkshavn.rb
|
432
|
+
- lib/tzinfo/definitions/America/Dawson.rb
|
433
|
+
- lib/tzinfo/definitions/America/Dawson_Creek.rb
|
434
|
+
- lib/tzinfo/definitions/America/Denver.rb
|
435
|
+
- lib/tzinfo/definitions/America/Detroit.rb
|
436
|
+
- lib/tzinfo/definitions/America/Dominica.rb
|
437
|
+
- lib/tzinfo/definitions/America/Edmonton.rb
|
438
|
+
- lib/tzinfo/definitions/America/Eirunepe.rb
|
439
|
+
- lib/tzinfo/definitions/America/El_Salvador.rb
|
440
|
+
- lib/tzinfo/definitions/America/Ensenada.rb
|
441
|
+
- lib/tzinfo/definitions/America/Fortaleza.rb
|
442
|
+
- lib/tzinfo/definitions/America/Fort_Wayne.rb
|
443
|
+
- lib/tzinfo/definitions/America/Glace_Bay.rb
|
444
|
+
- lib/tzinfo/definitions/America/Godthab.rb
|
445
|
+
- lib/tzinfo/definitions/America/Goose_Bay.rb
|
446
|
+
- lib/tzinfo/definitions/America/Grand_Turk.rb
|
447
|
+
- lib/tzinfo/definitions/America/Grenada.rb
|
448
|
+
- lib/tzinfo/definitions/America/Guadeloupe.rb
|
449
|
+
- lib/tzinfo/definitions/America/Guatemala.rb
|
450
|
+
- lib/tzinfo/definitions/America/Guayaquil.rb
|
451
|
+
- lib/tzinfo/definitions/America/Guyana.rb
|
452
|
+
- lib/tzinfo/definitions/America/Halifax.rb
|
453
|
+
- lib/tzinfo/definitions/America/Havana.rb
|
454
|
+
- lib/tzinfo/definitions/America/Hermosillo.rb
|
455
|
+
- lib/tzinfo/definitions/America/Indiana
|
456
|
+
- lib/tzinfo/definitions/America/Indianapolis.rb
|
457
|
+
- lib/tzinfo/definitions/America/Inuvik.rb
|
458
|
+
- lib/tzinfo/definitions/America/Iqaluit.rb
|
459
|
+
- lib/tzinfo/definitions/America/Jamaica.rb
|
460
|
+
- lib/tzinfo/definitions/America/Jujuy.rb
|
461
|
+
- lib/tzinfo/definitions/America/Juneau.rb
|
462
|
+
- lib/tzinfo/definitions/America/Kentucky
|
463
|
+
- lib/tzinfo/definitions/America/Knox_IN.rb
|
464
|
+
- lib/tzinfo/definitions/America/La_Paz.rb
|
465
|
+
- lib/tzinfo/definitions/America/Lima.rb
|
466
|
+
- lib/tzinfo/definitions/America/Los_Angeles.rb
|
467
|
+
- lib/tzinfo/definitions/America/Louisville.rb
|
468
|
+
- lib/tzinfo/definitions/America/Maceio.rb
|
469
|
+
- lib/tzinfo/definitions/America/Managua.rb
|
470
|
+
- lib/tzinfo/definitions/America/Manaus.rb
|
471
|
+
- lib/tzinfo/definitions/America/Martinique.rb
|
472
|
+
- lib/tzinfo/definitions/America/Mazatlan.rb
|
473
|
+
- lib/tzinfo/definitions/America/Mendoza.rb
|
474
|
+
- lib/tzinfo/definitions/America/Menominee.rb
|
475
|
+
- lib/tzinfo/definitions/America/Merida.rb
|
476
|
+
- lib/tzinfo/definitions/America/Mexico_City.rb
|
477
|
+
- lib/tzinfo/definitions/America/Miquelon.rb
|
478
|
+
- lib/tzinfo/definitions/America/Moncton.rb
|
479
|
+
- lib/tzinfo/definitions/America/Monterrey.rb
|
480
|
+
- lib/tzinfo/definitions/America/Montevideo.rb
|
481
|
+
- lib/tzinfo/definitions/America/Montreal.rb
|
482
|
+
- lib/tzinfo/definitions/America/Montserrat.rb
|
483
|
+
- lib/tzinfo/definitions/America/Nassau.rb
|
484
|
+
- lib/tzinfo/definitions/America/New_York.rb
|
485
|
+
- lib/tzinfo/definitions/America/Nipigon.rb
|
486
|
+
- lib/tzinfo/definitions/America/Nome.rb
|
487
|
+
- lib/tzinfo/definitions/America/Noronha.rb
|
488
|
+
- lib/tzinfo/definitions/America/North_Dakota
|
489
|
+
- lib/tzinfo/definitions/America/Panama.rb
|
490
|
+
- lib/tzinfo/definitions/America/Pangnirtung.rb
|
491
|
+
- lib/tzinfo/definitions/America/Paramaribo.rb
|
492
|
+
- lib/tzinfo/definitions/America/Phoenix.rb
|
493
|
+
- lib/tzinfo/definitions/America/Porto_Acre.rb
|
494
|
+
- lib/tzinfo/definitions/America/Porto_Velho.rb
|
495
|
+
- lib/tzinfo/definitions/America/Port_of_Spain.rb
|
496
|
+
- lib/tzinfo/definitions/America/Port__m__au__m__Prince.rb
|
497
|
+
- lib/tzinfo/definitions/America/Puerto_Rico.rb
|
498
|
+
- lib/tzinfo/definitions/America/Rainy_River.rb
|
499
|
+
- lib/tzinfo/definitions/America/Rankin_Inlet.rb
|
500
|
+
- lib/tzinfo/definitions/America/Recife.rb
|
501
|
+
- lib/tzinfo/definitions/America/Regina.rb
|
502
|
+
- lib/tzinfo/definitions/America/Rio_Branco.rb
|
503
|
+
- lib/tzinfo/definitions/America/Rosario.rb
|
504
|
+
- lib/tzinfo/definitions/America/Santiago.rb
|
505
|
+
- lib/tzinfo/definitions/America/Santo_Domingo.rb
|
506
|
+
- lib/tzinfo/definitions/America/Sao_Paulo.rb
|
507
|
+
- lib/tzinfo/definitions/America/Scoresbysund.rb
|
508
|
+
- lib/tzinfo/definitions/America/Shiprock.rb
|
509
|
+
- lib/tzinfo/definitions/America/St_Johns.rb
|
510
|
+
- lib/tzinfo/definitions/America/St_Kitts.rb
|
511
|
+
- lib/tzinfo/definitions/America/St_Lucia.rb
|
512
|
+
- lib/tzinfo/definitions/America/St_Thomas.rb
|
513
|
+
- lib/tzinfo/definitions/America/St_Vincent.rb
|
514
|
+
- lib/tzinfo/definitions/America/Swift_Current.rb
|
515
|
+
- lib/tzinfo/definitions/America/Tegucigalpa.rb
|
516
|
+
- lib/tzinfo/definitions/America/Thule.rb
|
517
|
+
- lib/tzinfo/definitions/America/Thunder_Bay.rb
|
518
|
+
- lib/tzinfo/definitions/America/Tijuana.rb
|
519
|
+
- lib/tzinfo/definitions/America/Toronto.rb
|
520
|
+
- lib/tzinfo/definitions/America/Tortola.rb
|
521
|
+
- lib/tzinfo/definitions/America/Vancouver.rb
|
522
|
+
- lib/tzinfo/definitions/America/Virgin.rb
|
523
|
+
- lib/tzinfo/definitions/America/Whitehorse.rb
|
524
|
+
- lib/tzinfo/definitions/America/Winnipeg.rb
|
525
|
+
- lib/tzinfo/definitions/America/Yakutat.rb
|
526
|
+
- lib/tzinfo/definitions/America/Yellowknife.rb
|
527
|
+
- lib/tzinfo/definitions/America/Argentina/Buenos_Aires.rb
|
528
|
+
- lib/tzinfo/definitions/America/Argentina/Catamarca.rb
|
529
|
+
- lib/tzinfo/definitions/America/Argentina/ComodRivadavia.rb
|
530
|
+
- lib/tzinfo/definitions/America/Argentina/Cordoba.rb
|
531
|
+
- lib/tzinfo/definitions/America/Argentina/Jujuy.rb
|
532
|
+
- lib/tzinfo/definitions/America/Argentina/La_Rioja.rb
|
533
|
+
- lib/tzinfo/definitions/America/Argentina/Mendoza.rb
|
534
|
+
- lib/tzinfo/definitions/America/Argentina/Rio_Gallegos.rb
|
535
|
+
- lib/tzinfo/definitions/America/Argentina/San_Juan.rb
|
536
|
+
- lib/tzinfo/definitions/America/Argentina/Tucuman.rb
|
537
|
+
- lib/tzinfo/definitions/America/Argentina/Ushuaia.rb
|
538
|
+
- lib/tzinfo/definitions/America/Indiana/Indianapolis.rb
|
539
|
+
- lib/tzinfo/definitions/America/Indiana/Knox.rb
|
540
|
+
- lib/tzinfo/definitions/America/Indiana/Marengo.rb
|
541
|
+
- lib/tzinfo/definitions/America/Indiana/Petersburg.rb
|
542
|
+
- lib/tzinfo/definitions/America/Indiana/Vevay.rb
|
543
|
+
- lib/tzinfo/definitions/America/Indiana/Vincennes.rb
|
544
|
+
- lib/tzinfo/definitions/America/Kentucky/Louisville.rb
|
545
|
+
- lib/tzinfo/definitions/America/Kentucky/Monticello.rb
|
546
|
+
- lib/tzinfo/definitions/America/North_Dakota/Center.rb
|
547
|
+
- lib/tzinfo/definitions/America/North_Dakota/New_Salem.rb
|
548
|
+
- lib/tzinfo/definitions/Antarctica/Casey.rb
|
549
|
+
- lib/tzinfo/definitions/Antarctica/Davis.rb
|
550
|
+
- lib/tzinfo/definitions/Antarctica/DumontDUrville.rb
|
551
|
+
- lib/tzinfo/definitions/Antarctica/Mawson.rb
|
552
|
+
- lib/tzinfo/definitions/Antarctica/McMurdo.rb
|
553
|
+
- lib/tzinfo/definitions/Antarctica/Palmer.rb
|
554
|
+
- lib/tzinfo/definitions/Antarctica/Rothera.rb
|
555
|
+
- lib/tzinfo/definitions/Antarctica/South_Pole.rb
|
556
|
+
- lib/tzinfo/definitions/Antarctica/Syowa.rb
|
557
|
+
- lib/tzinfo/definitions/Antarctica/Vostok.rb
|
558
|
+
- lib/tzinfo/definitions/Arctic/Longyearbyen.rb
|
559
|
+
- lib/tzinfo/definitions/Asia/Aden.rb
|
560
|
+
- lib/tzinfo/definitions/Asia/Almaty.rb
|
561
|
+
- lib/tzinfo/definitions/Asia/Amman.rb
|
562
|
+
- lib/tzinfo/definitions/Asia/Anadyr.rb
|
563
|
+
- lib/tzinfo/definitions/Asia/Aqtau.rb
|
564
|
+
- lib/tzinfo/definitions/Asia/Aqtobe.rb
|
565
|
+
- lib/tzinfo/definitions/Asia/Ashgabat.rb
|
566
|
+
- lib/tzinfo/definitions/Asia/Ashkhabad.rb
|
567
|
+
- lib/tzinfo/definitions/Asia/Baghdad.rb
|
568
|
+
- lib/tzinfo/definitions/Asia/Bahrain.rb
|
569
|
+
- lib/tzinfo/definitions/Asia/Baku.rb
|
570
|
+
- lib/tzinfo/definitions/Asia/Bangkok.rb
|
571
|
+
- lib/tzinfo/definitions/Asia/Beirut.rb
|
572
|
+
- lib/tzinfo/definitions/Asia/Bishkek.rb
|
573
|
+
- lib/tzinfo/definitions/Asia/Brunei.rb
|
574
|
+
- lib/tzinfo/definitions/Asia/Calcutta.rb
|
575
|
+
- lib/tzinfo/definitions/Asia/Choibalsan.rb
|
576
|
+
- lib/tzinfo/definitions/Asia/Chongqing.rb
|
577
|
+
- lib/tzinfo/definitions/Asia/Chungking.rb
|
578
|
+
- lib/tzinfo/definitions/Asia/Colombo.rb
|
579
|
+
- lib/tzinfo/definitions/Asia/Dacca.rb
|
580
|
+
- lib/tzinfo/definitions/Asia/Damascus.rb
|
581
|
+
- lib/tzinfo/definitions/Asia/Dhaka.rb
|
582
|
+
- lib/tzinfo/definitions/Asia/Dili.rb
|
583
|
+
- lib/tzinfo/definitions/Asia/Dubai.rb
|
584
|
+
- lib/tzinfo/definitions/Asia/Dushanbe.rb
|
585
|
+
- lib/tzinfo/definitions/Asia/Gaza.rb
|
586
|
+
- lib/tzinfo/definitions/Asia/Harbin.rb
|
587
|
+
- lib/tzinfo/definitions/Asia/Hong_Kong.rb
|
588
|
+
- lib/tzinfo/definitions/Asia/Hovd.rb
|
589
|
+
- lib/tzinfo/definitions/Asia/Irkutsk.rb
|
590
|
+
- lib/tzinfo/definitions/Asia/Istanbul.rb
|
591
|
+
- lib/tzinfo/definitions/Asia/Jakarta.rb
|
592
|
+
- lib/tzinfo/definitions/Asia/Jayapura.rb
|
593
|
+
- lib/tzinfo/definitions/Asia/Jerusalem.rb
|
594
|
+
- lib/tzinfo/definitions/Asia/Kabul.rb
|
595
|
+
- lib/tzinfo/definitions/Asia/Kamchatka.rb
|
596
|
+
- lib/tzinfo/definitions/Asia/Karachi.rb
|
597
|
+
- lib/tzinfo/definitions/Asia/Kashgar.rb
|
598
|
+
- lib/tzinfo/definitions/Asia/Katmandu.rb
|
599
|
+
- lib/tzinfo/definitions/Asia/Krasnoyarsk.rb
|
600
|
+
- lib/tzinfo/definitions/Asia/Kuala_Lumpur.rb
|
601
|
+
- lib/tzinfo/definitions/Asia/Kuching.rb
|
602
|
+
- lib/tzinfo/definitions/Asia/Kuwait.rb
|
603
|
+
- lib/tzinfo/definitions/Asia/Macao.rb
|
604
|
+
- lib/tzinfo/definitions/Asia/Macau.rb
|
605
|
+
- lib/tzinfo/definitions/Asia/Magadan.rb
|
606
|
+
- lib/tzinfo/definitions/Asia/Makassar.rb
|
607
|
+
- lib/tzinfo/definitions/Asia/Manila.rb
|
608
|
+
- lib/tzinfo/definitions/Asia/Muscat.rb
|
609
|
+
- lib/tzinfo/definitions/Asia/Nicosia.rb
|
610
|
+
- lib/tzinfo/definitions/Asia/Novosibirsk.rb
|
611
|
+
- lib/tzinfo/definitions/Asia/Omsk.rb
|
612
|
+
- lib/tzinfo/definitions/Asia/Oral.rb
|
613
|
+
- lib/tzinfo/definitions/Asia/Phnom_Penh.rb
|
614
|
+
- lib/tzinfo/definitions/Asia/Pontianak.rb
|
615
|
+
- lib/tzinfo/definitions/Asia/Pyongyang.rb
|
616
|
+
- lib/tzinfo/definitions/Asia/Qatar.rb
|
617
|
+
- lib/tzinfo/definitions/Asia/Qyzylorda.rb
|
618
|
+
- lib/tzinfo/definitions/Asia/Rangoon.rb
|
619
|
+
- lib/tzinfo/definitions/Asia/Riyadh.rb
|
620
|
+
- lib/tzinfo/definitions/Asia/Riyadh87.rb
|
621
|
+
- lib/tzinfo/definitions/Asia/Riyadh88.rb
|
622
|
+
- lib/tzinfo/definitions/Asia/Riyadh89.rb
|
623
|
+
- lib/tzinfo/definitions/Asia/Saigon.rb
|
624
|
+
- lib/tzinfo/definitions/Asia/Sakhalin.rb
|
625
|
+
- lib/tzinfo/definitions/Asia/Samarkand.rb
|
626
|
+
- lib/tzinfo/definitions/Asia/Seoul.rb
|
627
|
+
- lib/tzinfo/definitions/Asia/Shanghai.rb
|
628
|
+
- lib/tzinfo/definitions/Asia/Singapore.rb
|
629
|
+
- lib/tzinfo/definitions/Asia/Taipei.rb
|
630
|
+
- lib/tzinfo/definitions/Asia/Tashkent.rb
|
631
|
+
- lib/tzinfo/definitions/Asia/Tbilisi.rb
|
632
|
+
- lib/tzinfo/definitions/Asia/Tehran.rb
|
633
|
+
- lib/tzinfo/definitions/Asia/Tel_Aviv.rb
|
634
|
+
- lib/tzinfo/definitions/Asia/Thimbu.rb
|
635
|
+
- lib/tzinfo/definitions/Asia/Thimphu.rb
|
636
|
+
- lib/tzinfo/definitions/Asia/Tokyo.rb
|
637
|
+
- lib/tzinfo/definitions/Asia/Ujung_Pandang.rb
|
638
|
+
- lib/tzinfo/definitions/Asia/Ulaanbaatar.rb
|
639
|
+
- lib/tzinfo/definitions/Asia/Ulan_Bator.rb
|
640
|
+
- lib/tzinfo/definitions/Asia/Urumqi.rb
|
641
|
+
- lib/tzinfo/definitions/Asia/Vientiane.rb
|
642
|
+
- lib/tzinfo/definitions/Asia/Vladivostok.rb
|
643
|
+
- lib/tzinfo/definitions/Asia/Yakutsk.rb
|
644
|
+
- lib/tzinfo/definitions/Asia/Yekaterinburg.rb
|
645
|
+
- lib/tzinfo/definitions/Asia/Yerevan.rb
|
646
|
+
- lib/tzinfo/definitions/Atlantic/Azores.rb
|
647
|
+
- lib/tzinfo/definitions/Atlantic/Bermuda.rb
|
648
|
+
- lib/tzinfo/definitions/Atlantic/Canary.rb
|
649
|
+
- lib/tzinfo/definitions/Atlantic/Cape_Verde.rb
|
650
|
+
- lib/tzinfo/definitions/Atlantic/Faeroe.rb
|
651
|
+
- lib/tzinfo/definitions/Atlantic/Jan_Mayen.rb
|
652
|
+
- lib/tzinfo/definitions/Atlantic/Madeira.rb
|
653
|
+
- lib/tzinfo/definitions/Atlantic/Reykjavik.rb
|
654
|
+
- lib/tzinfo/definitions/Atlantic/South_Georgia.rb
|
655
|
+
- lib/tzinfo/definitions/Atlantic/Stanley.rb
|
656
|
+
- lib/tzinfo/definitions/Atlantic/St_Helena.rb
|
657
|
+
- lib/tzinfo/definitions/Australia/ACT.rb
|
658
|
+
- lib/tzinfo/definitions/Australia/Adelaide.rb
|
659
|
+
- lib/tzinfo/definitions/Australia/Brisbane.rb
|
660
|
+
- lib/tzinfo/definitions/Australia/Broken_Hill.rb
|
661
|
+
- lib/tzinfo/definitions/Australia/Canberra.rb
|
662
|
+
- lib/tzinfo/definitions/Australia/Currie.rb
|
663
|
+
- lib/tzinfo/definitions/Australia/Darwin.rb
|
664
|
+
- lib/tzinfo/definitions/Australia/Hobart.rb
|
665
|
+
- lib/tzinfo/definitions/Australia/LHI.rb
|
666
|
+
- lib/tzinfo/definitions/Australia/Lindeman.rb
|
667
|
+
- lib/tzinfo/definitions/Australia/Lord_Howe.rb
|
668
|
+
- lib/tzinfo/definitions/Australia/Melbourne.rb
|
669
|
+
- lib/tzinfo/definitions/Australia/North.rb
|
670
|
+
- lib/tzinfo/definitions/Australia/NSW.rb
|
671
|
+
- lib/tzinfo/definitions/Australia/Perth.rb
|
672
|
+
- lib/tzinfo/definitions/Australia/Queensland.rb
|
673
|
+
- lib/tzinfo/definitions/Australia/South.rb
|
674
|
+
- lib/tzinfo/definitions/Australia/Sydney.rb
|
675
|
+
- lib/tzinfo/definitions/Australia/Tasmania.rb
|
676
|
+
- lib/tzinfo/definitions/Australia/Victoria.rb
|
677
|
+
- lib/tzinfo/definitions/Australia/West.rb
|
678
|
+
- lib/tzinfo/definitions/Australia/Yancowinna.rb
|
679
|
+
- lib/tzinfo/definitions/Brazil/Acre.rb
|
680
|
+
- lib/tzinfo/definitions/Brazil/DeNoronha.rb
|
681
|
+
- lib/tzinfo/definitions/Brazil/East.rb
|
682
|
+
- lib/tzinfo/definitions/Brazil/West.rb
|
683
|
+
- lib/tzinfo/definitions/Canada/Atlantic.rb
|
684
|
+
- lib/tzinfo/definitions/Canada/Central.rb
|
685
|
+
- lib/tzinfo/definitions/Canada/Eastern.rb
|
686
|
+
- lib/tzinfo/definitions/Canada/East__m__Saskatchewan.rb
|
687
|
+
- lib/tzinfo/definitions/Canada/Mountain.rb
|
688
|
+
- lib/tzinfo/definitions/Canada/Newfoundland.rb
|
689
|
+
- lib/tzinfo/definitions/Canada/Pacific.rb
|
690
|
+
- lib/tzinfo/definitions/Canada/Saskatchewan.rb
|
691
|
+
- lib/tzinfo/definitions/Canada/Yukon.rb
|
692
|
+
- lib/tzinfo/definitions/Chile/Continental.rb
|
693
|
+
- lib/tzinfo/definitions/Chile/EasterIsland.rb
|
694
|
+
- lib/tzinfo/definitions/Etc/GMT.rb
|
695
|
+
- lib/tzinfo/definitions/Etc/GMT0.rb
|
696
|
+
- lib/tzinfo/definitions/Etc/GMT__m__0.rb
|
697
|
+
- lib/tzinfo/definitions/Etc/GMT__m__1.rb
|
698
|
+
- lib/tzinfo/definitions/Etc/GMT__m__10.rb
|
699
|
+
- lib/tzinfo/definitions/Etc/GMT__m__11.rb
|
700
|
+
- lib/tzinfo/definitions/Etc/GMT__m__12.rb
|
701
|
+
- lib/tzinfo/definitions/Etc/GMT__m__13.rb
|
702
|
+
- lib/tzinfo/definitions/Etc/GMT__m__14.rb
|
703
|
+
- lib/tzinfo/definitions/Etc/GMT__m__2.rb
|
704
|
+
- lib/tzinfo/definitions/Etc/GMT__m__3.rb
|
705
|
+
- lib/tzinfo/definitions/Etc/GMT__m__4.rb
|
706
|
+
- lib/tzinfo/definitions/Etc/GMT__m__5.rb
|
707
|
+
- lib/tzinfo/definitions/Etc/GMT__m__6.rb
|
708
|
+
- lib/tzinfo/definitions/Etc/GMT__m__7.rb
|
709
|
+
- lib/tzinfo/definitions/Etc/GMT__m__8.rb
|
710
|
+
- lib/tzinfo/definitions/Etc/GMT__m__9.rb
|
711
|
+
- lib/tzinfo/definitions/Etc/GMT__p__0.rb
|
712
|
+
- lib/tzinfo/definitions/Etc/GMT__p__1.rb
|
713
|
+
- lib/tzinfo/definitions/Etc/GMT__p__10.rb
|
714
|
+
- lib/tzinfo/definitions/Etc/GMT__p__11.rb
|
715
|
+
- lib/tzinfo/definitions/Etc/GMT__p__12.rb
|
716
|
+
- lib/tzinfo/definitions/Etc/GMT__p__2.rb
|
717
|
+
- lib/tzinfo/definitions/Etc/GMT__p__3.rb
|
718
|
+
- lib/tzinfo/definitions/Etc/GMT__p__4.rb
|
719
|
+
- lib/tzinfo/definitions/Etc/GMT__p__5.rb
|
720
|
+
- lib/tzinfo/definitions/Etc/GMT__p__6.rb
|
721
|
+
- lib/tzinfo/definitions/Etc/GMT__p__7.rb
|
722
|
+
- lib/tzinfo/definitions/Etc/GMT__p__8.rb
|
723
|
+
- lib/tzinfo/definitions/Etc/GMT__p__9.rb
|
724
|
+
- lib/tzinfo/definitions/Etc/Greenwich.rb
|
725
|
+
- lib/tzinfo/definitions/Etc/UCT.rb
|
726
|
+
- lib/tzinfo/definitions/Etc/Universal.rb
|
727
|
+
- lib/tzinfo/definitions/Etc/UTC.rb
|
728
|
+
- lib/tzinfo/definitions/Etc/Zulu.rb
|
729
|
+
- lib/tzinfo/definitions/Europe/Amsterdam.rb
|
730
|
+
- lib/tzinfo/definitions/Europe/Andorra.rb
|
731
|
+
- lib/tzinfo/definitions/Europe/Athens.rb
|
732
|
+
- lib/tzinfo/definitions/Europe/Belfast.rb
|
733
|
+
- lib/tzinfo/definitions/Europe/Belgrade.rb
|
734
|
+
- lib/tzinfo/definitions/Europe/Berlin.rb
|
735
|
+
- lib/tzinfo/definitions/Europe/Bratislava.rb
|
736
|
+
- lib/tzinfo/definitions/Europe/Brussels.rb
|
737
|
+
- lib/tzinfo/definitions/Europe/Bucharest.rb
|
738
|
+
- lib/tzinfo/definitions/Europe/Budapest.rb
|
739
|
+
- lib/tzinfo/definitions/Europe/Chisinau.rb
|
740
|
+
- lib/tzinfo/definitions/Europe/Copenhagen.rb
|
741
|
+
- lib/tzinfo/definitions/Europe/Dublin.rb
|
742
|
+
- lib/tzinfo/definitions/Europe/Gibraltar.rb
|
743
|
+
- lib/tzinfo/definitions/Europe/Helsinki.rb
|
744
|
+
- lib/tzinfo/definitions/Europe/Istanbul.rb
|
745
|
+
- lib/tzinfo/definitions/Europe/Kaliningrad.rb
|
746
|
+
- lib/tzinfo/definitions/Europe/Kiev.rb
|
747
|
+
- lib/tzinfo/definitions/Europe/Lisbon.rb
|
748
|
+
- lib/tzinfo/definitions/Europe/Ljubljana.rb
|
749
|
+
- lib/tzinfo/definitions/Europe/London.rb
|
750
|
+
- lib/tzinfo/definitions/Europe/Luxembourg.rb
|
751
|
+
- lib/tzinfo/definitions/Europe/Madrid.rb
|
752
|
+
- lib/tzinfo/definitions/Europe/Malta.rb
|
753
|
+
- lib/tzinfo/definitions/Europe/Mariehamn.rb
|
754
|
+
- lib/tzinfo/definitions/Europe/Minsk.rb
|
755
|
+
- lib/tzinfo/definitions/Europe/Monaco.rb
|
756
|
+
- lib/tzinfo/definitions/Europe/Moscow.rb
|
757
|
+
- lib/tzinfo/definitions/Europe/Nicosia.rb
|
758
|
+
- lib/tzinfo/definitions/Europe/Oslo.rb
|
759
|
+
- lib/tzinfo/definitions/Europe/Paris.rb
|
760
|
+
- lib/tzinfo/definitions/Europe/Prague.rb
|
761
|
+
- lib/tzinfo/definitions/Europe/Riga.rb
|
762
|
+
- lib/tzinfo/definitions/Europe/Rome.rb
|
763
|
+
- lib/tzinfo/definitions/Europe/Samara.rb
|
764
|
+
- lib/tzinfo/definitions/Europe/San_Marino.rb
|
765
|
+
- lib/tzinfo/definitions/Europe/Sarajevo.rb
|
766
|
+
- lib/tzinfo/definitions/Europe/Simferopol.rb
|
767
|
+
- lib/tzinfo/definitions/Europe/Skopje.rb
|
768
|
+
- lib/tzinfo/definitions/Europe/Sofia.rb
|
769
|
+
- lib/tzinfo/definitions/Europe/Stockholm.rb
|
770
|
+
- lib/tzinfo/definitions/Europe/Tallinn.rb
|
771
|
+
- lib/tzinfo/definitions/Europe/Tirane.rb
|
772
|
+
- lib/tzinfo/definitions/Europe/Tiraspol.rb
|
773
|
+
- lib/tzinfo/definitions/Europe/Uzhgorod.rb
|
774
|
+
- lib/tzinfo/definitions/Europe/Vaduz.rb
|
775
|
+
- lib/tzinfo/definitions/Europe/Vatican.rb
|
776
|
+
- lib/tzinfo/definitions/Europe/Vienna.rb
|
777
|
+
- lib/tzinfo/definitions/Europe/Vilnius.rb
|
778
|
+
- lib/tzinfo/definitions/Europe/Warsaw.rb
|
779
|
+
- lib/tzinfo/definitions/Europe/Zagreb.rb
|
780
|
+
- lib/tzinfo/definitions/Europe/Zaporozhye.rb
|
781
|
+
- lib/tzinfo/definitions/Europe/Zurich.rb
|
782
|
+
- lib/tzinfo/definitions/Indian/Antananarivo.rb
|
783
|
+
- lib/tzinfo/definitions/Indian/Chagos.rb
|
784
|
+
- lib/tzinfo/definitions/Indian/Christmas.rb
|
785
|
+
- lib/tzinfo/definitions/Indian/Cocos.rb
|
786
|
+
- lib/tzinfo/definitions/Indian/Comoro.rb
|
787
|
+
- lib/tzinfo/definitions/Indian/Kerguelen.rb
|
788
|
+
- lib/tzinfo/definitions/Indian/Mahe.rb
|
789
|
+
- lib/tzinfo/definitions/Indian/Maldives.rb
|
790
|
+
- lib/tzinfo/definitions/Indian/Mauritius.rb
|
791
|
+
- lib/tzinfo/definitions/Indian/Mayotte.rb
|
792
|
+
- lib/tzinfo/definitions/Indian/Reunion.rb
|
793
|
+
- lib/tzinfo/definitions/Mexico/BajaNorte.rb
|
794
|
+
- lib/tzinfo/definitions/Mexico/BajaSur.rb
|
795
|
+
- lib/tzinfo/definitions/Mexico/General.rb
|
796
|
+
- lib/tzinfo/definitions/Mideast/Riyadh87.rb
|
797
|
+
- lib/tzinfo/definitions/Mideast/Riyadh88.rb
|
798
|
+
- lib/tzinfo/definitions/Mideast/Riyadh89.rb
|
799
|
+
- lib/tzinfo/definitions/Pacific/Apia.rb
|
800
|
+
- lib/tzinfo/definitions/Pacific/Auckland.rb
|
801
|
+
- lib/tzinfo/definitions/Pacific/Chatham.rb
|
802
|
+
- lib/tzinfo/definitions/Pacific/Easter.rb
|
803
|
+
- lib/tzinfo/definitions/Pacific/Efate.rb
|
804
|
+
- lib/tzinfo/definitions/Pacific/Enderbury.rb
|
805
|
+
- lib/tzinfo/definitions/Pacific/Fakaofo.rb
|
806
|
+
- lib/tzinfo/definitions/Pacific/Fiji.rb
|
807
|
+
- lib/tzinfo/definitions/Pacific/Funafuti.rb
|
808
|
+
- lib/tzinfo/definitions/Pacific/Galapagos.rb
|
809
|
+
- lib/tzinfo/definitions/Pacific/Gambier.rb
|
810
|
+
- lib/tzinfo/definitions/Pacific/Guadalcanal.rb
|
811
|
+
- lib/tzinfo/definitions/Pacific/Guam.rb
|
812
|
+
- lib/tzinfo/definitions/Pacific/Honolulu.rb
|
813
|
+
- lib/tzinfo/definitions/Pacific/Johnston.rb
|
814
|
+
- lib/tzinfo/definitions/Pacific/Kiritimati.rb
|
815
|
+
- lib/tzinfo/definitions/Pacific/Kosrae.rb
|
816
|
+
- lib/tzinfo/definitions/Pacific/Kwajalein.rb
|
817
|
+
- lib/tzinfo/definitions/Pacific/Majuro.rb
|
818
|
+
- lib/tzinfo/definitions/Pacific/Marquesas.rb
|
819
|
+
- lib/tzinfo/definitions/Pacific/Midway.rb
|
820
|
+
- lib/tzinfo/definitions/Pacific/Nauru.rb
|
821
|
+
- lib/tzinfo/definitions/Pacific/Niue.rb
|
822
|
+
- lib/tzinfo/definitions/Pacific/Norfolk.rb
|
823
|
+
- lib/tzinfo/definitions/Pacific/Noumea.rb
|
824
|
+
- lib/tzinfo/definitions/Pacific/Pago_Pago.rb
|
825
|
+
- lib/tzinfo/definitions/Pacific/Palau.rb
|
826
|
+
- lib/tzinfo/definitions/Pacific/Pitcairn.rb
|
827
|
+
- lib/tzinfo/definitions/Pacific/Ponape.rb
|
828
|
+
- lib/tzinfo/definitions/Pacific/Port_Moresby.rb
|
829
|
+
- lib/tzinfo/definitions/Pacific/Rarotonga.rb
|
830
|
+
- lib/tzinfo/definitions/Pacific/Saipan.rb
|
831
|
+
- lib/tzinfo/definitions/Pacific/Samoa.rb
|
832
|
+
- lib/tzinfo/definitions/Pacific/Tahiti.rb
|
833
|
+
- lib/tzinfo/definitions/Pacific/Tarawa.rb
|
834
|
+
- lib/tzinfo/definitions/Pacific/Tongatapu.rb
|
835
|
+
- lib/tzinfo/definitions/Pacific/Truk.rb
|
836
|
+
- lib/tzinfo/definitions/Pacific/Wake.rb
|
837
|
+
- lib/tzinfo/definitions/Pacific/Wallis.rb
|
838
|
+
- lib/tzinfo/definitions/Pacific/Yap.rb
|
839
|
+
- lib/tzinfo/definitions/US/Alaska.rb
|
840
|
+
- lib/tzinfo/definitions/US/Aleutian.rb
|
841
|
+
- lib/tzinfo/definitions/US/Arizona.rb
|
842
|
+
- lib/tzinfo/definitions/US/Central.rb
|
843
|
+
- lib/tzinfo/definitions/US/Eastern.rb
|
844
|
+
- lib/tzinfo/definitions/US/East__m__Indiana.rb
|
845
|
+
- lib/tzinfo/definitions/US/Hawaii.rb
|
846
|
+
- lib/tzinfo/definitions/US/Indiana__m__Starke.rb
|
847
|
+
- lib/tzinfo/definitions/US/Michigan.rb
|
848
|
+
- lib/tzinfo/definitions/US/Mountain.rb
|
849
|
+
- lib/tzinfo/definitions/US/Pacific.rb
|
850
|
+
- lib/tzinfo/definitions/US/Pacific__m__New.rb
|
851
|
+
- lib/tzinfo/definitions/US/Samoa.rb
|
852
|
+
- test/tc_country.rb
|
853
|
+
- test/tc_offset_rationals.rb
|
854
|
+
- test/tc_timezone.rb
|
855
|
+
- test/tc_timezone_london.rb
|
856
|
+
- test/tc_timezone_melbourne.rb
|
857
|
+
- test/tc_timezone_new_york.rb
|
858
|
+
- test/tc_timezone_period.rb
|
859
|
+
- test/tc_timezone_period_list.rb
|
860
|
+
- test/tc_timezone_proxy.rb
|
861
|
+
- test/tc_timezone_utc.rb
|
862
|
+
- test/tc_time_or_datetime.rb
|
863
|
+
- test/ts_all.rb
|
863
864
|
test_files: []
|
865
|
+
|
864
866
|
rdoc_options: []
|
867
|
+
|
865
868
|
extra_rdoc_files:
|
866
|
-
|
867
|
-
|
869
|
+
- README
|
870
|
+
- CHANGES
|
868
871
|
executables: []
|
872
|
+
|
869
873
|
extensions: []
|
874
|
+
|
870
875
|
requirements: []
|
871
|
-
|
876
|
+
|
877
|
+
dependencies: []
|
878
|
+
|