active_utils 3.3.19 → 3.4.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.
- checksums.yaml +4 -4
- data/.github/workflows/cla.yml +22 -0
- data/CHANGELOG.md +3 -0
- data/lib/active_utils/country.rb +2 -0
- data/lib/active_utils/version.rb +1 -1
- metadata +4 -4
- data/.github/probots.yml +0 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47ca23e9563451e7e1b9e8e4014a72b58fb33ebcbbf705624ed1ad05cc83cf6a
|
|
4
|
+
data.tar.gz: 4b26f12af37cfb198a86273c320dfb87f422a96f9fa9feb1901b120888126871
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10f6afbf20b7b656cc980ec6be22d0ff302524210f47480f56515d9e646273131c83c4bfaddb93cee423f4c3305e185ff4d38f9ff588212737eb690087b43bb3
|
|
7
|
+
data.tar.gz: c1b88683c03a582a36efbb40ed08a94cd9cf4d9f27b172f4451fcc799ef9f51e3002465cc8bf6192299ea87c3e3b2a63b7c82519ce67c0639082eb2b9a3b52c7
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: Contributor License Agreement (CLA)
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request_target:
|
|
5
|
+
types: [opened, synchronize]
|
|
6
|
+
issue_comment:
|
|
7
|
+
types: [created]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
cla:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
if: |
|
|
13
|
+
(github.event.issue.pull_request
|
|
14
|
+
&& !github.event.issue.pull_request.merged_at
|
|
15
|
+
&& contains(github.event.comment.body, 'signed')
|
|
16
|
+
)
|
|
17
|
+
|| (github.event.pull_request && !github.event.pull_request.merged)
|
|
18
|
+
steps:
|
|
19
|
+
- uses: Shopify/shopify-cla-action@v1
|
|
20
|
+
with:
|
|
21
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
22
|
+
cla-token: ${{ secrets.CLA_TOKEN }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# ActiveUtils changelog
|
|
2
2
|
|
|
3
|
+
### Version 3.4.0 (February 23, 2022)
|
|
4
|
+
- Add AC and TA to `ActiveUtils::Country::COUNTRIES`
|
|
5
|
+
|
|
3
6
|
### Version 3.3.19 (February 24, 2020)
|
|
4
7
|
- Support `net/http` default proxy settings from `ENV['http_proxy']`
|
|
5
8
|
- Support usage of custom ssl certificate with `ENV['SSL_CERT_FILE']`, default variable for Ruby
|
data/lib/active_utils/country.rb
CHANGED
|
@@ -66,6 +66,7 @@ module ActiveUtils #:nodoc:
|
|
|
66
66
|
{ :alpha2 => 'AF', :name => 'Afghanistan', :alpha3 => 'AFG', :numeric => '004' },
|
|
67
67
|
{ :alpha2 => 'AX', :name => 'Aland Islands', :alpha3 => 'ALA', :numeric => '248' },
|
|
68
68
|
{ :alpha2 => 'AL', :name => 'Albania', :alpha3 => 'ALB', :numeric => '008' },
|
|
69
|
+
{ :alpha2 => 'AC', :name => 'Ascension Island', :alpha3 => 'ASC' },
|
|
69
70
|
{ :alpha2 => 'DZ', :name => 'Algeria', :alpha3 => 'DZA', :numeric => '012' },
|
|
70
71
|
{ :alpha2 => 'AS', :name => 'American Samoa', :alpha3 => 'ASM', :numeric => '016' },
|
|
71
72
|
{ :alpha2 => 'AD', :name => 'Andorra', :alpha3 => 'AND', :numeric => '020' },
|
|
@@ -291,6 +292,7 @@ module ActiveUtils #:nodoc:
|
|
|
291
292
|
{ :alpha2 => 'TK', :name => 'Tokelau', :alpha3 => 'TKL', :numeric => '772' },
|
|
292
293
|
{ :alpha2 => 'TO', :name => 'Tonga', :alpha3 => 'TON', :numeric => '776' },
|
|
293
294
|
{ :alpha2 => 'TT', :name => 'Trinidad and Tobago', :alpha3 => 'TTO', :numeric => '780' },
|
|
295
|
+
{ :alpha2 => 'TA', :name => 'Tristan da Cunha', :alpha3 => 'TAA' },
|
|
294
296
|
{ :alpha2 => 'TN', :name => 'Tunisia', :alpha3 => 'TUN', :numeric => '788' },
|
|
295
297
|
{ :alpha2 => 'TR', :name => 'Turkey', :alpha3 => 'TUR', :numeric => '792' },
|
|
296
298
|
{ :alpha2 => 'TM', :name => 'Turkmenistan', :alpha3 => 'TKM', :numeric => '795' },
|
data/lib/active_utils/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-02-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -87,7 +87,7 @@ executables: []
|
|
|
87
87
|
extensions: []
|
|
88
88
|
extra_rdoc_files: []
|
|
89
89
|
files:
|
|
90
|
-
- ".github/
|
|
90
|
+
- ".github/workflows/cla.yml"
|
|
91
91
|
- ".gitignore"
|
|
92
92
|
- ".travis.yml"
|
|
93
93
|
- CHANGELOG.md
|
|
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
144
|
version: '0'
|
|
145
145
|
requirements: []
|
|
146
|
-
rubygems_version: 3.
|
|
146
|
+
rubygems_version: 3.3.3
|
|
147
147
|
signing_key:
|
|
148
148
|
specification_version: 4
|
|
149
149
|
summary: Common utils used by active_merchant, active_fulfillment, and active_shipping
|
data/.github/probots.yml
DELETED