cloudtasker 0.10.rc1 → 0.10.rc2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d4cba7de3e429d612adf6c9c2f4424b6ef73db39d4db93b70804800300011e1b
4
- data.tar.gz: 3775cdf3f16430cf8decd49dfc28be9e26f0ef6a63d45224bdc5ed11b13a86fc
3
+ metadata.gz: d9de65884c24b1902d30af0f9b140caf36749d40e4613a13fa88940593e9cd12
4
+ data.tar.gz: 9033cd6fca6bab0dc5a1387c6e8a8f82a12460e86165072d987282e5bb0e2b6d
5
5
  SHA512:
6
- metadata.gz: 5e2e15dc54fad72e3508763855a99804b591126968ccbcaccd8211d51b8b1e28bf6d2907c746f2b14c53c3c065ce1eb06871f30b39419df1f3d7b8a4e1b1fded
7
- data.tar.gz: a2808491a7251b5212587351deb84a99f688a62f7a54c3f5b9c8ebe3a3b6a1ca6adda6ffe898424069223cef8260f1a49c8a086010c0e59dedc5e50ed371e830
6
+ metadata.gz: edfcbf887b455566b52718e06a41dd5061de05e4e93a7a2e2df42d148d863853852545374f27d8b41e4b445866bc0f76fc8ad3866abe182dea7728a302664a1c
7
+ data.tar.gz: 631b9929e8b4365e64d47eca6354765773ee79780b60c857a41bca41fd8d7c55f946c621876167deb9067f446e0fbdc54ad2673358f59d0143368203ea8195b9
@@ -0,0 +1,41 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
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
+ steps:
25
+ - name: Setup System
26
+ run: sudo apt-get install libsqlite3-dev
27
+ - uses: actions/checkout@v2
28
+ - uses: zhulik/redis-action@1.1.0
29
+ - name: Set up Ruby 2.6
30
+ uses: actions/setup-ruby@v1
31
+ with:
32
+ ruby-version: ${{ matrix.ruby }}
33
+ - name: Build and test with Rake
34
+ env:
35
+ APPRAISAL_CONTEXT: ${{ matrix.appraisal }}
36
+ run: |
37
+ gem install bundler
38
+ bundle install --jobs 4 --retry 3
39
+ bundle exec rubocop
40
+ bundle exec appraisal ${APPRAISAL_CONTEXT} bundle
41
+ bundle exec appraisal ${APPRAISAL_CONTEXT} rspec
data/.rubocop.yml CHANGED
@@ -2,7 +2,7 @@ require: rubocop-rspec
2
2
 
3
3
  AllCops:
4
4
  Exclude:
5
- - 'gemfiles/vendor/**/*'
5
+ - 'gemfiles/**/*'
6
6
  - 'vendor/**/*'
7
7
 
8
8
  Metrics/ClassLength:
@@ -34,4 +34,7 @@ Metrics/BlockLength:
34
34
  Style/Documentation:
35
35
  Exclude:
36
36
  - 'examples/**/*'
