worldwide 0.6.3 → 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/db/data/regions/BE.yml +1 -0
- data/db/data/regions/PL.yml +1 -0
- data/db/data/regions/SG.yml +1 -1
- data/lib/worldwide/version.rb +1 -1
- data/translation.yml +11 -0
- data/worldwide.gemspec +1 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3698c638953184523af4adc04e4f628ab8cb23c766d74d7cf93e5a23b0078e3b
|
4
|
+
data.tar.gz: fde45fe4084e9246bebddd747460b502e6ce1ab0a63ab4044b5f0b7f63c50ffe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae4f407c347a6a1f16050ac9a388ab9cef59ec5b4786d78efbcbc68ba49dc86753472e89322a4d5035b9e4847de3866f3cffa356831782f6055638eb7b5edf2b
|
7
|
+
data.tar.gz: b8cd3c62b0179d3c51cdf7212b74a3e8142cb8346c7cf948e46c5db831f431234b159fa45eb919553539c9a2de289e16b6c416bc98c581a71aad26e59c7564b8
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.2.2
|
data/CHANGELOG.md
CHANGED
@@ -31,6 +31,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
31
31
|
|
32
32
|
---
|
33
33
|
|
34
|
+
[0.6.5] - 2024-01-24
|
35
|
+
|
36
|
+
- Allow building numbers on address2 field for Polish addresses [#71](https://github.com/Shopify/worldwide/pull/71)
|
37
|
+
|
38
|
+
[0.6.4] - 2024-01-22
|
39
|
+
|
40
|
+
- Allow building number in address2 for BE [#70](https://github.com/Shopify/worldwide/pull/70)
|
41
|
+
- Update Singapore GST in preparation for January 1 2024 increase [#68](https://github.com/Shopify/worldwide/pull/68)
|
42
|
+
|
34
43
|
[0.6.3] - 2023-12-11
|
35
44
|
|
36
45
|
- Change HM, TF and GS `group_name` to respective continents based on M49. [#60](https://github.com/Shopify/worldwide/pull/60)
|
data/Gemfile.lock
CHANGED
data/db/data/regions/BE.yml
CHANGED
data/db/data/regions/PL.yml
CHANGED
data/db/data/regions/SG.yml
CHANGED
data/lib/worldwide/version.rb
CHANGED
data/translation.yml
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
source_language: en
|
2
|
+
target_languages: [bg-BG, cs, da, de, el, es, fi, fr, hi, hr-HR, hu, id, it, ja, ko, lt-LT, ms, nb, nl, pl, pt-BR, pt-PT, ro-RO, ru, sk-SK, sl-SI, sv, th, tr, vi, zh-CN, zh-TW]
|
3
|
+
async_pr_mode: per_pr
|
4
|
+
components:
|
5
|
+
- name: 'buyer'
|
6
|
+
audience: buyer
|
7
|
+
paths:
|
8
|
+
- db/data/regions/*/{{language}}.yml
|
9
|
+
- data/other/hand_translated/{{language}}.yml
|
10
|
+
- data/other/names/{{language}}.yml
|
11
|
+
- data/other/timezones/{{language}}.yml
|
data/worldwide.gemspec
CHANGED
@@ -15,6 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.homepage = "https://github.com/Shopify/worldwide"
|
16
16
|
|
17
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org/"
|
18
|
+
spec.metadata["changelog_uri"] = "https://github.com/Shopify/worldwide/blob/main/CHANGELOG.md"
|
18
19
|
|
19
20
|
spec.files = %x(git ls-files -z).split("\x0").reject do |f|
|
20
21
|
f.match(%r{^(rake|test|spec|features)/})
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -67,6 +67,7 @@ files:
|
|
67
67
|
- ".github/workflows/cla.yml"
|
68
68
|
- ".gitignore"
|
69
69
|
- ".rubocop.yml"
|
70
|
+
- ".ruby-version"
|
70
71
|
- CHANGELOG.md
|
71
72
|
- Gemfile
|
72
73
|
- Gemfile.lock
|
@@ -8208,11 +8209,13 @@ files:
|
|
8208
8209
|
- lib/worldwide/util.rb
|
8209
8210
|
- lib/worldwide/version.rb
|
8210
8211
|
- lib/worldwide/zip.rb
|
8212
|
+
- translation.yml
|
8211
8213
|
- worldwide.gemspec
|
8212
8214
|
homepage: https://github.com/Shopify/worldwide
|
8213
8215
|
licenses: []
|
8214
8216
|
metadata:
|
8215
8217
|
allowed_push_host: https://rubygems.org/
|
8218
|
+
changelog_uri: https://github.com/Shopify/worldwide/blob/main/CHANGELOG.md
|
8216
8219
|
post_install_message:
|
8217
8220
|
rdoc_options: []
|
8218
8221
|
require_paths:
|
@@ -8228,7 +8231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
8228
8231
|
- !ruby/object:Gem::Version
|
8229
8232
|
version: '0'
|
8230
8233
|
requirements: []
|
8231
|
-
rubygems_version: 3.4
|
8234
|
+
rubygems_version: 3.5.4
|
8232
8235
|
signing_key:
|
8233
8236
|
specification_version: 4
|
8234
8237
|
summary: Internationalization and localization APIs
|