worldwide 0.6.3 → 0.6.4
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/.ruby-version +1 -0
- data/CHANGELOG.md +5 -2
- data/Gemfile.lock +1 -1
- data/db/data/regions/BE.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: a210cd5e40ae766fc5b325333b835f22ff3bd62072b87a5c4d2ce75a19f514b0
|
|
4
|
+
data.tar.gz: c143a2c967c98331e92331a83fee13c7097d8977753a35369b515866c92e33b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7714da78c95086ea3577b07154a73f361e3471b342aff2e104c61f76f0f960ccbf2a2d9af2ed0fdf9277bee25b5df4c157f17eb17523bb52fc182f3b58e2f7f
|
|
7
|
+
data.tar.gz: acb261241478d869703088715496649e4d195924d5f2cfe03b2da40dafeda8f1006fdbcba0adb29982241bbc060e74750b046229a31912d2ebef248771b59139
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.2.2
|
data/CHANGELOG.md
CHANGED
|
@@ -27,10 +27,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
27
27
|
|
|
28
28
|
## [Unreleased]
|
|
29
29
|
|
|
30
|
-
- nil
|
|
31
|
-
|
|
32
30
|
---
|
|
33
31
|
|
|
32
|
+
[0.6.4] - 2024-01-22
|
|
33
|
+
|
|
34
|
+
- Allow building number in address2 for BE [#70](https://github.com/Shopify/worldwide/pull/70)
|
|
35
|
+
- Update Singapore GST in preparation for January 1 2024 increase [#68](https://github.com/Shopify/worldwide/pull/68)
|
|
36
|
+
|
|
34
37
|
[0.6.3] - 2023-12-11
|
|
35
38
|
|
|
36
39
|
- 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/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.4
|
|
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-23 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
|