37
- - 'spec/**/*'
37
+ - 'spec/**/*'
38
+
39
+ RSpec/RepeatedExampleGroupBody:
40
+ Enabled: false
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Build Status](https://travis-ci.org/keypup-io/cloudtasker.svg?branch=master)](https://travis-ci.org/keypup-io/cloudtasker) [![Gem Version](https://badge.fury.io/rb/cloudtasker.svg)](https://badge.fury.io/rb/cloudtasker)
1
+ ![Build Status](https://github.com/keypup-io/cloudtasker/workflows/Test/badge.svg) [![Gem Version](https://badge.fury.io/rb/cloudtasker.svg)](https://badge.fury.io/rb/cloudtasker)
2
2
 
3
3
  # Cloudtasker
4
4
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.10.rc1)
4
+ cloudtasker (0.10.rc2)
5
5
  activesupport
6
6
  fugit
7
7
  google-cloud-tasks
@@ -11,56 +11,56 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actioncable (6.0.2.1)
15
- actionpack (= 6.0.2.1)
14
+ actioncable (6.0.2.2)
15
+ actionpack (= 6.0.2.2)
16
16
  nio4r (~> 2.0)
17
17
  websocket-driver (>= 0.6.1)
18
- actionmailbox (6.0.2.1)
19
- actionpack (= 6.0.2.1)
20
- activejob (= 6.0.2.1)
21
- activerecord (= 6.0.2.1)
22
- activestorage (= 6.0.2.1)
23
- activesupport (= 6.0.2.1)
18
+ actionmailbox (6.0.2.2)
19
+ actionpack (= 6.0.2.2)
20
+ activejob (= 6.0.2.2)
21
+ activerecord (= 6.0.2.2)
22
+ activestorage (= 6.0.2.2)
23
+ activesupport (= 6.0.2.2)
24
24
  mail (>= 2.7.1)
25
- actionmailer (6.0.2.1)
26
- actionpack (= 6.0.2.1)
27
- actionview (= 6.0.2.1)
28
- activejob (= 6.0.2.1)
25
+ actionmailer (6.0.2.2)
26
+ actionpack (= 6.0.2.2)
27
+ actionview (= 6.0.2.2)
28
+ activejob (= 6.0.2.2)
29
29
  mail (~> 2.5, >= 2.5.4)
30
30
  rails-dom-testing (~> 2.0)
31
- actionpack (6.0.2.1)
32
- actionview (= 6.0.2.1)
33
- activesupport (= 6.0.2.1)
31
+ actionpack (6.0.2.2)
32
+ actionview (= 6.0.2.2)
33
+ activesupport (= 6.0.2.2)
34
34
  rack (~> 2.0, >= 2.0.8)
35
35
  rack-test (>= 0.6.3)
36
36
  rails-dom-testing (~> 2.0)
37
37
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
38
- actiontext (6.0.2.1)
39
- actionpack (= 6.0.2.1)
40
- activerecord (= 6.0.2.1)
41
- activestorage (= 6.0.2.1)
42
- activesupport (= 6.0.2.1)
38
+ actiontext (6.0.2.2)
39
+ actionpack (= 6.0.2.2)
40
+ activerecord (= 6.0.2.2)
41
+ activestorage (= 6.0.2.2)
42
+ activesupport (= 6.0.2.2)
43
43
  nokogiri (>= 1.8.5)
44
- actionview (6.0.2.1)
45
- activesupport (= 6.0.2.1)
44
+ actionview (6.0.2.2)
45
+ activesupport (= 6.0.2.2)
46
46
  builder (~> 3.1)
47
47
  erubi (~> 1.4)
48
48
  rails-dom-testing (~> 2.0)
49
49
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
50
- activejob (6.0.2.1)
51
- activesupport (= 6.0.2.1)
50
+ activejob (6.0.2.2)
51
+ activesupport (= 6.0.2.2)
52
52
  globalid (>= 0.3.6)
53
- activemodel (6.0.2.1)
54
- activesupport (= 6.0.2.1)
55
- activerecord (6.0.2.1)
56
- activemodel (= 6.0.2.1)
57
- activesupport (= 6.0.2.1)
58
- activestorage (6.0.2.1)
59
- actionpack (= 6.0.2.1)
60
- activejob (= 6.0.2.1)
61
- activerecord (= 6.0.2.1)
53
+ activemodel (6.0.2.2)
54
+ activesupport (= 6.0.2.2)
55
+ activerecord (6.0.2.2)
56
+ activemodel (= 6.0.2.2)
57
+ activesupport (= 6.0.2.2)
58
+ activestorage (6.0.2.2)
59
+ actionpack (= 6.0.2.2)
60
+ activejob (= 6.0.2.2)
61
+ activerecord (= 6.0.2.2)
62
62
  marcel (~> 0.3.1)
63
- activesupport (6.0.2.1)
63
+ activesupport (6.0.2.2)
64
64
  concurrent-ruby (~> 1.0, >= 1.0.2)
65
65
  i18n (>= 0.7, < 2)
66
66
  minitest (~> 5.1)
@@ -80,16 +80,16 @@ GEM
80
80
  crass (1.0.6)
81
81
  diff-lcs (1.3)
82
82
  erubi (1.9.0)
83
- et-orbi (1.2.3)
83
+ et-orbi (1.2.4)
84
84
  tzinfo
85
- faraday (0.17.3)
85
+ faraday (1.0.1)
86
86
  multipart-post (>= 1.2, < 3)
87
- faraday-http-cache (2.0.0)
88
- faraday (~> 0.8)
89
- fugit (1.3.3)
87
+ faraday-http-cache (2.2.0)
88
+ faraday (>= 0.8)
89
+ fugit (1.3.4)
90
90
  et-orbi (~> 1.1, >= 1.1.8)
91
91
  raabro (~> 1.1)
92
- github_changelog_generator (1.15.0)
92
+ github_changelog_generator (1.15.2)
93
93
  activesupport
94
94
  faraday-http-cache
95
95
  multi_json
@@ -110,31 +110,32 @@ GEM
110
110
  grpc (~> 1.24)
111
111
  rly (~> 0.2.3)
112
112
  google-protobuf (3.11.4)
113
- googleapis-common-protos (1.3.9)
114
- google-protobuf (~> 3.0)
115
- googleapis-common-protos-types (~> 1.0)
116
- grpc (~> 1.0)
117
- googleapis-common-protos-types (1.0.4)
118
- google-protobuf (~> 3.0)
119
- googleauth (0.11.0)
113
+ googleapis-common-protos (1.3.10)
114
+ google-protobuf (~> 3.11)
115
+ googleapis-common-protos-types (>= 1.0.5, < 2.0)
116
+ grpc (~> 1.27)
117
+ googleapis-common-protos-types (1.0.5)
118
+ google-protobuf (~> 3.11)
119
+ googleauth (0.12.0)
120
120
  faraday (>= 0.17.3, < 2.0)
121
121
  jwt (>= 1.4, < 3.0)
122
122
  memoist (~> 0.16)
123
123
  multi_json (~> 1.11)
124
124
  os (>= 0.9, < 2.0)
125
- signet (~> 0.12)
126
- grpc (1.27.0)
125
+ signet (~> 0.14)
126
+ grpc (1.28.0)
127
127
  google-protobuf (~> 3.11)
128
128
  googleapis-common-protos-types (~> 1.0)
129
- grpc-google-iam-v1 (0.6.9)
130
- googleapis-common-protos (>= 1.3.1, < 2.0)
131
- grpc (~> 1.0)
129
+ grpc-google-iam-v1 (0.6.10)
130
+ google-protobuf (~> 3.11)
131
+ googleapis-common-protos (>= 1.3.10, < 2.0)
132
+ grpc (~> 1.27)
132
133
  hashdiff (1.0.1)
133
134
  i18n (1.8.2)
134
135
  concurrent-ruby (~> 1.0)
135
136
  jaro_winkler (1.5.4)
136
137
  jwt (2.2.1)
137
- loofah (2.4.0)
138
+ loofah (2.5.0)
138
139
  crass (~> 1.0.2)
139
140
  nokogiri (>= 1.5.9)
140
141
  mail (2.7.1)
@@ -142,7 +143,7 @@ GEM
142
143
  marcel (0.3.3)
143
144
  mimemagic (~> 0.3.2)
144
145
  memoist (0.16.2)
145
- method_source (0.9.2)
146
+ method_source (1.0.0)
146
147
  mimemagic (0.3.4)
147
148
  mini_mime (1.0.2)
148
149
  mini_portile2 (2.4.0)
@@ -152,41 +153,41 @@ GEM
152
153
  nio4r (2.5.2)
153
154
  nokogiri (1.10.9)
154
155
  mini_portile2 (~> 2.4.0)
155
- octokit (4.16.0)
156
+ octokit (4.18.0)
156
157
  faraday (>= 0.9)
157
158
  sawyer (~> 0.8.0, >= 0.5.3)
158
- os (1.0.1)
159
+ os (1.1.0)
159
160
  parallel (1.19.1)
160
- parser (2.7.0.4)
161
+ parser (2.7.1.1)
161
162
  ast (~> 2.4.0)
162
- public_suffix (4.0.3)
163
+ public_suffix (4.0.4)
163
164
  raabro (1.1.6)
164
165
  rack (2.2.2)
165
166
  rack-test (1.1.0)
166
167
  rack (>= 1.0, < 3)
167
- rails (6.0.2.1)
168
- actioncable (= 6.0.2.1)
169
- actionmailbox (= 6.0.2.1)
170
- actionmailer (= 6.0.2.1)
171
- actionpack (= 6.0.2.1)
172
- actiontext (= 6.0.2.1)
173
- actionview (= 6.0.2.1)
174
- activejob (= 6.0.2.1)
175
- activemodel (= 6.0.2.1)
176
- activerecord (= 6.0.2.1)
177
- activestorage (= 6.0.2.1)
178
- activesupport (= 6.0.2.1)
168
+ rails (6.0.2.2)
169
+ actioncable (= 6.0.2.2)
170
+ actionmailbox (= 6.0.2.2)
171
+ actionmailer (= 6.0.2.2)
172
+ actionpack (= 6.0.2.2)
173
+ actiontext (= 6.0.2.2)
174
+ actionview (= 6.0.2.2)
175
+ activejob (= 6.0.2.2)
176
+ activemodel (= 6.0.2.2)
177
+ activerecord (= 6.0.2.2)
178
+ activestorage (= 6.0.2.2)
179
+ activesupport (= 6.0.2.2)
179
180
  bundler (>= 1.3.0)
180
- railties (= 6.0.2.1)
181
+ railties (= 6.0.2.2)
181
182
  sprockets-rails (>= 2.0.0)
182
183
  rails-dom-testing (2.0.3)
183
184
  activesupport (>= 4.2.0)
184
185
  nokogiri (>= 1.6)
185
186
  rails-html-sanitizer (1.3.0)
186
187
  loofah (~> 2.3)
187
- railties (6.0.2.1)
188
- actionpack (= 6.0.2.1)
189
- activesupport (= 6.0.2.1)
188
+ railties (6.0.2.2)
189
+ actionpack (= 6.0.2.2)
190
+ activesupport (= 6.0.2.2)
190
191
  method_source
191
192
  rake (>= 0.8.7)
192
193
  thor (>= 0.20.3, < 2.0)
@@ -201,20 +202,20 @@ GEM
201
202
  rspec-mocks (~> 3.9.0)
202
203
  rspec-core (3.9.1)
203
204
  rspec-support (~> 3.9.1)
204
- rspec-expectations (3.9.0)
205
+ rspec-expectations (3.9.1)
205
206
  diff-lcs (>= 1.2.0, < 2.0)
206
207
  rspec-support (~> 3.9.0)
207
208
  rspec-mocks (3.9.1)
208
209
  diff-lcs (>= 1.2.0, < 2.0)
209
210
  rspec-support (~> 3.9.0)
210
- rspec-rails (3.9.0)
211
- actionpack (>= 3.0)
212
- activesupport (>= 3.0)
213
- railties (>= 3.0)
214
- rspec-core (~> 3.9.0)
215
- rspec-expectations (~> 3.9.0)
216
- rspec-mocks (~> 3.9.0)
217
- rspec-support (~> 3.9.0)
211
+ rspec-rails (4.0.0)
212
+ actionpack (>= 4.2)
213
+ activesupport (>= 4.2)
214
+ railties (>= 4.2)
215
+ rspec-core (~> 3.9)
216
+ rspec-expectations (~> 3.9)
217
+ rspec-mocks (~> 3.9)
218
+ rspec-support (~> 3.9)
218
219
  rspec-support (3.9.2)
219
220
  rubocop (0.76.0)
220
221
  jaro_winkler (~> 1.5.1)
@@ -230,7 +231,7 @@ GEM
230
231
  sawyer (0.8.2)
231
232
  addressable (>= 2.3.5)
232
233
  faraday (> 0.8, < 2.0)
233
- signet (0.13.0)
234
+ signet (0.14.0)
234
235
  addressable (~> 2.3)
235
236
  faraday (>= 0.17.3, < 2.0)
236
237
  jwt (>= 1.5, < 3.0)
@@ -246,10 +247,10 @@ GEM
246
247
  thor (1.0.1)
247
248
  thread_safe (0.3.6)
248
249
  timecop (0.9.1)
249
- tzinfo (1.2.6)
250
+ tzinfo (1.2.7)
250
251
  thread_safe (~> 0.1)
251
252
  unicode-display_width (1.6.1)
252
- webmock (3.8.2)
253
+ webmock (3.8.3)
253
254
  addressable (>= 2.3.6)
254
255
  crack (>= 0.3.2)
255
256
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.10.rc1)
4
+ cloudtasker (0.10.rc2)
5
5
  activesupport
