worldwide 0.6.6 → 0.6.7
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +3 -3
- data/data/cldr/locales/da/territories.yml +3 -3
- data/data/cldr/locales/de/territories.yml +1 -1
- data/data/cldr/locales/en/territories.yml +1 -1
- data/lib/worldwide/numbers.rb +1 -1
- data/lib/worldwide/version.rb +1 -1
- data/worldwide.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 178e0c8d74b9c3cec8bf652560c83526bcb3623786524ee1900ad8d346c9a426
|
|
4
|
+
data.tar.gz: 7dc35f369eb2f1e3aff02973de09c9bcc2d027a23a7730215720c9fc94a8a3a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5d34009294fed8737d30579aeb6595a45be8a99e2ccccfb9f6abc53d99545679caeaf9e5ab8a5c56abdf5e3e59bfaefec0187d3e4c13d03faf2580acf877402
|
|
7
|
+
data.tar.gz: 3abe562d1c290ada493b76695e36ac038bcded8e0d0bfa2ad26975983057877d91afd88ddd1000be468976d46eaa584331ac00decfd65894cb28aef1c3615e48
|
data/CHANGELOG.md
CHANGED
|
@@ -31,6 +31,10 @@ nil.
|
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
34
|
+
[0.6.7] - 2024-01-30
|
|
35
|
+
|
|
36
|
+
- Patch some territory names (BQ, NL, TF, TR) [#77](https://github.com/Shopify/worldwide/pull/77)
|
|
37
|
+
|
|
34
38
|
[0.6.6] - 2024-01-25
|
|
35
39
|
|
|
36
40
|
- Allow building numbers on address2 field for Portugal addresses [#73](https://github.com/Shopify/worldwide/pull/73)
|
data/Gemfile.lock
CHANGED
|
@@ -13,9 +13,9 @@ GIT
|
|
|
13
13
|
PATH
|
|
14
14
|
remote: .
|
|
15
15
|
specs:
|
|
16
|
-
worldwide (0.6.
|
|
16
|
+
worldwide (0.6.7)
|
|
17
17
|
activesupport (~> 7.0)
|
|
18
|
-
i18n
|
|
18
|
+
i18n
|
|
19
19
|
phonelib (~> 0.8)
|
|
20
20
|
|
|
21
21
|
GEM
|
|
@@ -40,7 +40,7 @@ GEM
|
|
|
40
40
|
connection_pool (2.4.1)
|
|
41
41
|
drb (2.1.1)
|
|
42
42
|
ruby2_keywords
|
|
43
|
-
i18n (1.
|
|
43
|
+
i18n (1.14.1)
|
|
44
44
|
concurrent-ruby (~> 1.0)
|
|
45
45
|
json (2.6.3)
|
|
46
46
|
language_server-protocol (3.17.0.3)
|
|
@@ -62,7 +62,7 @@ da:
|
|
|
62
62
|
BM: Bermuda
|
|
63
63
|
BN: Brunei
|
|
64
64
|
BO: Bolivia
|
|
65
|
-
BQ:
|
|
65
|
+
BQ: Caribisk Nederlandene
|
|
66
66
|
BR: Brasilien
|
|
67
67
|
BS: Bahamas
|
|
68
68
|
BT: Bhutan
|
|
@@ -204,7 +204,7 @@ da:
|
|
|
204
204
|
NF: Norfolk Island
|
|
205
205
|
NG: Nigeria
|
|
206
206
|
NI: Nicaragua
|
|
207
|
-
NL: Holland
|
|
207
|
+
NL: Holland (Nederlandene)
|
|
208
208
|
'NO': Norge
|
|
209
209
|
NP: Nepal
|
|
210
210
|
NR: Nauru
|
|
@@ -256,7 +256,7 @@ da:
|
|
|
256
256
|
TA: Tristan da Cunha
|
|
257
257
|
TC: Turks- og Caicosøerne
|
|
258
258
|
TD: Tchad
|
|
259
|
-
TF:
|
|
259
|
+
TF: Franske sydlige territorier
|
|
260
260
|
TG: Togo
|
|
261
261
|
TH: Thailand
|
|
262
262
|
TJ: Tadsjikistan
|
data/lib/worldwide/numbers.rb
CHANGED
|
@@ -242,7 +242,7 @@ module Worldwide
|
|
|
242
242
|
# https://www.unicode.org/reports/tr35/tr35-numbers.html#Compact_Number_Formats
|
|
243
243
|
# > N is divided by the type, after removing the number of zeros in the pattern, less 1.
|
|
244
244
|
def compact_format_scale_factor(matched_type, style:)
|
|
245
|
-
compact_number_format = Worldwide::Cldr.t("#{COMPACT_DECIMAL_BASE_KEY}.#{style}.standard.#{matched_type}", count:
|
|
245
|
+
compact_number_format = Worldwide::Cldr.t("#{COMPACT_DECIMAL_BASE_KEY}.#{style}.standard.#{matched_type}", count: 5, locale: locale)
|
|
246
246
|
|
|
247
247
|
return 1 if compact_number_format == DEFAULT_COMPACT_PATTERN
|
|
248
248
|
|
data/lib/worldwide/version.rb
CHANGED
data/worldwide.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: worldwide
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-01-
|
|
11
|
+
date: 2024-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -28,16 +28,16 @@ dependencies:
|
|
|
28
28
|
name: i18n
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: '0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: phonelib
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|