ad_localize 4.0.6 → 4.0.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/.github/workflows/ruby.yml +12 -11
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +51 -31
- data/ad_localize.gemspec +2 -2
- data/lib/ad_localize/serializers/json_serializer.rb +1 -1
- data/lib/ad_localize/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c430461018f65ed97a0eee0978989c7f051df7228dccede2282417cfd70b837
|
|
4
|
+
data.tar.gz: 38b0d8ddbd9493e3d1ba4d483bc28f943141cc7f60f4bd5d3812a5a2c715ff17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 18b47316425537c6bc79f9b1db9eb828a82d380dcab2f90eb8e9ba17875e03d5cdcd4d1024f99a813090a0c477b728991fc7c94751df8bb58f3455d2d4813884
|
|
7
|
+
data.tar.gz: e96d73dde24bec5f84951fb880a6a1809256ab3581e51d9fc68b3e5bd9011ffb50d2173ebf5ef0ac80b8ff89387c4d2a98d6817ac799a5f58234d37948cee053
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -4,17 +4,18 @@ on: [push, pull_request]
|
|
|
4
4
|
|
|
5
5
|
jobs:
|
|
6
6
|
build:
|
|
7
|
-
|
|
8
7
|
runs-on: ubuntu-latest
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
ruby: ['2.6.6', '2.7.3', '3.0.1']
|
|
9
11
|
|
|
10
12
|
steps:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
bundle exec rake
|
|
13
|
+
- uses: actions/checkout@v2
|
|
14
|
+
- uses: ruby/setup-ruby@v1
|
|
15
|
+
with:
|
|
16
|
+
ruby-version: ${{ matrix.ruby }}
|
|
17
|
+
- name: Build and test with Rake
|
|
18
|
+
run: |
|
|
19
|
+
gem install bundler
|
|
20
|
+
bundle install --jobs 4 --retry 3
|
|
21
|
+
bundle exec rake
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [4.0.
|
|
7
|
+
## [4.0.7] - 2021-05-18
|
|
8
|
+
### Changed
|
|
9
|
+
- Support Ruby 3.x
|
|
10
|
+
|
|
11
|
+
## [4.0.6] - 2020-01-25
|
|
8
12
|
### Fixed
|
|
9
13
|
- Fix google spreadsheet sheet id comparison with sheet_ids option value
|
|
10
14
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ad_localize (4.0.
|
|
5
|
-
activesupport (>=
|
|
4
|
+
ad_localize (4.0.7)
|
|
5
|
+
activesupport (>= 6.1.3.2, < 7.0)
|
|
6
6
|
colorize (~> 0.8)
|
|
7
7
|
google-api-client (~> 0.34)
|
|
8
8
|
googleauth (~> 0.12)
|
|
@@ -11,35 +11,53 @@ PATH
|
|
|
11
11
|
GEM
|
|
12
12
|
remote: https://rubygems.org/
|
|
13
13
|
specs:
|
|
14
|
-
activesupport (6.
|
|
14
|
+
activesupport (6.1.3.2)
|
|
15
15
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
16
|
-
i18n (>=
|
|
17
|
-
minitest (
|
|
18
|
-
tzinfo (~>
|
|
19
|
-
zeitwerk (~> 2.
|
|
16
|
+
i18n (>= 1.6, < 2)
|
|
17
|
+
minitest (>= 5.1)
|
|
18
|
+
tzinfo (~> 2.0)
|
|
19
|
+
zeitwerk (~> 2.3)
|
|
20
20
|
addressable (2.7.0)
|
|
21
21
|
public_suffix (>= 2.0.2, < 5.0)
|
|
22
22
|
ansi (1.5.0)
|
|
23
23
|
builder (3.2.4)
|
|
24
24
|
byebug (11.1.3)
|
|
25
25
|
colorize (0.8.1)
|
|
26
|
-
concurrent-ruby (1.1.
|
|
26
|
+
concurrent-ruby (1.1.8)
|
|
27
27
|
declarative (0.0.20)
|
|
28
|
-
declarative-option (0.1.0)
|
|
29
28
|
diffy (3.3.0)
|
|
30
|
-
faraday (1.1
|
|
29
|
+
faraday (1.4.1)
|
|
30
|
+
faraday-excon (~> 1.1)
|
|
31
|
+
faraday-net_http (~> 1.0)
|
|
32
|
+
faraday-net_http_persistent (~> 1.1)
|
|
31
33
|
multipart-post (>= 1.2, < 3)
|
|
32
|
-
ruby2_keywords
|
|
33
|
-
|
|
34
|
+
ruby2_keywords (>= 0.0.4)
|
|
35
|
+
faraday-excon (1.1.0)
|
|
36
|
+
faraday-net_http (1.0.1)
|
|
37
|
+
faraday-net_http_persistent (1.1.0)
|
|
38
|
+
gems (1.2.0)
|
|
39
|
+
google-api-client (0.53.0)
|
|
40
|
+
google-apis-core (~> 0.1)
|
|
41
|
+
google-apis-generator (~> 0.1)
|
|
42
|
+
google-apis-core (0.3.0)
|
|
34
43
|
addressable (~> 2.5, >= 2.5.1)
|
|
35
|
-
googleauth (~> 0.
|
|
44
|
+
googleauth (~> 0.14)
|
|
36
45
|
httpclient (>= 2.8.1, < 3.0)
|
|
37
46
|
mini_mime (~> 1.0)
|
|
38
47
|
representable (~> 3.0)
|
|
39
48
|
retriable (>= 2.0, < 4.0)
|
|
40
49
|
rexml
|
|
41
|
-
signet (~> 0.
|
|
42
|
-
|
|
50
|
+
signet (~> 0.14)
|
|
51
|
+
webrick
|
|
52
|
+
google-apis-discovery_v1 (0.2.0)
|
|
53
|
+
google-apis-core (~> 0.1)
|
|
54
|
+
google-apis-generator (0.2.0)
|
|
55
|
+
activesupport (>= 5.0)
|
|
56
|
+
gems (~> 1.2)
|
|
57
|
+
google-apis-core (~> 0.1)
|
|
58
|
+
google-apis-discovery_v1 (~> 0.0)
|
|
59
|
+
thor (>= 0.20, < 2.a)
|
|
60
|
+
googleauth (0.16.2)
|
|
43
61
|
faraday (>= 0.17.3, < 2.0)
|
|
44
62
|
jwt (>= 1.4, < 3.0)
|
|
45
63
|
memoist (~> 0.16)
|
|
@@ -47,13 +65,13 @@ GEM
|
|
|
47
65
|
os (>= 0.9, < 2.0)
|
|
48
66
|
signet (~> 0.14)
|
|
49
67
|
httpclient (2.8.3)
|
|
50
|
-
i18n (1.8.
|
|
68
|
+
i18n (1.8.10)
|
|
51
69
|
concurrent-ruby (~> 1.0)
|
|
52
|
-
jwt (2.2.
|
|
70
|
+
jwt (2.2.3)
|
|
53
71
|
memoist (0.16.2)
|
|
54
|
-
mini_mime (1.0
|
|
55
|
-
mini_portile2 (2.5.
|
|
56
|
-
minitest (5.14.
|
|
72
|
+
mini_mime (1.1.0)
|
|
73
|
+
mini_portile2 (2.5.1)
|
|
74
|
+
minitest (5.14.4)
|
|
57
75
|
minitest-reporters (1.4.2)
|
|
58
76
|
ansi
|
|
59
77
|
builder
|
|
@@ -61,31 +79,33 @@ GEM
|
|
|
61
79
|
ruby-progressbar
|
|
62
80
|
multi_json (1.15.0)
|
|
63
81
|
multipart-post (2.1.1)
|
|
64
|
-
nokogiri (1.11.
|
|
82
|
+
nokogiri (1.11.4)
|
|
65
83
|
mini_portile2 (~> 2.5.0)
|
|
66
84
|
racc (~> 1.4)
|
|
67
85
|
os (1.1.1)
|
|
68
86
|
public_suffix (4.0.6)
|
|
69
87
|
racc (1.5.2)
|
|
70
88
|
rake (12.3.3)
|
|
71
|
-
representable (3.
|
|
89
|
+
representable (3.1.1)
|
|
72
90
|
declarative (< 0.1.0)
|
|
73
|
-
|
|
91
|
+
trailblazer-option (>= 0.1.1, < 0.2.0)
|
|
74
92
|
uber (< 0.2.0)
|
|
75
93
|
retriable (3.1.2)
|
|
76
|
-
rexml (3.2.
|
|
94
|
+
rexml (3.2.5)
|
|
77
95
|
ruby-progressbar (1.10.1)
|
|
78
|
-
ruby2_keywords (0.0.
|
|
79
|
-
signet (0.
|
|
96
|
+
ruby2_keywords (0.0.4)
|
|
97
|
+
signet (0.15.0)
|
|
80
98
|
addressable (~> 2.3)
|
|
81
99
|
faraday (>= 0.17.3, < 2.0)
|
|
82
100
|
jwt (>= 1.5, < 3.0)
|
|
83
101
|
multi_json (~> 1.10)
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
102
|
+
thor (1.1.0)
|
|
103
|
+
trailblazer-option (0.1.1)
|
|
104
|
+
tzinfo (2.0.4)
|
|
105
|
+
concurrent-ruby (~> 1.0)
|
|
87
106
|
uber (0.1.0)
|
|
88
|
-
|
|
107
|
+
webrick (1.7.0)
|
|
108
|
+
zeitwerk (2.4.2)
|
|
89
109
|
|
|
90
110
|
PLATFORMS
|
|
91
111
|
ruby
|
|
@@ -100,4 +120,4 @@ DEPENDENCIES
|
|
|
100
120
|
rake (~> 12.3)
|
|
101
121
|
|
|
102
122
|
BUNDLED WITH
|
|
103
|
-
2.
|
|
123
|
+
2.2.15
|
data/ad_localize.gemspec
CHANGED
|
@@ -46,11 +46,11 @@ Gem::Specification.new do |spec|
|
|
|
46
46
|
spec.add_development_dependency 'minitest-reporters', '~> 1.3'
|
|
47
47
|
spec.add_development_dependency 'diffy', '~> 3.3'
|
|
48
48
|
|
|
49
|
-
spec.add_dependency 'activesupport', '>=
|
|
49
|
+
spec.add_dependency 'activesupport', '>= 6.1.3.2', '< 7.0'
|
|
50
50
|
spec.add_dependency 'nokogiri', '~> 1.10'
|
|
51
51
|
spec.add_dependency 'colorize', '~> 0.8'
|
|
52
52
|
spec.add_dependency 'google-api-client', '~> 0.34'
|
|
53
53
|
spec.add_dependency 'googleauth', '~> 0.12'
|
|
54
54
|
|
|
55
|
-
spec.required_ruby_version = '
|
|
55
|
+
spec.required_ruby_version = '>= 2.3'
|
|
56
56
|
end
|
data/lib/ad_localize/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ad_localize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edouard Siegel
|
|
@@ -17,7 +17,7 @@ authors:
|
|
|
17
17
|
- Claire Dufetrelle
|
|
18
18
|
- Pierre Felgines
|
|
19
19
|
- Satyan Jacquens
|
|
20
|
-
autorequire:
|
|
20
|
+
autorequire:
|
|
21
21
|
bindir: exe
|
|
22
22
|
cert_chain: []
|
|
23
23
|
date: 2018-04-18 00:00:00.000000000 Z
|
|
@@ -118,7 +118,7 @@ dependencies:
|
|
|
118
118
|
requirements:
|
|
119
119
|
- - ">="
|
|
120
120
|
- !ruby/object:Gem::Version
|
|
121
|
-
version:
|
|
121
|
+
version: 6.1.3.2
|
|
122
122
|
- - "<"
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '7.0'
|
|
@@ -128,7 +128,7 @@ dependencies:
|
|
|
128
128
|
requirements:
|
|
129
129
|
- - ">="
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version:
|
|
131
|
+
version: 6.1.3.2
|
|
132
132
|
- - "<"
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
134
|
version: '7.0'
|
|
@@ -268,13 +268,13 @@ homepage: https://github.com/applidium/ad_localize
|
|
|
268
268
|
licenses:
|
|
269
269
|
- MIT
|
|
270
270
|
metadata: {}
|
|
271
|
-
post_install_message:
|
|
271
|
+
post_install_message:
|
|
272
272
|
rdoc_options: []
|
|
273
273
|
require_paths:
|
|
274
274
|
- lib
|
|
275
275
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
276
276
|
requirements:
|
|
277
|
-
- - "
|
|
277
|
+
- - ">="
|
|
278
278
|
- !ruby/object:Gem::Version
|
|
279
279
|
version: '2.3'
|
|
280
280
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
@@ -283,8 +283,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
283
283
|
- !ruby/object:Gem::Version
|
|
284
284
|
version: '0'
|
|
285
285
|
requirements: []
|
|
286
|
-
rubygems_version: 3.
|
|
287
|
-
signing_key:
|
|
286
|
+
rubygems_version: 3.2.15
|
|
287
|
+
signing_key:
|
|
288
288
|
specification_version: 4
|
|
289
289
|
summary: AdLocalize helps with mobile and web applications wording
|
|
290
290
|
test_files: []
|