6
6
  fugit
7
7
  google-cloud-tasks
@@ -11,56 +11,56 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actioncable (6.0.2.1)
15
- actionpack (= 6.0.2.1)
14
+ actioncable (6.0.2.2)
15
+ actionpack (= 6.0.2.2)
16
16
  nio4r (~> 2.0)
17
17
  websocket-driver (>= 0.6.1)
18
- actionmailbox (6.0.2.1)
19
- actionpack (= 6.0.2.1)
20
- activejob (= 6.0.2.1)
21
- activerecord (= 6.0.2.1)
22
- activestorage (= 6.0.2.1)
23
- activesupport (= 6.0.2.1)
18
+ actionmailbox (6.0.2.2)
19
+ actionpack (= 6.0.2.2)
20
+ activejob (= 6.0.2.2)
21
+ activerecord (= 6.0.2.2)
22
+ activestorage (= 6.0.2.2)
23
+ activesupport (= 6.0.2.2)
24
24
  mail (>= 2.7.1)
25
- actionmailer (6.0.2.1)
26
- actionpack (= 6.0.2.1)
27
- actionview (= 6.0.2.1)
28
- activejob (= 6.0.2.1)
25
+ actionmailer (6.0.2.2)
26
+ actionpack (= 6.0.2.2)
27
+ actionview (= 6.0.2.2)
28
+ activejob (= 6.0.2.2)
29
29
  mail (~> 2.5, >= 2.5.4)
