tzinfo 1.2.11 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/.yardopts +3 -0
  4. data/CHANGES.md +469 -431
  5. data/LICENSE +13 -13
  6. data/README.md +368 -114
  7. data/lib/tzinfo/country.rb +131 -129
  8. data/lib/tzinfo/country_timezone.rb +70 -112
  9. data/lib/tzinfo/data_source.rb +389 -144
  10. data/lib/tzinfo/data_sources/constant_offset_data_timezone_info.rb +56 -0
  11. data/lib/tzinfo/data_sources/country_info.rb +42 -0
  12. data/lib/tzinfo/data_sources/data_timezone_info.rb +91 -0
  13. data/lib/tzinfo/data_sources/linked_timezone_info.rb +33 -0
  14. data/lib/tzinfo/data_sources/ruby_data_source.rb +141 -0
  15. data/lib/tzinfo/data_sources/timezone_info.rb +47 -0
  16. data/lib/tzinfo/data_sources/transitions_data_timezone_info.rb +214 -0
  17. data/lib/tzinfo/data_sources/zoneinfo_data_source.rb +573 -0
  18. data/lib/tzinfo/data_sources/zoneinfo_reader.rb +284 -0
  19. data/lib/tzinfo/data_sources.rb +8 -0
  20. data/lib/tzinfo/data_timezone.rb +33 -47
  21. data/lib/tzinfo/datetime_with_offset.rb +153 -0
  22. data/lib/tzinfo/format1/country_definer.rb +17 -0
  23. data/lib/tzinfo/format1/country_index_definition.rb +64 -0
  24. data/lib/tzinfo/format1/timezone_definer.rb +64 -0
  25. data/lib/tzinfo/format1/timezone_definition.rb +39 -0
  26. data/lib/tzinfo/format1/timezone_index_definition.rb +77 -0
  27. data/lib/tzinfo/format1.rb +10 -0
  28. data/lib/tzinfo/format2/country_definer.rb +68 -0
  29. data/lib/tzinfo/format2/country_index_definer.rb +68 -0
  30. data/lib/tzinfo/format2/country_index_definition.rb +46 -0
  31. data/lib/tzinfo/format2/timezone_definer.rb +94 -0
  32. data/lib/tzinfo/format2/timezone_definition.rb +73 -0
  33. data/lib/tzinfo/format2/timezone_index_definer.rb +45 -0
  34. data/lib/tzinfo/format2/timezone_index_definition.rb +55 -0
  35. data/lib/tzinfo/format2.rb +10 -0
  36. data/lib/tzinfo/info_timezone.rb +26 -21
  37. data/lib/tzinfo/linked_timezone.rb +33 -52
  38. data/lib/tzinfo/offset_timezone_period.rb +42 -0
  39. data/lib/tzinfo/string_deduper.rb +118 -0
  40. data/lib/tzinfo/time_with_offset.rb +128 -0
  41. data/lib/tzinfo/timestamp.rb +548 -0
  42. data/lib/tzinfo/timestamp_with_offset.rb +85 -0
  43. data/lib/tzinfo/timezone.rb +979 -502
  44. data/lib/tzinfo/timezone_offset.rb +84 -74
  45. data/lib/tzinfo/timezone_period.rb +151 -217
  46. data/lib/tzinfo/timezone_proxy.rb +70 -79
  47. data/lib/tzinfo/timezone_transition.rb +77 -109
  48. data/lib/tzinfo/transitions_timezone_period.rb +63 -0
  49. data/lib/tzinfo/version.rb +7 -0
  50. data/lib/tzinfo/with_offset.rb +61 -0
  51. data/lib/tzinfo.rb +60 -40
  52. data.tar.gz.sig +0 -0
  53. metadata +51 -115
  54. metadata.gz.sig +2 -3
  55. data/Rakefile +0 -107
  56. data/lib/tzinfo/annual_rules.rb +0 -51
  57. data/lib/tzinfo/country_index_definition.rb +0 -31
  58. data/lib/tzinfo/country_info.rb +0 -42
  59. data/lib/tzinfo/data_timezone_info.rb +0 -55
  60. data/lib/tzinfo/linked_timezone_info.rb +0 -26
  61. data/lib/tzinfo/offset_rationals.rb +0 -77
  62. data/lib/tzinfo/posix_time_zone_parser.rb +0 -136
  63. data/lib/tzinfo/ruby_core_support.rb +0 -176
  64. data/lib/tzinfo/ruby_country_info.rb +0 -74
  65. data/lib/tzinfo/ruby_data_source.rb +0 -136
  66. data/lib/tzinfo/time_or_datetime.rb +0 -351
  67. data/lib/tzinfo/timezone_definition.rb +0 -36
  68. data/lib/tzinfo/timezone_index_definition.rb +0 -54
  69. data/lib/tzinfo/timezone_info.rb +0 -30
  70. data/lib/tzinfo/timezone_transition_definition.rb +0 -104
  71. data/lib/tzinfo/transition_data_timezone_info.rb +0 -274
  72. data/lib/tzinfo/transition_rule.rb +0 -325
  73. data/lib/tzinfo/zoneinfo_country_info.rb +0 -37
  74. data/lib/tzinfo/zoneinfo_data_source.rb +0 -504
  75. data/lib/tzinfo/zoneinfo_timezone_info.rb +0 -516
  76. data/test/assets/payload.rb +0 -1
  77. data/test/tc_annual_rules.rb +0 -95
  78. data/test/tc_country.rb +0 -240
  79. data/test/tc_country_index_definition.rb +0 -69
  80. data/test/tc_country_info.rb +0 -16
  81. data/test/tc_country_timezone.rb +0 -173
  82. data/test/tc_data_source.rb +0 -218
  83. data/test/tc_data_timezone.rb +0 -99
  84. data/test/tc_data_timezone_info.rb +0 -18
  85. data/test/tc_info_timezone.rb +0 -34
  86. data/test/tc_linked_timezone.rb +0 -155
  87. data/test/tc_linked_timezone_info.rb +0 -23
  88. data/test/tc_offset_rationals.rb +0 -23
  89. data/test/tc_posix_time_zone_parser.rb +0 -261
  90. data/test/tc_ruby_core_support.rb +0 -168
  91. data/test/tc_ruby_country_info.rb +0 -110
  92. data/test/tc_ruby_data_source.rb +0 -175
  93. data/test/tc_time_or_datetime.rb +0 -674
  94. data/test/tc_timezone.rb +0 -1361
  95. data/test/tc_timezone_definition.rb +0 -113
  96. data/test/tc_timezone_index_definition.rb +0 -73
  97. data/test/tc_timezone_info.rb +0 -11
  98. data/test/tc_timezone_london.rb +0 -143
  99. data/test/tc_timezone_melbourne.rb +0 -142
  100. data/test/tc_timezone_new_york.rb +0 -142
  101. data/test/tc_timezone_offset.rb +0 -126
  102. data/test/tc_timezone_period.rb +0 -555
  103. data/test/tc_timezone_proxy.rb +0 -136
  104. data/test/tc_timezone_transition.rb +0 -366
  105. data/test/tc_timezone_transition_definition.rb +0 -295
  106. data/test/tc_timezone_utc.rb +0 -27
  107. data/test/tc_transition_data_timezone_info.rb +0 -433
  108. data/test/tc_transition_rule.rb +0 -663
  109. data/test/tc_zoneinfo_country_info.rb +0 -78
  110. data/test/tc_zoneinfo_data_source.rb +0 -1226
  111. data/test/tc_zoneinfo_timezone_info.rb +0 -2149
  112. data/test/test_utils.rb +0 -214
  113. data/test/ts_all.rb +0 -7
  114. data/test/ts_all_ruby.rb +0 -5
  115. data/test/ts_all_zoneinfo.rb +0 -9
  116. data/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +0 -89
  117. data/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +0 -327
  118. data/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +0 -230
  119. data/test/tzinfo-data/tzinfo/data/definitions/EST.rb +0 -19
  120. data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +0 -21
  121. data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +0 -21
  122. data/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +0 -21
  123. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +0 -273
  124. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +0 -198
  125. data/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +0 -333
  126. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +0 -277
  127. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +0 -235
  128. data/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +0 -16
  129. data/test/tzinfo-data/tzinfo/data/indexes/countries.rb +0 -940
  130. data/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +0 -609
  131. data/test/tzinfo-data/tzinfo/data/version.rb +0 -20
  132. data/test/tzinfo-data/tzinfo/data.rb +0 -8
  133. data/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
  134. data/test/zoneinfo/America/New_York +0 -0
  135. data/test/zoneinfo/Australia/Melbourne +0 -0
  136. data/test/zoneinfo/EST +0 -0
  137. data/test/zoneinfo/Etc/UTC +0 -0
  138. data/test/zoneinfo/Europe/Amsterdam +0 -0
  139. data/test/zoneinfo/Europe/Andorra +0 -0
  140. data/test/zoneinfo/Europe/London +0 -0
  141. data/test/zoneinfo/Europe/Paris +0 -0
  142. data/test/zoneinfo/Europe/Prague +0 -0
  143. data/test/zoneinfo/Factory +0 -0
  144. data/test/zoneinfo/iso3166.tab +0 -274
  145. data/test/zoneinfo/leapseconds +0 -78
  146. data/test/zoneinfo/posix/Europe/London +0 -0
  147. data/test/zoneinfo/posixrules +0 -0
  148. data/test/zoneinfo/right/Europe/London +0 -0
  149. data/test/zoneinfo/zone.tab +0 -452
  150. data/test/zoneinfo/zone1970.tab +0 -384
  151. data/tzinfo.gemspec +0 -21
