tzinfo 1.2.7 → 1.2.8
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.
Potentially problematic release.
This version of tzinfo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGES.md +11 -0
- data/README.md +1 -1
- data/lib/tzinfo.rb +3 -0
- data/lib/tzinfo/annual_rules.rb +51 -0
- data/lib/tzinfo/posix_time_zone_parser.rb +136 -0
- data/lib/tzinfo/time_or_datetime.rb +11 -0
- data/lib/tzinfo/transition_rule.rb +325 -0
- data/lib/tzinfo/zoneinfo_data_source.rb +2 -1
- data/lib/tzinfo/zoneinfo_timezone_info.rb +255 -40
- data/test/tc_annual_rules.rb +95 -0
- data/test/tc_posix_time_zone_parser.rb +261 -0
- data/test/tc_time_or_datetime.rb +14 -0
- data/test/tc_transition_rule.rb +663 -0
- data/test/tc_zoneinfo_timezone_info.rb +952 -113
- data/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +5 -5
- data/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +13 -1
- data/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +13 -1
- data/test/tzinfo-data/tzinfo/data/definitions/EST.rb +1 -1
- data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +2 -2
- data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +2 -2
- data/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +1 -1
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +15 -3
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +13 -1
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +13 -1
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +15 -3
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +19 -4
- data/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +1 -1
- data/test/tzinfo-data/tzinfo/data/indexes/countries.rb +197 -184
- data/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +60 -47
- data/test/tzinfo-data/tzinfo/data/version.rb +9 -3
- data/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
- data/test/zoneinfo/America/New_York +0 -0
- data/test/zoneinfo/Australia/Melbourne +0 -0
- data/test/zoneinfo/EST +0 -0
- data/test/zoneinfo/Etc/UTC +0 -0
- data/test/zoneinfo/Europe/Amsterdam +0 -0
- data/test/zoneinfo/Europe/Andorra +0 -0
- data/test/zoneinfo/Europe/London +0 -0
- data/test/zoneinfo/Europe/Paris +0 -0
- data/test/zoneinfo/Europe/Prague +0 -0
- data/test/zoneinfo/Factory +0 -0
- data/test/zoneinfo/iso3166.tab +13 -14
- data/test/zoneinfo/leapseconds +38 -21
- data/test/zoneinfo/posix/Europe/London +0 -0
- data/test/zoneinfo/posixrules +0 -0
- data/test/zoneinfo/right/Europe/London +0 -0
- data/test/zoneinfo/zone.tab +172 -159
- data/test/zoneinfo/zone1970.tab +185 -170
- data/tzinfo.gemspec +1 -1
- metadata +9 -3
- metadata.gz.sig +0 -0
data/tzinfo.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'tzinfo'
|
3
|
-
s.version = '1.2.
|
3
|
+
s.version = '1.2.8'
|
4
4
|
s.summary = 'Daylight savings aware timezone library'
|
5
5
|
s.description = 'TZInfo provides daylight savings aware transformations between times in different time zones.'
|
6
6
|
s.author = 'Philip Ross'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tzinfo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Philip Ross
|
@@ -29,7 +29,7 @@ cert_chain:
|
|
29
29
|
J3Zn/kSTjTekiaspyGbczC3PUaeJNxr+yCvR4sk71Xmk/GaKKGOHedJ1uj/LAXrA
|
30
30
|
MR0mpl7b8zCg0PFC1J73uw==
|
31
31
|
-----END CERTIFICATE-----
|
32
|
-
date: 2020-
|
32
|
+
date: 2020-11-08 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: thread_safe
|
@@ -61,6 +61,7 @@ files:
|
|
61
61
|
- README.md
|
62
62
|
- Rakefile
|
63
63
|
- lib/tzinfo.rb
|
64
|
+
- lib/tzinfo/annual_rules.rb
|
64
65
|
- lib/tzinfo/country.rb
|
65
66
|
- lib/tzinfo/country_index_definition.rb
|
66
67
|
- lib/tzinfo/country_info.rb
|
@@ -72,6 +73,7 @@ files:
|
|
72
73
|
- lib/tzinfo/linked_timezone.rb
|
73
74
|
- lib/tzinfo/linked_timezone_info.rb
|
74
75
|
- lib/tzinfo/offset_rationals.rb
|
76
|
+
- lib/tzinfo/posix_time_zone_parser.rb
|
75
77
|
- lib/tzinfo/ruby_core_support.rb
|
76
78
|
- lib/tzinfo/ruby_country_info.rb
|
77
79
|
- lib/tzinfo/ruby_data_source.rb
|
@@ -86,9 +88,11 @@ files:
|
|
86
88
|
- lib/tzinfo/timezone_transition.rb
|
87
89
|
- lib/tzinfo/timezone_transition_definition.rb
|
88
90
|
- lib/tzinfo/transition_data_timezone_info.rb
|
91
|
+
- lib/tzinfo/transition_rule.rb
|
89
92
|
- lib/tzinfo/zoneinfo_country_info.rb
|
90
93
|
- lib/tzinfo/zoneinfo_data_source.rb
|
91
94
|
- lib/tzinfo/zoneinfo_timezone_info.rb
|
95
|
+
- test/tc_annual_rules.rb
|
92
96
|
- test/tc_country.rb
|
93
97
|
- test/tc_country_index_definition.rb
|
94
98
|
- test/tc_country_info.rb
|
@@ -100,6 +104,7 @@ files:
|
|
100
104
|
- test/tc_linked_timezone.rb
|
101
105
|
- test/tc_linked_timezone_info.rb
|
102
106
|
- test/tc_offset_rationals.rb
|
107
|
+
- test/tc_posix_time_zone_parser.rb
|
103
108
|
- test/tc_ruby_core_support.rb
|
104
109
|
- test/tc_ruby_country_info.rb
|
105
110
|
- test/tc_ruby_data_source.rb
|
@@ -118,6 +123,7 @@ files:
|
|
118
123
|
- test/tc_timezone_transition_definition.rb
|
119
124
|
- test/tc_timezone_utc.rb
|
120
125
|
- test/tc_transition_data_timezone_info.rb
|
126
|
+
- test/tc_transition_rule.rb
|
121
127
|
- test/tc_zoneinfo_country_info.rb
|
122
128
|
- test/tc_zoneinfo_data_source.rb
|
123
129
|
- test/tc_zoneinfo_timezone_info.rb
|
@@ -184,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
184
190
|
- !ruby/object:Gem::Version
|
185
191
|
version: '0'
|
186
192
|
requirements: []
|
187
|
-
rubygems_version: 3.1.
|
193
|
+
rubygems_version: 3.1.4
|
188
194
|
signing_key:
|
189
195
|
specification_version: 4
|
190
196
|
summary: Daylight savings aware timezone library
|
metadata.gz.sig
CHANGED
Binary file
|