30
30
  rails-dom-testing (~> 2.0)
31
- actionpack (6.0.2.1)
32
- actionview (= 6.0.2.1)
33
- activesupport (= 6.0.2.1)
31
+ actionpack (6.0.2.2)
32
+ actionview (= 6.0.2.2)
33
+ activesupport (= 6.0.2.2)
34
34
  rack (~> 2.0, >= 2.0.8)
35
35
  rack-test (>= 0.6.3)
36
36
  rails-dom-testing (~> 2.0)
37
37
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
38
- actiontext (6.0.2.1)
39
- actionpack (= 6.0.2.1)
40
- activerecord (= 6.0.2.1)
41
- activestorage (= 6.0.2.1)
42
- activesupport (= 6.0.2.1)
38
+ actiontext (6.0.2.2)
39
+ actionpack (= 6.0.2.2)
40
+ activerecord (= 6.0.2.2)
41
+ activestorage (= 6.0.2.2)
42
+ activesupport (= 6.0.2.2)
43
43
  nokogiri (>= 1.8.5)
44
- actionview (6.0.2.1)
45
- activesupport (= 6.0.2.1)
44
+ actionview (6.0.2.2)
45
+ activesupport (= 6.0.2.2)
46
46
  builder (~> 3.1)
47
47
  erubi (~> 1.4)