@@ -1,384 +0,0 @@
1
- # tzdb timezone descriptions
2
- #
3
- # This file is in the public domain.
4
- #
5
- # From Paul Eggert (2018-06-27):
6
- # This file contains a table where each row stands for a timezone where
7
- # civil timestamps have agreed since 1970. Columns are separated by
8
- # a single tab. Lines beginning with '#' are comments. All text uses
9
- # UTF-8 encoding. The columns of the table are as follows:
10
- #
11
- # 1. The countries that overlap the timezone, as a comma-separated list
12
- # of ISO 3166 2-character country codes. See the file 'iso3166.tab'.
13
- # 2. Latitude and longitude of the timezone's principal location
14
- # in ISO 6709 sign-degrees-minutes-seconds format,
15
- # either ±DDMM±DDDMM or ±DDMMSS±DDDMMSS,
16
- # first latitude (+ is north), then longitude (+ is east).
17
- # 3. Timezone name used in value of TZ environment variable.
18
- # Please see the theory.html file for how these names are chosen.
19
- # If multiple timezones overlap a country, each has a row in the
20
- # table, with each column 1 containing the country code.
21
- # 4. Comments; present if and only if a country has multiple timezones.
22
- #
23
- # If a timezone covers multiple countries, the most-populous city is used,
24
- # and that country is listed first in column 1; any other countries
25
- # are listed alphabetically by country code. The table is sorted
26
- # first by country code, then (if possible) by an order within the
27
- # country that (1) makes some geographical sense, and (2) puts the
28
- # most populous timezones first, where that does not contradict (1).
29
- #
30
- # This table is intended as an aid for users, to help them select timezones
31
- # appropriate for their practical needs. It is not intended to take or
32
- # endorse any position on legal or territorial claims.
33
- #
34
- #country-
35
- #codes coordinates TZ comments
36
- AD +4230+00131 Europe/Andorra
37
- AE,OM +2518+05518 Asia/Dubai
38
- AF +3431+06912 Asia/Kabul
39
- AL +4120+01950 Europe/Tirane
40
- AM +4011+04430 Asia/Yerevan
41
- AQ -6617+11031 Antarctica/Casey Casey
42
- AQ -6835+07758 Antarctica/Davis Davis
43
- AQ -6640+14001 Antarctica/DumontDUrville Dumont-d'Urville
44
- AQ -6736+06253 Antarctica/Mawson Mawson
45
- AQ -6448-06406 Antarctica/Palmer Palmer
46
- AQ -6734-06808 Antarctica/Rothera Rothera
47
- AQ -690022+0393524 Antarctica/Syowa Syowa
48
- AQ -720041+0023206 Antarctica/Troll Troll
49
- AQ -7824+10654 Antarctica/Vostok Vostok
50
- AR -3436-05827 America/Argentina/Buenos_Aires Buenos Aires (BA, CF)
51
- AR -3124-06411 America/Argentina/Cordoba Argentina (most areas: CB, CC, CN, ER, FM, MN, SE, SF)
52
- AR -2447-06525 America/Argentina/Salta Salta (SA, LP, NQ, RN)
53
- AR -2411-06518 America/Argentina/Jujuy Jujuy (JY)
54
- AR -2649-06513 America/Argentina/Tucuman Tucumán (TM)
55
- AR -2828-06547 America/Argentina/Catamarca Catamarca (CT); Chubut (CH)
56
- AR -2926-06651 America/Argentina/La_Rioja La Rioja (LR)
57
- AR -3132-06831 America/Argentina/San_Juan San Juan (SJ)
58
- AR -3253-06849 America/Argentina/Mendoza Mendoza (MZ)
59
- AR -3319-06621 America/Argentina/San_Luis San Luis (SL)
60
- AR -5138-06913 America/Argentina/Rio_Gallegos Santa Cruz (SC)
61
- AR -5448-06818 America/Argentina/Ushuaia Tierra del Fuego (TF)
62
- AS,UM -1416-17042 Pacific/Pago_Pago Samoa, Midway
63
- AT +4813+01620 Europe/Vienna
64
- AU -3133+15905 Australia/Lord_Howe Lord Howe Island
65
- AU -5430+15857 Antarctica/Macquarie Macquarie Island
66
- AU -4253+14719 Australia/Hobart Tasmania (most areas)
67
- AU -3956+14352 Australia/Currie Tasmania (King Island)
68
- AU -3749+14458 Australia/Melbourne Victoria
69
- AU -3352+15113 Australia/Sydney New South Wales (most areas)
70
- AU -3157+14127 Australia/Broken_Hill New South Wales (Yancowinna)
71
- AU -2728+15302 Australia/Brisbane Queensland (most areas)
72
- AU -2016+14900 Australia/Lindeman Queensland (Whitsunday Islands)
73
- AU -3455+13835 Australia/Adelaide South Australia
74
- AU -1228+13050 Australia/Darwin Northern Territory
75
- AU -3157+11551 Australia/Perth Western Australia (most areas)
76
- AU -3143+12852 Australia/Eucla Western Australia (Eucla)
77
- AZ +4023+04951 Asia/Baku
78
- BB +1306-05937 America/Barbados
79
- BD +2343+09025 Asia/Dhaka
80
- BE +5050+00420 Europe/Brussels
81
- BG +4241+02319 Europe/Sofia
82
- BM +3217-06446 Atlantic/Bermuda
83
- BN +0456+11455 Asia/Brunei
84
- BO -1630-06809 America/La_Paz
85
- BR -0351-03225 America/Noronha Atlantic islands
86
- BR -0127-04829 America/Belem Pará (east); Amapá
87
- BR -0343-03830 America/Fortaleza Brazil (northeast: MA, PI, CE, RN, PB)
88
- BR -0803-03454 America/Recife Pernambuco
89
- BR -0712-04812 America/Araguaina Tocantins
90
- BR -0940-03543 America/Maceio Alagoas, Sergipe
91
- BR -1259-03831 America/Bahia Bahia
92
- BR -2332-04637 America/Sao_Paulo Brazil (southeast: GO, DF, MG, ES, RJ, SP, PR, SC, RS)
93
- BR -2027-05437 America/Campo_Grande Mato Grosso do Sul
94
- BR -1535-05605 America/Cuiaba Mato Grosso
95
- BR -0226-05452 America/Santarem Pará (west)
96
- BR -0846-06354 America/Porto_Velho Rondônia
97
- BR +0249-06040 America/Boa_Vista Roraima
98
- BR -0308-06001 America/Manaus Amazonas (east)
99
- BR -0640-06952 America/Eirunepe Amazonas (west)
100
- BR -0958-06748 America/Rio_Branco Acre
101
- BS +2505-07721 America/Nassau
102
- BT +2728+08939 Asia/Thimphu
103
- BY +5354+02734 Europe/Minsk
104
- BZ +1730-08812 America/Belize
105
- CA +4734-05243 America/St_Johns Newfoundland; Labrador (southeast)
106
- CA +4439-06336 America/Halifax Atlantic - NS (most areas); PE
107
- CA +4612-05957 America/Glace_Bay Atlantic - NS (Cape Breton)
108
- CA +4606-06447 America/Moncton Atlantic - New Brunswick
109
- CA +5320-06025 America/Goose_Bay Atlantic - Labrador (most areas)
110
- CA +5125-05707 America/Blanc-Sablon AST - QC (Lower North Shore)
111
- CA +4339-07923 America/Toronto Eastern - ON, QC (most areas)
112
- CA +4901-08816 America/Nipigon Eastern - ON, QC (no DST 1967-73)
113
- CA +4823-08915 America/Thunder_Bay Eastern - ON (Thunder Bay)
114
- CA +6344-06828 America/Iqaluit Eastern - NU (most east areas)
115
- CA +6608-06544 America/Pangnirtung Eastern - NU (Pangnirtung)
116
- CA +484531-0913718 America/Atikokan EST - ON (Atikokan); NU (Coral H)
117
- CA +4953-09709 America/Winnipeg Central - ON (west); Manitoba
118
- CA +4843-09434 America/Rainy_River Central - ON (Rainy R, Ft Frances)
119
- CA +744144-0944945 America/Resolute Central - NU (Resolute)
120
- CA +624900-0920459 America/Rankin_Inlet Central - NU (central)
121
- CA +5024-10439 America/Regina CST - SK (most areas)
122
- CA +5017-10750 America/Swift_Current CST - SK (midwest)
123
- CA +5333-11328 America/Edmonton Mountain - AB; BC (E); SK (W)
124
- CA +690650-1050310 America/Cambridge_Bay Mountain - NU (west)
125
- CA +6227-11421 America/Yellowknife Mountain - NT (central)
126
- CA +682059-1334300 America/Inuvik Mountain - NT (west)
127
- CA +4906-11631 America/Creston MST - BC (Creston)
128
- CA +5946-12014 America/Dawson_Creek MST - BC (Dawson Cr, Ft St John)
129
- CA +5848-12242 America/Fort_Nelson MST - BC (Ft Nelson)
130
- CA +4916-12307 America/Vancouver Pacific - BC (most areas)
131
- CA +6043-13503 America/Whitehorse Pacific - Yukon (east)
132
- CA +6404-13925 America/Dawson Pacific - Yukon (west)
133
- CC -1210+09655 Indian/Cocos
134
- CH,DE,LI +4723+00832 Europe/Zurich Swiss time
135
- CI,BF,GM,GN,ML,MR,SH,SL,SN,TG +0519-00402 Africa/Abidjan
136
- CK -2114-15946 Pacific/Rarotonga
137
- CL -3327-07040 America/Santiago Chile (most areas)
138
- CL -5309-07055 America/Punta_Arenas Region of Magallanes
139
- CL -2709-10926 Pacific/Easter Easter Island
140
- CN +3114+12128 Asia/Shanghai Beijing Time
141
- CN +4348+08735 Asia/Urumqi Xinjiang Time
142
- CO +0436-07405 America/Bogota
143
- CR +0956-08405 America/Costa_Rica
144
- CU +2308-08222 America/Havana
145
- CV +1455-02331 Atlantic/Cape_Verde
146
- CW,AW,BQ,SX +1211-06900 America/Curacao
147
- CX -1025+10543 Indian/Christmas
148
- CY +3510+03322 Asia/Nicosia Cyprus (most areas)
149
- CY +3507+03357 Asia/Famagusta Northern Cyprus
150
- CZ,SK +5005+01426 Europe/Prague
151
- DE +5230+01322 Europe/Berlin Germany (most areas)
152
- DK +5540+01235 Europe/Copenhagen
153
- DO +1828-06954 America/Santo_Domingo
154
- DZ +3647+00303 Africa/Algiers
155
- EC -0210-07950 America/Guayaquil Ecuador (mainland)
156
- EC -0054-08936 Pacific/Galapagos Galápagos Islands
157
- EE +5925+02445 Europe/Tallinn
158
- EG +3003+03115 Africa/Cairo
159
- EH +2709-01312 Africa/El_Aaiun
160
- ES +4024-00341 Europe/Madrid Spain (mainland)
161
- ES +3553-00519 Africa/Ceuta Ceuta, Melilla
162
- ES +2806-01524 Atlantic/Canary Canary Islands
163
- FI,AX +6010+02458 Europe/Helsinki
164
- FJ -1808+17825 Pacific/Fiji
165
- FK -5142-05751 Atlantic/Stanley
166
- FM +0725+15147 Pacific/Chuuk Chuuk/Truk, Yap
167
- FM +0658+15813 Pacific/Pohnpei Pohnpei/Ponape
168
- FM +0519+16259 Pacific/Kosrae Kosrae
169
- FO +6201-00646 Atlantic/Faroe
170
- FR +4852+00220 Europe/Paris
171
- GB,GG,IM,JE +513030-0000731 Europe/London
172
- GE +4143+04449 Asia/Tbilisi
173
- GF +0456-05220 America/Cayenne
174
- GH +0533-00013 Africa/Accra
175
- GI +3608-00521 Europe/Gibraltar
176
- GL +6411-05144 America/Nuuk Greenland (most areas)
177
- GL +7646-01840 America/Danmarkshavn National Park (east coast)
178
- GL +7029-02158 America/Scoresbysund Scoresbysund/Ittoqqortoormiit
179
- GL +7634-06847 America/Thule Thule/Pituffik
180
- GR +3758+02343 Europe/Athens
181
- GS -5416-03632 Atlantic/South_Georgia
182
- GT +1438-09031 America/Guatemala
183
- GU,MP +1328+14445 Pacific/Guam
184
- GW +1151-01535 Africa/Bissau
185
- GY +0648-05810 America/Guyana
186
- HK +2217+11409 Asia/Hong_Kong
187
- HN +1406-08713 America/Tegucigalpa
188
- HT +1832-07220 America/Port-au-Prince
189
- HU +4730+01905 Europe/Budapest
190
- ID -0610+10648 Asia/Jakarta Java, Sumatra
191
- ID -0002+10920 Asia/Pontianak Borneo (west, central)
192
- ID -0507+11924 Asia/Makassar Borneo (east, south); Sulawesi/Celebes, Bali, Nusa Tengarra; Timor (west)
193
- ID -0232+14042 Asia/Jayapura New Guinea (West Papua / Irian Jaya); Malukus/Moluccas
194
- IE +5320-00615 Europe/Dublin
195
- IL +314650+0351326 Asia/Jerusalem
196
- IN +2232+08822 Asia/Kolkata
197
- IO -0720+07225 Indian/Chagos
198
- IQ +3321+04425 Asia/Baghdad
199
- IR +3540+05126 Asia/Tehran
200
- IS +6409-02151 Atlantic/Reykjavik
201
- IT,SM,VA +4154+01229 Europe/Rome
202
- JM +175805-0764736 America/Jamaica
203
- JO +3157+03556 Asia/Amman
204
- JP +353916+1394441 Asia/Tokyo
205
- KE,DJ,ER,ET,KM,MG,SO,TZ,UG,YT -0117+03649 Africa/Nairobi
206
- KG +4254+07436 Asia/Bishkek
207
- KI +0125+17300 Pacific/Tarawa Gilbert Islands
208
- KI -0308-17105 Pacific/Enderbury Phoenix Islands
209
- KI +0152-15720 Pacific/Kiritimati Line Islands
210
- KP +3901+12545 Asia/Pyongyang
211
- KR +3733+12658 Asia/Seoul
212
- KZ +4315+07657 Asia/Almaty Kazakhstan (most areas)
213
- KZ +4448+06528 Asia/Qyzylorda Qyzylorda/Kyzylorda/Kzyl-Orda
214
- KZ +5312+06337 Asia/Qostanay Qostanay/Kostanay/Kustanay
215
- KZ +5017+05710 Asia/Aqtobe Aqtöbe/Aktobe
216
- KZ +4431+05016 Asia/Aqtau Mangghystaū/Mankistau
217
- KZ +4707+05156 Asia/Atyrau Atyraū/Atirau/Gur'yev
218
- KZ +5113+05121 Asia/Oral West Kazakhstan
219
- LB +3353+03530 Asia/Beirut
220
- LK +0656+07951 Asia/Colombo
221
- LR +0618-01047 Africa/Monrovia
222
- LT +5441+02519 Europe/Vilnius
223
- LU +4936+00609 Europe/Luxembourg
224
- LV +5657+02406 Europe/Riga
225
- LY +3254+01311 Africa/Tripoli
226
- MA +3339-00735 Africa/Casablanca
227
- MC +4342+00723 Europe/Monaco
228
- MD +4700+02850 Europe/Chisinau
229
- MH +0709+17112 Pacific/Majuro Marshall Islands (most areas)
230
- MH +0905+16720 Pacific/Kwajalein Kwajalein
231
- MM +1647+09610 Asia/Yangon
232
- MN +4755+10653 Asia/Ulaanbaatar Mongolia (most areas)
233
- MN +4801+09139 Asia/Hovd Bayan-Ölgii, Govi-Altai, Hovd, Uvs, Zavkhan
234
- MN +4804+11430 Asia/Choibalsan Dornod, Sükhbaatar
235
- MO +221150+1133230 Asia/Macau
236
- MQ +1436-06105 America/Martinique
237
- MT +3554+01431 Europe/Malta
238
- MU -2010+05730 Indian/Mauritius
239
- MV +0410+07330 Indian/Maldives
240
- MX +1924-09909 America/Mexico_City Central Time
241
- MX +2105-08646 America/Cancun Eastern Standard Time - Quintana Roo
242
- MX +2058-08937 America/Merida Central Time - Campeche, Yucatán
243
- MX +2540-10019 America/Monterrey Central Time - Durango; Coahuila, Nuevo León, Tamaulipas (most areas)
244
- MX +2550-09730 America/Matamoros Central Time US - Coahuila, Nuevo León, Tamaulipas (US border)
245
- MX +2313-10625 America/Mazatlan Mountain Time - Baja California Sur, Nayarit, Sinaloa
246
- MX +2838-10605 America/Chihuahua Mountain Time - Chihuahua (most areas)
247
- MX +2934-10425 America/Ojinaga Mountain Time US - Chihuahua (US border)
248
- MX +2904-11058 America/Hermosillo Mountain Standard Time - Sonora
249
- MX +3232-11701 America/Tijuana Pacific Time US - Baja California
250
- MX +2048-10515 America/Bahia_Banderas Central Time - Bahía de Banderas
251
- MY +0310+10142 Asia/Kuala_Lumpur Malaysia (peninsula)
252
- MY +0133+11020 Asia/Kuching Sabah, Sarawak
253
- MZ,BI,BW,CD,MW,RW,ZM,ZW -2558+03235 Africa/Maputo Central Africa Time
254
- NA -2234+01706 Africa/Windhoek
255
- NC -2216+16627 Pacific/Noumea
256
- NF -2903+16758 Pacific/Norfolk
257
- NG,AO,BJ,CD,CF,CG,CM,GA,GQ,NE +0627+00324 Africa/Lagos West Africa Time
258
- NI +1209-08617 America/Managua
259
- NL +5222+00454 Europe/Amsterdam
260
- NO,SJ +5955+01045 Europe/Oslo
261
- NP +2743+08519 Asia/Kathmandu
262
- NR -0031+16655 Pacific/Nauru
263
- NU -1901-16955 Pacific/Niue
264
- NZ,AQ -3652+17446 Pacific/Auckland New Zealand time
265
- NZ -4357-17633 Pacific/Chatham Chatham Islands
266
- PA,KY +0858-07932 America/Panama
267
- PE -1203-07703 America/Lima
268
- PF -1732-14934 Pacific/Tahiti Society Islands
269
- PF -0900-13930 Pacific/Marquesas Marquesas Islands
270
- PF -2308-13457 Pacific/Gambier Gambier Islands
271
- PG -0930+14710 Pacific/Port_Moresby Papua New Guinea (most areas)
272
- PG -0613+15534 Pacific/Bougainville Bougainville
273
- PH +1435+12100 Asia/Manila
274
- PK +2452+06703 Asia/Karachi
275
- PL +5215+02100 Europe/Warsaw
276
- PM +4703-05620 America/Miquelon
277
- PN -2504-13005 Pacific/Pitcairn
278
- PR +182806-0660622 America/Puerto_Rico
279
- PS +3130+03428 Asia/Gaza Gaza Strip
280
- PS +313200+0350542 Asia/Hebron West Bank
281
- PT +3843-00908 Europe/Lisbon Portugal (mainland)
282
- PT +3238-01654 Atlantic/Madeira Madeira Islands
283
- PT +3744-02540 Atlantic/Azores Azores
284
- PW +0720+13429 Pacific/Palau
285
- PY -2516-05740 America/Asuncion
286
- QA,BH +2517+05132 Asia/Qatar
287
- RE,TF -2052+05528 Indian/Reunion Réunion, Crozet, Scattered Islands
288
- RO +4426+02606 Europe/Bucharest
289
- RS,BA,HR,ME,MK,SI +4450+02030 Europe/Belgrade
290
- RU +5443+02030 Europe/Kaliningrad MSK-01 - Kaliningrad
291
- RU +554521+0373704 Europe/Moscow MSK+00 - Moscow area
292
- # Mention RU and UA alphabetically. See "territorial claims" above.
293
- RU,UA +4457+03406 Europe/Simferopol Crimea
294
- RU +5836+04939 Europe/Kirov MSK+00 - Kirov
295
- RU +4621+04803 Europe/Astrakhan MSK+01 - Astrakhan
296
- RU +4844+04425 Europe/Volgograd MSK+01 - Volgograd
297
- RU +5134+04602 Europe/Saratov MSK+01 - Saratov
298
- RU +5420+04824 Europe/Ulyanovsk MSK+01 - Ulyanovsk
299
- RU +5312+05009 Europe/Samara MSK+01 - Samara, Udmurtia
300
- RU +5651+06036 Asia/Yekaterinburg MSK+02 - Urals
301
- RU +5500+07324 Asia/Omsk MSK+03 - Omsk
302
- RU +5502+08255 Asia/Novosibirsk MSK+04 - Novosibirsk
303
- RU +5322+08345 Asia/Barnaul MSK+04 - Altai
304
- RU +5630+08458 Asia/Tomsk MSK+04 - Tomsk
305
- RU +5345+08707 Asia/Novokuznetsk MSK+04 - Kemerovo
306
- RU +5601+09250 Asia/Krasnoyarsk MSK+04 - Krasnoyarsk area
307
- RU +5216+10420 Asia/Irkutsk MSK+05 - Irkutsk, Buryatia
308
- RU +5203+11328 Asia/Chita MSK+06 - Zabaykalsky
309
- RU +6200+12940 Asia/Yakutsk MSK+06 - Lena River
310
- RU +623923+1353314 Asia/Khandyga MSK+06 - Tomponsky, Ust-Maysky
311
- RU +4310+13156 Asia/Vladivostok MSK+07 - Amur River
312
- RU +643337+1431336 Asia/Ust-Nera MSK+07 - Oymyakonsky
313
- RU +5934+15048 Asia/Magadan MSK+08 - Magadan
314
- RU +4658+14242 Asia/Sakhalin MSK+08 - Sakhalin Island
315
- RU +6728+15343 Asia/Srednekolymsk MSK+08 - Sakha (E); North Kuril Is
316
- RU +5301+15839 Asia/Kamchatka MSK+09 - Kamchatka
317
- RU +6445+17729 Asia/Anadyr MSK+09 - Bering Sea
318
- SA,KW,YE +2438+04643 Asia/Riyadh
319
- SB -0932+16012 Pacific/Guadalcanal
320
- SC -0440+05528 Indian/Mahe
321
- SD +1536+03232 Africa/Khartoum
322
- SE +5920+01803 Europe/Stockholm
323
- SG +0117+10351 Asia/Singapore
324
- SR +0550-05510 America/Paramaribo
325
- SS +0451+03137 Africa/Juba
326
- ST +0020+00644 Africa/Sao_Tome
327
- SV +1342-08912 America/El_Salvador
328
- SY +3330+03618 Asia/Damascus
329
- TC +2128-07108 America/Grand_Turk
330
- TD +1207+01503 Africa/Ndjamena
331
- TF -492110+0701303 Indian/Kerguelen Kerguelen, St Paul Island, Amsterdam Island
332
- TH,KH,LA,VN +1345+10031 Asia/Bangkok Indochina (most areas)
333
- TJ +3835+06848 Asia/Dushanbe
334
- TK -0922-17114 Pacific/Fakaofo
335
- TL -0833+12535 Asia/Dili
336
- TM +3757+05823 Asia/Ashgabat
337
- TN +3648+01011 Africa/Tunis
338
- TO -2110-17510 Pacific/Tongatapu
339
- TR +4101+02858 Europe/Istanbul
340
- TT,AG,AI,BL,DM,GD,GP,KN,LC,MF,MS,VC,VG,VI +1039-06131 America/Port_of_Spain
341
- TV -0831+17913 Pacific/Funafuti
342
- TW +2503+12130 Asia/Taipei
343
- UA +5026+03031 Europe/Kiev Ukraine (most areas)
344
- UA +4837+02218 Europe/Uzhgorod Transcarpathia
345
- UA +4750+03510 Europe/Zaporozhye Zaporozhye and east Lugansk
346
- UM +1917+16637 Pacific/Wake Wake Island
347
- US +404251-0740023 America/New_York Eastern (most areas)
348
- US +421953-0830245 America/Detroit Eastern - MI (most areas)
349
- US +381515-0854534 America/Kentucky/Louisville Eastern - KY (Louisville area)
350
- US +364947-0845057 America/Kentucky/Monticello Eastern - KY (Wayne)
351
- US +394606-0860929 America/Indiana/Indianapolis Eastern - IN (most areas)
352
- US +384038-0873143 America/Indiana/Vincennes Eastern - IN (Da, Du, K, Mn)
353
- US +410305-0863611 America/Indiana/Winamac Eastern - IN (Pulaski)
354
- US +382232-0862041 America/Indiana/Marengo Eastern - IN (Crawford)
355
- US +382931-0871643 America/Indiana/Petersburg Eastern - IN (Pike)
356
- US +384452-0850402 America/Indiana/Vevay Eastern - IN (Switzerland)
357
- US +415100-0873900 America/Chicago Central (most areas)
358
- US +375711-0864541 America/Indiana/Tell_City Central - IN (Perry)
359
- US +411745-0863730 America/Indiana/Knox Central - IN (Starke)
360
- US +450628-0873651 America/Menominee Central - MI (Wisconsin border)
361
- US +470659-1011757 America/North_Dakota/Center Central - ND (Oliver)
362
- US +465042-1012439 America/North_Dakota/New_Salem Central - ND (Morton rural)
363
- US +471551-1014640 America/North_Dakota/Beulah Central - ND (Mercer)
364
- US +394421-1045903 America/Denver Mountain (most areas)
365
- US +433649-1161209 America/Boise Mountain - ID (south); OR (east)
366
- US +332654-1120424 America/Phoenix MST - Arizona (except Navajo)
367
- US +340308-1181434 America/Los_Angeles Pacific
368
- US +611305-1495401 America/Anchorage Alaska (most areas)
369
- US +581807-1342511 America/Juneau Alaska - Juneau area
370
- US +571035-1351807 America/Sitka Alaska - Sitka area
371
- US +550737-1313435 America/Metlakatla Alaska - Annette Island
372
- US +593249-1394338 America/Yakutat Alaska - Yakutat
373
- US +643004-1652423 America/Nome Alaska (west)
374
- US +515248-1763929 America/Adak Aleutian Islands
375
- US,UM +211825-1575130 Pacific/Honolulu Hawaii
376
- UY -345433-0561245 America/Montevideo
377
- UZ +3940+06648 Asia/Samarkand Uzbekistan (west)
378
- UZ +4120+06918 Asia/Tashkent Uzbekistan (east)
379
- VE +1030-06656 America/Caracas
380
- VN +1045+10640 Asia/Ho_Chi_Minh Vietnam (south)
381
- VU -1740+16825 Pacific/Efate
382
- WF -1318-17610 Pacific/Wallis
383
- WS -1350-17144 Pacific/Apia
384
- ZA,LS,SZ -2615+02800 Africa/Johannesburg
data/tzinfo.gemspec DELETED
@@ -1,21 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = 'tzinfo'
3
- s.version = '1.2.11'
4
- s.summary = 'Daylight savings aware timezone library'
5
- s.description = 'TZInfo provides daylight savings aware transformations between times in different time zones.'
6
- s.author = 'Philip Ross'
7
- s.email = 'phil.ross@gmail.com'
8
- s.homepage = 'https://tzinfo.github.io'
9
- s.license = 'MIT'
10
- s.files = %w(CHANGES.md LICENSE Rakefile README.md tzinfo.gemspec .yardopts) +
11
- Dir['lib/**/*.rb'].delete_if {|f| f.include?('.svn')} +
12
- Dir['test/**/*.rb'].delete_if {|f| f.include?('.svn')} +
13
- Dir['test/zoneinfo/**/*'].delete_if {|f| f.include?('.svn') || File.symlink?(f)}
14
- s.platform = Gem::Platform::RUBY
15
- s.require_path = 'lib'
16
- s.rdoc_options << '--title' << 'TZInfo' <<
17
- '--main' << 'README.md'
18
- s.extra_rdoc_files = ['README.md', 'CHANGES.md', 'LICENSE']
19
- s.required_ruby_version = '>= 1.8.7'
20
- s.add_dependency 'thread_safe', '~> 0.1'
21
- end