cloudtasker 0.9.1 → 0.9.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +45 -0
- data/.rubocop.yml +1 -1
- data/Appraisals +16 -0
- data/CHANGELOG.md +29 -0
- data/app/controllers/cloudtasker/worker_controller.rb +4 -1
- data/cloudtasker.gemspec +4 -3
- data/gemfiles/google_cloud_tasks_1.0.gemfile +3 -5
- data/gemfiles/google_cloud_tasks_1.0.gemfile.lock +218 -163
- data/gemfiles/google_cloud_tasks_1.1.gemfile +3 -5
- data/gemfiles/google_cloud_tasks_1.1.gemfile.lock +218 -163
- data/gemfiles/google_cloud_tasks_1.2.gemfile +3 -5
- data/gemfiles/google_cloud_tasks_1.2.gemfile.lock +218 -163
- data/gemfiles/google_cloud_tasks_1.3.gemfile +3 -5
- data/gemfiles/google_cloud_tasks_1.3.gemfile.lock +218 -163
- data/gemfiles/rails_5.2.gemfile +3 -5
- data/gemfiles/rails_5.2.gemfile.lock +156 -100
- data/gemfiles/rails_6.0.gemfile +3 -5
- data/gemfiles/rails_6.0.gemfile.lock +157 -101
- data/gemfiles/semantic_logger_3.4.gemfile +7 -0
- data/gemfiles/semantic_logger_4.6.gemfile +7 -0
- data/gemfiles/semantic_logger_4.7.0.gemfile +7 -0
- data/gemfiles/semantic_logger_4.7.2.gemfile +7 -0
- data/gemfiles/semantic_logger_4.7.gemfile +9 -0
- data/lib/cloudtasker/backend/google_cloud_task.rb +1 -1
- data/lib/cloudtasker/version.rb +1 -1
- data/lib/cloudtasker/worker_logger.rb +2 -1
- data/lib/cloudtasker.rb +1 -0
- metadata +34 -17
- data/.travis.yml +0 -16
- data/app/controllers/cloudtasker/application_controller.rb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f8cde6f4433e688dce340d17a5194f9be7b0136a0bf472a8b46eed67223d4c7
|
4
|
+
data.tar.gz: b803d0a9d1247f9da6cc09086008e916feaff43aa180edbd6489673f9c628e44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7029b923e28b15a5021d86c76109eb8c56515ee6f193aa1a7664f251d3d47161e4fb61544c6ff5eebc09b233f0f0cedb45e32e99c6eb9c463049cfac77d2bb7
|
7
|
+
data.tar.gz: 2ae3a73d3e375ffc71851adcefd3b4bfbdff7803220461fd26da655698dbb6833e0310eca308667476eb8a01b6b07c28fb4c9235b5f01738bac4bc7758c7cc51
|
@@ -0,0 +1,45 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master, 0.9-stable ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ master, 0.9-stable ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
build:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
strategy:
|
13
|
+
matrix:
|
14
|
+
ruby:
|
15
|
+
- '2.5.x'
|
16
|
+
- '2.6.x'
|
17
|
+
appraisal:
|
18
|
+
- 'google-cloud-tasks-1.0'
|
19
|
+
- 'google-cloud-tasks-1.1'
|
20
|
+
- 'google-cloud-tasks-1.2'
|
21
|
+
- 'google-cloud-tasks-1.3'
|
22
|
+
- 'rails-5.2'
|
23
|
+
- 'rails-6.0'
|
24
|
+
- 'semantic_logger-3.4'
|
25
|
+
- 'semantic_logger-4.6'
|
26
|
+
- 'semantic_logger-4.7.0'
|
27
|
+
- 'semantic_logger-4.7.2'
|
28
|
+
steps:
|
29
|
+
- name: Setup System
|
30
|
+
run: sudo apt-get install libsqlite3-dev
|
31
|
+
- uses: actions/checkout@v2
|
32
|
+
- uses: zhulik/redis-action@1.1.0
|
33
|
+
- name: Set up Ruby 2.6
|
34
|
+
uses: actions/setup-ruby@v1
|
35
|
+
with:
|
36
|
+
ruby-version: ${{ matrix.ruby }}
|
37
|
+
- name: Build and test with Rake
|
38
|
+
env:
|
39
|
+
APPRAISAL_CONTEXT: ${{ matrix.appraisal }}
|
40
|
+
run: |
|
41
|
+
gem install bundler
|
42
|
+
bundle install --jobs 4 --retry 3
|
43
|
+
bundle exec rubocop
|
44
|
+
bundle exec appraisal ${APPRAISAL_CONTEXT} bundle
|
45
|
+
bundle exec appraisal ${APPRAISAL_CONTEXT} rspec
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
@@ -23,3 +23,19 @@ end
|
|
23
23
|
appraise 'rails-6.0' do
|
24
24
|
gem 'rails', '6.0'
|
25
25
|
end
|
26
|
+
|
27
|
+
appraise 'semantic_logger-3.4' do
|
28
|
+
gem 'semantic_logger', '3.4.1'
|
29
|
+
end
|
30
|
+
|
31
|
+
appraise 'semantic_logger-4.6' do
|
32
|
+
gem 'semantic_logger', '4.6.1'
|
33
|
+
end
|
34
|
+
|
35
|
+
appraise 'semantic_logger-4.7.0' do
|
36
|
+
gem 'semantic_logger', '4.7.0'
|
37
|
+
end
|
38
|
+
|
39
|
+
appraise 'semantic_logger-4.7.2' do
|
40
|
+
gem 'semantic_logger', '4.7.2'
|
41
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,34 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.9.5](https://github.com/keypup-io/cloudtasker/tree/v0.9.5) (2021-08-25)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.9.4...v0.9.5)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
- Dependencies: Require `try` from `activesupport`. This was preventing non-Rails projects from properly running Cloudtasker jobs.
|
9
|
+
- WorkerController: remove useless inheritance from local ApplicationController. The parent controller was not always loaded on Rails 5 which in turn created issues with authenticity token. Fixes [#40](https://github.com/keypup-io/cloudtasker/issues/40)
|
10
|
+
|
11
|
+
## [v0.9.4](https://github.com/keypup-io/cloudtasker/tree/v0.9.4) (2020-10-05)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.9.3...v0.9.4)
|
14
|
+
|
15
|
+
**Fixed bugs:**
|
16
|
+
- Logging: fix log processing with `semantic_logger` `v4.7.2`. Accept any args on block passed to the logger.
|
17
|
+
|
18
|
+
## [v0.9.3](https://github.com/keypup-io/cloudtasker/tree/v0.9.3) (2020-06-25)
|
19
|
+
|
20
|
+
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.9.2...v0.9.3)
|
21
|
+
|
22
|
+
**Fixed bugs:**
|
23
|
+
- Google Cloud Tasks: lock version to `~> 1.0` (Google recently released a v2 which changes its bindings completely). An [issue](https://github.com/keypup-io/cloudtasker/issues/11) has been raised to upgrade Cloudtasker to `google-cloud-tasks` `v2`.
|
24
|
+
|
25
|
+
## [v0.9.2](https://github.com/keypup-io/cloudtasker/tree/v0.9.2) (2020-03-04)
|
26
|
+
|
27
|
+
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.9.1...v0.9.2)
|
28
|
+
|
29
|
+
**Fixed bugs:**
|
30
|
+
- Cloud Task: ignore "not found" errors when trying to delete an already deleted task.
|
31
|
+
|
3
32
|
## [v0.9.1](https://github.com/keypup-io/cloudtasker/tree/v0.9.1) (2020-02-11)
|
4
33
|
|
5
34
|
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.9.0...v0.9.1)
|
@@ -2,7 +2,10 @@
|
|
2
2
|
|
3
3
|
module Cloudtasker
|
4
4
|
# Handle execution of workers
|
5
|
-
class WorkerController <
|
5
|
+
class WorkerController < ActionController::Base
|
6
|
+
# No need for CSRF verification on API endpoints
|
7
|
+
skip_before_action :verify_authenticity_token
|
8
|
+
|
6
9
|
# Authenticate all requests.
|
7
10
|
before_action :authenticate!
|
8
11
|
|
data/cloudtasker.gemspec
CHANGED
@@ -32,17 +32,18 @@ Gem::Specification.new do |spec|
|
|
32
32
|
|
33
33
|
spec.add_dependency 'activesupport'
|
34
34
|
spec.add_dependency 'fugit'
|
35
|
-
spec.add_dependency 'google-cloud-tasks'
|
35
|
+
spec.add_dependency 'google-cloud-tasks', '~> 1.0'
|
36
36
|
spec.add_dependency 'jwt'
|
37
37
|
spec.add_dependency 'redis'
|
38
38
|
|
39
39
|
spec.add_development_dependency 'appraisal'
|
40
40
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
41
41
|
spec.add_development_dependency 'github_changelog_generator'
|
42
|
-
spec.add_development_dependency 'rake', '
|
42
|
+
spec.add_development_dependency 'rake', '>= 12.3.3'
|
43
43
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
44
44
|
spec.add_development_dependency 'rubocop', '0.76.0'
|
45
|
-
spec.add_development_dependency 'rubocop-rspec'
|
45
|
+
spec.add_development_dependency 'rubocop-rspec', '1.37.0'
|
46
|
+
spec.add_development_dependency 'semantic_logger'
|
46
47
|
spec.add_development_dependency 'timecop'
|
47
48
|
spec.add_development_dependency 'webmock'
|
48
49
|
|
@@ -1,104 +1,147 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
cloudtasker (0.9.
|
4
|
+
cloudtasker (0.9.4)
|
5
5
|
activesupport
|
6
6
|
fugit
|
7
|
-
google-cloud-tasks
|
7
|
+
google-cloud-tasks (~> 1.0)
|
8
8
|
jwt
|
9
9
|
redis
|
10
10
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
actioncable (6.
|
15
|
-
actionpack (= 6.
|
14
|
+
actioncable (6.1.4)
|
15
|
+
actionpack (= 6.1.4)
|
16
|
+
activesupport (= 6.1.4)
|
16
17
|
nio4r (~> 2.0)
|
17
18
|
websocket-driver (>= 0.6.1)
|
18
|
-
actionmailbox (6.
|
19
|
-
actionpack (= 6.
|
20
|
-
activejob (= 6.
|
21
|
-
activerecord (= 6.
|
22
|
-
activestorage (= 6.
|
23
|
-
activesupport (= 6.
|
19
|
+
actionmailbox (6.1.4)
|
20
|
+
actionpack (= 6.1.4)
|
21
|
+
activejob (= 6.1.4)
|
22
|
+
activerecord (= 6.1.4)
|
23
|
+
activestorage (= 6.1.4)
|
24
|
+
activesupport (= 6.1.4)
|
24
25
|
mail (>= 2.7.1)
|
25
|
-
actionmailer (6.
|
26
|
-
actionpack (= 6.
|
27
|
-
actionview (= 6.
|
28
|
-
activejob (= 6.
|
26
|
+
actionmailer (6.1.4)
|
27
|
+
actionpack (= 6.1.4)
|
28
|
+
actionview (= 6.1.4)
|
29
|
+
activejob (= 6.1.4)
|
30
|
+
activesupport (= 6.1.4)
|
29
31
|
mail (~> 2.5, >= 2.5.4)
|
30
32
|
rails-dom-testing (~> 2.0)
|
31
|
-
actionpack (6.
|
32
|
-
actionview (= 6.
|
33
|
-
activesupport (= 6.
|
34
|
-
rack (~> 2.0)
|
33
|
+
actionpack (6.1.4)
|
34
|
+
actionview (= 6.1.4)
|
35
|
+
activesupport (= 6.1.4)
|
36
|
+
rack (~> 2.0, >= 2.0.9)
|
35
37
|
rack-test (>= 0.6.3)
|
36
38
|
rails-dom-testing (~> 2.0)
|
37
39
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
38
|
-
actiontext (6.
|
39
|
-
actionpack (= 6.
|
40
|
-
activerecord (= 6.
|
41
|
-
activestorage (= 6.
|
42
|
-
activesupport (= 6.
|
40
|
+
actiontext (6.1.4)
|
41
|
+
actionpack (= 6.1.4)
|
42
|
+
activerecord (= 6.1.4)
|
43
|
+
activestorage (= 6.1.4)
|
44
|
+
activesupport (= 6.1.4)
|
43
45
|
nokogiri (>= 1.8.5)
|
44
|
-
actionview (6.
|
45
|
-
activesupport (= 6.
|
46
|
+
actionview (6.1.4)
|
47
|
+
activesupport (= 6.1.4)
|
46
48
|
builder (~> 3.1)
|
47
49
|
erubi (~> 1.4)
|
48
50
|
rails-dom-testing (~> 2.0)
|
49
51
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
50
|
-
activejob (6.
|
51
|
-
activesupport (= 6.
|
52
|
+
activejob (6.1.4)
|
53
|
+
activesupport (= 6.1.4)
|
52
54
|
globalid (>= 0.3.6)
|
53
|
-
activemodel (6.
|
54
|
-
activesupport (= 6.
|
55
|
-
activerecord (6.
|
56
|
-
activemodel (= 6.
|
57
|
-
activesupport (= 6.
|
58
|
-
activestorage (6.
|
59
|
-
actionpack (= 6.
|
60
|
-
activejob (= 6.
|
61
|
-
activerecord (= 6.
|
62
|
-
|
63
|
-
|
55
|
+
activemodel (6.1.4)
|
56
|
+
activesupport (= 6.1.4)
|
57
|
+
activerecord (6.1.4)
|
58
|
+
activemodel (= 6.1.4)
|
59
|
+
activesupport (= 6.1.4)
|
60
|
+
activestorage (6.1.4)
|
61
|
+
actionpack (= 6.1.4)
|
62
|
+
activejob (= 6.1.4)
|
63
|
+
activerecord (= 6.1.4)
|
64
|
+
activesupport (= 6.1.4)
|
65
|
+
marcel (~> 1.0.0)
|
66
|
+
mini_mime (>= 1.1.0)
|
67
|
+
activesupport (6.1.4)
|
64
68
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
65
|
-
i18n (>=
|
66
|
-
minitest (
|
67
|
-
tzinfo (~>
|
68
|
-
zeitwerk (~> 2.
|
69
|
-
addressable (2.
|
69
|
+
i18n (>= 1.6, < 2)
|
70
|
+
minitest (>= 5.1)
|
71
|
+
tzinfo (~> 2.0)
|
72
|
+
zeitwerk (~> 2.3)
|
73
|
+
addressable (2.8.0)
|
70
74
|
public_suffix (>= 2.0.2, < 5.0)
|
71
|
-
appraisal (2.
|
75
|
+
appraisal (2.4.1)
|
72
76
|
bundler
|
73
77
|
rake
|
74
78
|
thor (>= 0.14.0)
|
75
|
-
ast (2.4.
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
79
|
+
ast (2.4.2)
|
80
|
+
async (1.30.1)
|
81
|
+
console (~> 1.10)
|
82
|
+
nio4r (~> 2.3)
|
83
|
+
timers (~> 4.1)
|
84
|
+
async-http (0.56.5)
|
85
|
+
async (>= 1.25)
|
86
|
+
async-io (>= 1.28)
|
87
|
+
async-pool (>= 0.2)
|
88
|
+
protocol-http (~> 0.22.0)
|
89
|
+
protocol-http1 (~> 0.14.0)
|
90
|
+
protocol-http2 (~> 0.14.0)
|
91
|
+
async-http-faraday (0.11.0)
|
92
|
+
async-http (~> 0.42)
|
93
|
+
faraday
|
94
|
+
async-io (1.32.2)
|
95
|
+
async
|
96
|
+
async-pool (0.3.8)
|
97
|
+
async (>= 1.25)
|
98
|
+
builder (3.2.4)
|
99
|
+
concurrent-ruby (1.1.9)
|
100
|
+
console (1.13.1)
|
101
|
+
fiber-local
|
102
|
+
crack (0.4.5)
|
103
|
+
rexml
|
104
|
+
crass (1.0.6)
|
105
|
+
diff-lcs (1.4.4)
|
106
|
+
erubi (1.10.0)
|
107
|
+
et-orbi (1.2.4)
|
84
108
|
tzinfo
|
85
|
-
faraday (
|
109
|
+
faraday (1.7.0)
|
110
|
+
faraday-em_http (~> 1.0)
|
111
|
+
faraday-em_synchrony (~> 1.0)
|
112
|
+
faraday-excon (~> 1.1)
|
113
|
+
faraday-httpclient (~> 1.0.1)
|
114
|
+
faraday-net_http (~> 1.0)
|
115
|
+
faraday-net_http_persistent (~> 1.1)
|
116
|
+
faraday-patron (~> 1.0)
|
117
|
+
faraday-rack (~> 1.0)
|
86
118
|
multipart-post (>= 1.2, < 3)
|
87
|
-
|
88
|
-
|
89
|
-
|
119
|
+
ruby2_keywords (>= 0.0.4)
|
120
|
+
faraday-em_http (1.0.0)
|
121
|
+
faraday-em_synchrony (1.0.0)
|
122
|
+
faraday-excon (1.1.0)
|
123
|
+
faraday-http-cache (2.2.0)
|
124
|
+
faraday (>= 0.8)
|
125
|
+
faraday-httpclient (1.0.1)
|
126
|
+
faraday-net_http (1.0.1)
|
127
|
+
faraday-net_http_persistent (1.2.0)
|
128
|
+
faraday-patron (1.0.0)
|
129
|
+
faraday-rack (1.0.0)
|
130
|
+
fiber-local (1.0.0)
|
131
|
+
fugit (1.5.1)
|
90
132
|
et-orbi (~> 1.1, >= 1.1.8)
|
91
|
-
raabro (~> 1.
|
92
|
-
github_changelog_generator (1.
|
133
|
+
raabro (~> 1.4)
|
134
|
+
github_changelog_generator (1.16.4)
|
93
135
|
activesupport
|
136
|
+
async (>= 1.25.0)
|
137
|
+
async-http-faraday
|
94
138
|
faraday-http-cache
|
95
139
|
multi_json
|
96
140
|
octokit (~> 4.6)
|
97
141
|
rainbow (>= 2.2.1)
|
98
142
|
rake (>= 10.0)
|
99
|
-
|
100
|
-
|
101
|
-
activesupport (>= 4.2.0)
|
143
|
+
globalid (0.5.2)
|
144
|
+
activesupport (>= 5.0)
|
102
145
|
google-cloud-tasks (1.0.0)
|
103
146
|
google-gax (~> 1.3)
|
104
147
|
googleapis-common-protos (>= 1.3.9, < 2.0)
|
@@ -109,112 +152,121 @@ GEM
|
|
109
152
|
googleauth (~> 0.9)
|
110
153
|
grpc (~> 1.24)
|
111
154
|
rly (~> 0.2.3)
|
112
|
-
google-protobuf (3.
|
113
|
-
googleapis-common-protos (1.3.
|
114
|
-
google-protobuf (~> 3.
|
115
|
-
googleapis-common-protos-types (
|
116
|
-
grpc (~> 1.
|
117
|
-
googleapis-common-protos-types (1.0
|
118
|
-
google-protobuf (~> 3.
|
119
|
-
googleauth (0.
|
120
|
-
faraday (
|
155
|
+
google-protobuf (3.17.3)
|
156
|
+
googleapis-common-protos (1.3.11)
|
157
|
+
google-protobuf (~> 3.14)
|
158
|
+
googleapis-common-protos-types (>= 1.0.6, < 2.0)
|
159
|
+
grpc (~> 1.27)
|
160
|
+
googleapis-common-protos-types (1.1.0)
|
161
|
+
google-protobuf (~> 3.14)
|
162
|
+
googleauth (0.17.0)
|
163
|
+
faraday (>= 0.17.3, < 2.0)
|
121
164
|
jwt (>= 1.4, < 3.0)
|
122
165
|
memoist (~> 0.16)
|
123
166
|
multi_json (~> 1.11)
|
124
167
|
os (>= 0.9, < 2.0)
|
125
|
-
signet (~> 0.
|
126
|
-
grpc (1.
|
127
|
-
google-protobuf (~> 3.
|
168
|
+
signet (~> 0.14)
|
169
|
+
grpc (1.38.0)
|
170
|
+
google-protobuf (~> 3.15)
|
128
171
|
googleapis-common-protos-types (~> 1.0)
|
129
|
-
grpc-google-iam-v1 (0.6.
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
172
|
+
grpc-google-iam-v1 (0.6.11)
|
173
|
+
google-protobuf (~> 3.14)
|
174
|
+
googleapis-common-protos (>= 1.3.11, < 2.0)
|
175
|
+
grpc (~> 1.27)
|
176
|
+
hashdiff (1.0.1)
|
177
|
+
i18n (1.8.10)
|
134
178
|
concurrent-ruby (~> 1.0)
|
135
179
|
jaro_winkler (1.5.4)
|
136
|
-
jwt (2.2.
|
137
|
-
loofah (2.
|
180
|
+
jwt (2.2.3)
|
181
|
+
loofah (2.12.0)
|
138
182
|
crass (~> 1.0.2)
|
139
183
|
nokogiri (>= 1.5.9)
|
140
184
|
mail (2.7.1)
|
141
185
|
mini_mime (>= 0.1.1)
|
142
|
-
marcel (0.
|
143
|
-
mimemagic (~> 0.3.2)
|
186
|
+
marcel (1.0.1)
|
144
187
|
memoist (0.16.2)
|
145
|
-
method_source (0.
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
multi_json (1.14.1)
|
188
|
+
method_source (1.0.0)
|
189
|
+
mini_mime (1.1.0)
|
190
|
+
mini_portile2 (2.6.1)
|
191
|
+
minitest (5.14.4)
|
192
|
+
multi_json (1.15.0)
|
151
193
|
multipart-post (2.1.1)
|
152
|
-
nio4r (2.5.
|
153
|
-
nokogiri (1.
|
154
|
-
mini_portile2 (~> 2.
|
155
|
-
|
194
|
+
nio4r (2.5.8)
|
195
|
+
nokogiri (1.12.3)
|
196
|
+
mini_portile2 (~> 2.6.1)
|
197
|
+
racc (~> 1.4)
|
198
|
+
octokit (4.21.0)
|
199
|
+
faraday (>= 0.9)
|
156
200
|
sawyer (~> 0.8.0, >= 0.5.3)
|
157
|
-
os (1.
|
158
|
-
parallel (1.
|
159
|
-
parser (
|
160
|
-
ast (~> 2.4.
|
161
|
-
|
162
|
-
|
163
|
-
|
201
|
+
os (1.1.1)
|
202
|
+
parallel (1.20.1)
|
203
|
+
parser (3.0.2.0)
|
204
|
+
ast (~> 2.4.1)
|
205
|
+
protocol-hpack (1.4.2)
|
206
|
+
protocol-http (0.22.5)
|
207
|
+
protocol-http1 (0.14.1)
|
208
|
+
protocol-http (~> 0.22)
|
209
|
+
protocol-http2 (0.14.2)
|
210
|
+
protocol-hpack (~> 1.4)
|
211
|
+
protocol-http (~> 0.18)
|
212
|
+
public_suffix (4.0.6)
|
213
|
+
raabro (1.4.0)
|
214
|
+
racc (1.5.2)
|
215
|
+
rack (2.2.3)
|
164
216
|
rack-test (1.1.0)
|
165
217
|
rack (>= 1.0, < 3)
|
166
|
-
rails (6.
|
167
|
-
actioncable (= 6.
|
168
|
-
actionmailbox (= 6.
|
169
|
-
actionmailer (= 6.
|
170
|
-
actionpack (= 6.
|
171
|
-
actiontext (= 6.
|
172
|
-
actionview (= 6.
|
173
|
-
activejob (= 6.
|
174
|
-
activemodel (= 6.
|
175
|
-
activerecord (= 6.
|
176
|
-
activestorage (= 6.
|
177
|
-
activesupport (= 6.
|
178
|
-
bundler (>= 1.
|
179
|
-
railties (= 6.
|
218
|
+
rails (6.1.4)
|
219
|
+
actioncable (= 6.1.4)
|
220
|
+
actionmailbox (= 6.1.4)
|
221
|
+
actionmailer (= 6.1.4)
|
222
|
+
actionpack (= 6.1.4)
|
223
|
+
actiontext (= 6.1.4)
|
224
|
+
actionview (= 6.1.4)
|
225
|
+
activejob (= 6.1.4)
|
226
|
+
activemodel (= 6.1.4)
|
227
|
+
activerecord (= 6.1.4)
|
228
|
+
activestorage (= 6.1.4)
|
229
|
+
activesupport (= 6.1.4)
|
230
|
+
bundler (>= 1.15.0)
|
231
|
+
railties (= 6.1.4)
|
180
232
|
sprockets-rails (>= 2.0.0)
|
181
233
|
rails-dom-testing (2.0.3)
|
182
234
|
activesupport (>= 4.2.0)
|
183
235
|
nokogiri (>= 1.6)
|
184
|
-
rails-html-sanitizer (1.
|
236
|
+
rails-html-sanitizer (1.4.1)
|
185
237
|
loofah (~> 2.3)
|
186
|
-
railties (6.
|
187
|
-
actionpack (= 6.
|
188
|
-
activesupport (= 6.
|
238
|
+
railties (6.1.4)
|
239
|
+
actionpack (= 6.1.4)
|
240
|
+
activesupport (= 6.1.4)
|
189
241
|
method_source
|
190
|
-
rake (>= 0.
|
191
|
-
thor (
|
242
|
+
rake (>= 0.13)
|
243
|
+
thor (~> 1.0)
|
192
244
|
rainbow (3.0.0)
|
193
|
-
rake (
|
194
|
-
redis (4.
|
195
|
-
|
245
|
+
rake (13.0.6)
|
246
|
+
redis (4.4.0)
|
247
|
+
rexml (3.2.5)
|
196
248
|
rly (0.2.3)
|
197
|
-
rspec (3.
|
198
|
-
rspec-core (~> 3.
|
199
|
-
rspec-expectations (~> 3.
|
200
|
-
rspec-mocks (~> 3.
|
201
|
-
rspec-core (3.
|
202
|
-
rspec-support (~> 3.
|
203
|
-
rspec-expectations (3.
|
249
|
+
rspec (3.10.0)
|
250
|
+
rspec-core (~> 3.10.0)
|
251
|
+
rspec-expectations (~> 3.10.0)
|
252
|
+
rspec-mocks (~> 3.10.0)
|
253
|
+
rspec-core (3.10.1)
|
254
|
+
rspec-support (~> 3.10.0)
|
255
|
+
rspec-expectations (3.10.1)
|
204
256
|
diff-lcs (>= 1.2.0, < 2.0)
|
205
|
-
rspec-support (~> 3.
|
206
|
-
rspec-mocks (3.
|
257
|
+
rspec-support (~> 3.10.0)
|
258
|
+
rspec-mocks (3.10.2)
|
207
259
|
diff-lcs (>= 1.2.0, < 2.0)
|
208
|
-
rspec-support (~> 3.
|
209
|
-
rspec-rails (
|
210
|
-
actionpack (>=
|
211
|
-
activesupport (>=
|
212
|
-
railties (>=
|
213
|
-
rspec-core (~> 3.
|
214
|
-
rspec-expectations (~> 3.
|
215
|
-
rspec-mocks (~> 3.
|
216
|
-
rspec-support (~> 3.
|
217
|
-
rspec-support (3.
|
260
|
+
rspec-support (~> 3.10.0)
|
261
|
+
rspec-rails (5.0.2)
|
262
|
+
actionpack (>= 5.2)
|
263
|
+
activesupport (>= 5.2)
|
264
|
+
railties (>= 5.2)
|
265
|
+
rspec-core (~> 3.10)
|
266
|
+
rspec-expectations (~> 3.10)
|
267
|
+
rspec-mocks (~> 3.10)
|
268
|
+
rspec-support (~> 3.10)
|
269
|
+
rspec-support (3.10.2)
|
218
270
|
rubocop (0.76.0)
|
219
271
|
jaro_winkler (~> 1.5.1)
|
220
272
|
parallel (~> 1.10)
|
@@ -224,38 +276,40 @@ GEM
|
|
224
276
|
unicode-display_width (>= 1.4.0, < 1.7)
|
225
277
|
rubocop-rspec (1.37.0)
|
226
278
|
rubocop (>= 0.68.1)
|
227
|
-
ruby-progressbar (1.
|
228
|
-
|
279
|
+
ruby-progressbar (1.11.0)
|
280
|
+
ruby2_keywords (0.0.5)
|
229
281
|
sawyer (0.8.2)
|
230
282
|
addressable (>= 2.3.5)
|
231
283
|
faraday (> 0.8, < 2.0)
|
232
|
-
|
284
|
+
semantic_logger (4.8.2)
|
285
|
+
concurrent-ruby (~> 1.0)
|
286
|
+
signet (0.15.0)
|
233
287
|
addressable (~> 2.3)
|
234
|
-
faraday (
|
288
|
+
faraday (>= 0.17.3, < 2.0)
|
235
289
|
jwt (>= 1.5, < 3.0)
|
236
290
|
multi_json (~> 1.10)
|
237
|
-
sprockets (4.0.
|
291
|
+
sprockets (4.0.2)
|
238
292
|
concurrent-ruby (~> 1.0)
|
239
293
|
rack (> 1, < 3)
|
240
|
-
sprockets-rails (3.2.
|
294
|
+
sprockets-rails (3.2.2)
|
241
295
|
actionpack (>= 4.0)
|
242
296
|
activesupport (>= 4.0)
|
243
297
|
sprockets (>= 3.0.0)
|
244
|
-
sqlite3 (1.4.
|
245
|
-
thor (
|
246
|
-
|
247
|
-
|
248
|
-
tzinfo (
|
249
|
-
|
250
|
-
unicode-display_width (1.6.
|
251
|
-
webmock (3.
|
252
|
-
addressable (>= 2.
|
298
|
+
sqlite3 (1.4.2)
|
299
|
+
thor (1.1.0)
|
300
|
+
timecop (0.9.4)
|
301
|
+
timers (4.3.3)
|
302
|
+
tzinfo (2.0.4)
|
303
|
+
concurrent-ruby (~> 1.0)
|
304
|
+
unicode-display_width (1.6.1)
|
305
|
+
webmock (3.14.0)
|
306
|
+
addressable (>= 2.8.0)
|
253
307
|
crack (>= 0.3.2)
|
254
308
|
hashdiff (>= 0.4.0, < 2.0.0)
|
255
|
-
websocket-driver (0.7.
|
309
|
+
websocket-driver (0.7.5)
|
256
310
|
websocket-extensions (>= 0.1.0)
|
257
|
-
websocket-extensions (0.1.
|
258
|
-
zeitwerk (2.
|
311
|
+
websocket-extensions (0.1.5)
|
312
|
+
zeitwerk (2.4.2)
|
259
313
|
|
260
314
|
PLATFORMS
|
261
315
|
ruby
|
@@ -267,14 +321,15 @@ DEPENDENCIES
|
|
267
321
|
github_changelog_generator
|
268
322
|
google-cloud-tasks (= 1.0)
|
269
323
|
rails
|
270
|
-
rake (
|
324
|
+
rake (>= 12.3.3)
|
271
325
|
rspec (~> 3.0)
|
272
326
|
rspec-rails
|
273
327
|
rubocop (= 0.76.0)
|
274
|
-
rubocop-rspec
|
328
|
+
rubocop-rspec (= 1.37.0)
|
329
|
+
semantic_logger
|
275
330
|
sqlite3
|
276
331
|
timecop
|
277
332
|
webmock
|
278
333
|
|
279
334
|
BUNDLED WITH
|
280
|
-
2.
|
335
|
+
2.2.9
|