48
48
  rails-dom-testing (~> 2.0)
49
49
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
50
- activejob (6.0.2.1)
51
- activesupport (= 6.0.2.1)
50
+ activejob (6.0.2.2)
51
+ activesupport (= 6.0.2.2)
52
52
  globalid (>= 0.3.6)
53
- activemodel (6.0.2.1)
54
- activesupport (= 6.0.2.1)
55
- activerecord (6.0.2.1)
56
- activemodel (= 6.0.2.1)
57
- activesupport (= 6.0.2.1)
58
- activestorage (6.0.2.1)
59
- actionpack (= 6.0.2.1)
60
- activejob (= 6.0.2.1)
61
- activerecord (= 6.0.2.1)
53
+ activemodel (6.0.2.2)
54
+ activesupport (= 6.0.2.2)
55
+ activerecord (6.0.2.2)
56
+ activemodel (= 6.0.2.2)
57
+ activesupport (= 6.0.2.2)
58
+ activestorage (6.0.2.2)
59
+ actionpack (= 6.0.2.2)
60
+ activejob (= 6.0.2.2)
61
+ activerecord (= 6.0.2.2)
62
62
  marcel (~> 0.3.1)
63
- activesupport (6.0.2.1)
63
+ activesupport (6.0.2.2)
64
64
  concurrent-ruby (~> 1.0, >= 1.0.2)
65
65
  i18n (>= 0.7, < 2)
66
66
  minitest (~> 5.1)
@@ -80,16 +80,16 @@ GEM
80
80
  crass (1.0.6)
81
81
  diff-lcs (1.3)
82
82
  erubi (1.9.0)
83
- et-orbi (1.2.3)
83
+ et-orbi (1.2.4)
84
84
  tzinfo
85
- faraday (0.17.3)
85
+ faraday (1.0.1)
86
86
  multipart-post (>= 1.2, < 3)
87
- faraday-http-cache (2.0.0)
88
- faraday (~> 0.8)
89
- fugit (1.3.3)
87
+ faraday-http-cache (2.2.0)
88
+ faraday (>= 0.8)
89
+ fugit (1.3.4)
90
90
  et-orbi (~> 1.1, >= 1.1.8)
91
91
  raabro (~> 1.1)
92
- github_changelog_generator (1.15.0)
92
+ github_changelog_generator (1.15.2)
93
93
  activesupport
94
94
  faraday-http-cache
95
95
  multi_json
@@ -110,31 +110,32 @@ GEM
110
110
  grpc (~> 1.24)
111
111
  rly (~> 0.2.3)
112
112
  google-protobuf (3.11.4)
113
- googleapis-common-protos (1.3.9)
114
- google-protobuf (~> 3.0)
115
- googleapis-common-protos-types (~> 1.0)
116
- grpc (~> 1.0)
117
- googleapis-common-protos-types (1.0.4)
118
- google-protobuf (~> 3.0)
119
- googleauth (0.11.0)
113
+ googleapis-common-protos (1.3.10)
114
+ google-protobuf (~> 3.11)
115
+ googleapis-common-protos-types (>= 1.0.5, < 2.0)
116
+ grpc (~> 1.27)
117
+ googleapis-common-protos-types (1.0.5)
118
+ google-protobuf (~> 3.11)
119
+ googleauth (0.12.0)
120
120
  faraday (>= 0.17.3, < 2.0)
121
121
  jwt (>= 1.4, < 3.0)
122
122
  memoist (~> 0.16)
123
123
  multi_json (~> 1.11)
124
124
  os (>= 0.9, < 2.0)
125
- signet (~> 0.12)
126
- grpc (1.27.0)
125
+ signet (~> 0.14)
126
+ grpc (1.28.0)
127
127
  google-protobuf (~> 3.11)
128
128
  googleapis-common-protos-types (~> 1.0)
129
- grpc-google-iam-v1 (0.6.9)
130
- googleapis-common-protos (>= 1.3.1, < 2.0)
131
- grpc (~> 1.0)
129
+ grpc-google-iam-v1 (0.6.10)
130
+ google-protobuf (~> 3.11)
131
+ googleapis-common-protos (>= 1.3.10, < 2.0)
132
+ grpc (~> 1.27)
132
133
  hashdiff (1.0.1)
133
134
  i18n (1.8.2)
134
135
  concurrent-ruby (~> 1.0)
135
136
  jaro_winkler (1.5.4)
136
137
  jwt (2.2.1)
137
- loofah (2.4.0)
138
+ loofah (2.5.0)
138
139
  crass (~> 1.0.2)
139
140
  nokogiri (>= 1.5.9)
140
141
  mail (2.7.1)
@@ -142,7 +143,7 @@ GEM
142
143
  marcel (0.3.3)
143
144
  mimemagic (~> 0.3.2)
144
145
  memoist (0.16.2)
145
- method_source (0.9.2)
146
+ method_source (1.0.0)
146
147
  mimemagic (0.3.4)
147
148
  mini_mime (1.0.2)
148
149
  mini_portile2 (2.4.0)
@@ -152,41 +153,41 @@ GEM
152
153
  nio4r (2.5.2)
153
154
  nokogiri (1.10.9)
154
155
  mini_portile2 (~> 2.4.0)
155
- octokit (4.16.0)
156
+ octokit (4.18.0)
156
157
  faraday (>= 0.9)
157
158
  sawyer (~> 0.8.0, >= 0.5.3)
158
- os (1.0.1)
159
+ os (1.1.0)
159
160
  parallel (1.19.1)
160
- parser (2.7.0.4)
161
+ parser (2.7.1.1)
161
162
  ast (~> 2.4.0)
162
- public_suffix (4.0.3)
163
+ public_suffix (4.0.4)
163
164
  raabro (1.1.6)
164
165
  rack (2.2.2)
165
166
  rack-test (1.1.0)
166
167
  rack (>= 1.0, < 3)
167
- rails (6.0.2.1)
168
- actioncable (= 6.0.2.1)
169
- actionmailbox (= 6.0.2.1)
170
- actionmailer (= 6.0.2.1)
171
- actionpack (= 6.0.2.1)
172
- actiontext (= 6.0.2.1)
173
- actionview (= 6.0.2.1)
174
- activejob (= 6.0.2.1)
175
- activemodel (= 6.0.2.1)
176
- activerecord (= 6.0.2.1)
177
- activestorage (= 6.0.2.1)
178
- activesupport (= 6.0.2.1)
168
+ rails (6.0.2.2)
169
+ actioncable (= 6.0.2.2)
170
+ actionmailbox (= 6.0.2.2)
171
+ actionmailer (= 6.0.2.2)
172
+ actionpack (= 6.0.2.2)
173
+ actiontext (= 6.0.2.2)
174
+ actionview (= 6.0.2.2)
175
+ activejob (= 6.0.2.2)
176
+ activemodel (= 6.0.2.2)
177
+ activerecord (= 6.0.2.2)
178
+ activestorage (= 6.0.2.2)
179
+ activesupport (= 6.0.2.2)
179
180
  bundler (>= 1.3.0)
180
- railties (= 6.0.2.1)
181
+ railties (= 6.0.2.2)
181
182
  sprockets-rails (>= 2.0.0)
182
183
  rails-dom-testing (2.0.3)
183
184
  activesupport (>= 4.2.0)
184
185
  nokogiri (>= 1.6)
185
186
  rails-html-sanitizer (1.3.0)
186
187
  loofah (~> 2.3)
187
- railties (6.0.2.1)
188
- actionpack (= 6.0.2.1)
189
- activesupport (= 6.0.2.1)
188
+ railties (6.0.2.2)
189
+ actionpack (= 6.0.2.2)
190
+ activesupport (= 6.0.2.2)
190
191
  method_source
191
192
  rake (>= 0.8.7)
192
193
  thor (>= 0.20.3, < 2.0)
@@ -201,20 +202,20 @@ GEM
201
202
  rspec-mocks (~> 3.9.0)
202
203
  rspec-core (3.9.1)
203
204
  rspec-support (~> 3.9.1)
204
- rspec-expectations (3.9.0)
205
+ rspec-expectations (3.9.1)
205
206
  diff-lcs (>= 1.2.0, < 2.0)
206
207
  rspec-support (~> 3.9.0)
207
208
  rspec-mocks (3.9.1)
208
209
  diff-lcs (>= 1.2.0, < 2.0)
209
210
  rspec-support (~> 3.9.0)
210
- rspec-rails (3.9.0)
211
- actionpack (>= 3.0)
212
- activesupport (>= 3.0)
213
- railties (>= 3.0)
214
- rspec-core (~> 3.9.0)
215
- rspec-expectations (~> 3.9.0)
216
- rspec-mocks (~> 3.9.0)
217
- rspec-support (~> 3.9.0)
211
+ rspec-rails (4.0.0)
212
+ actionpack (>= 4.2)
213
+ activesupport (>= 4.2)
214
+ railties (>= 4.2)
215
+ rspec-core (~> 3.9)
216
+ rspec-expectations (~> 3.9)
217
+ rspec-mocks (~> 3.9)
218
+ rspec-support (~> 3.9)
218
219
  rspec-support (3.9.2)
219
220
  rubocop (0.76.0)
220
221
  jaro_winkler (~> 1.5.1)
@@ -230,7 +231,7 @@ GEM
230
231
  sawyer (0.8.2)
231
232
  addressable (>= 2.3.5)
232
233
  faraday (> 0.8, < 2.0)
233
- signet (0.13.0)
234
+ signet (0.14.0)
234
235
  addressable (~> 2.3)
235
236
  faraday (>= 0.17.3, < 2.0)
236
237
  jwt (>= 1.5, < 3.0)
@@ -246,10 +247,10 @@ GEM
246
247
  thor (1.0.1)
247
248
  thread_safe (0.3.6)
248
249
  timecop (0.9.1)
249
- tzinfo (1.2.6)
250
+ tzinfo (1.2.7)
250
251
  thread_safe (~> 0.1)
251
252
  unicode-display_width (1.6.1)
252
- webmock (3.8.2)
253
+ webmock (3.8.3)
253
254
  addressable (>= 2.3.6)
254
255
  crack (>= 0.3.2)
255
256
  hashdiff (>= 0.4.0, < 2.0.0)