my_api_client 0.20.0 → 0.23.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +34 -18
- data/.github/dependabot.yml +32 -0
- data/.rubocop.yml +10 -10
- data/.rubocop_todo.yml +2 -2
- data/CHANGELOG.md +215 -249
- data/Gemfile.lock +54 -57
- data/README.jp.md +36 -34
- data/README.md +391 -8
- data/example/api_clients/application_api_client.rb +1 -1
- data/gemfiles/rails_5.0.gemfile +1 -0
- data/gemfiles/rails_5.1.gemfile +1 -0
- data/gemfiles/rails_5.2.gemfile +1 -0
- data/gemfiles/rails_6.0.gemfile +1 -0
- data/gemfiles/rails_7.0.gemfile +15 -0
- data/lib/generators/rails/templates/api_client.rb.erb +3 -5
- data/lib/generators/rspec/templates/api_client_spec.rb.erb +0 -8
- data/lib/my_api_client/errors/network_error.rb +3 -3
- data/lib/my_api_client/errors.rb +2 -2
- data/lib/my_api_client/integrations/bugsnag.rb +2 -2
- data/lib/my_api_client/rspec/matchers/be_handled_as_an_error.rb +3 -3
- data/lib/my_api_client/rspec/stub.rb +11 -7
- data/lib/my_api_client/version.rb +1 -1
- data/my_api/Gemfile +1 -1
- data/my_api/Gemfile.lock +100 -99
- data/my_api/app/controllers/pagination_controller.rb +1 -1
- data/my_api/public/index.html +2 -2
- data/my_api/spec/spec_helper.rb +1 -1
- data/my_api_client.gemspec +4 -1
- data/rails_app/rails_5.2/Gemfile.lock +70 -64
- data/rails_app/rails_6.0/Gemfile +1 -0
- data/rails_app/rails_6.0/Gemfile.lock +92 -94
- data/rails_app/rails_6.1/Gemfile +2 -2
- data/rails_app/rails_6.1/Gemfile.lock +91 -95
- data/rails_app/rails_6.1/Rakefile +3 -1
- data/rails_app/rails_6.1/bin/bundle +28 -20
- data/rails_app/rails_6.1/bin/rails +4 -2
- data/rails_app/rails_6.1/bin/rake +4 -2
- data/rails_app/rails_6.1/bin/setup +3 -1
- data/rails_app/rails_6.1/config.ru +3 -1
- data/rails_app/rails_7.0/Gemfile +13 -0
- data/rails_app/rails_7.0/Gemfile.lock +210 -0
- data/rails_app/rails_7.0/README.md +24 -0
- data/rails_app/rails_7.0/Rakefile +8 -0
- data/rails_app/rails_7.0/app/controllers/application_controller.rb +4 -0
- data/rails_app/rails_7.0/app/models/application_record.rb +5 -0
- data/rails_app/rails_7.0/bin/bundle +122 -0
- data/rails_app/rails_7.0/bin/rails +6 -0
- data/rails_app/rails_7.0/bin/rake +6 -0
- data/rails_app/rails_7.0/bin/setup +35 -0
- data/rails_app/rails_7.0/config/application.rb +41 -0
- data/rails_app/rails_7.0/config/boot.rb +5 -0
- data/rails_app/rails_7.0/config/credentials.yml.enc +1 -0
- data/rails_app/rails_7.0/config/database.yml +25 -0
- data/rails_app/rails_7.0/config/environment.rb +7 -0
- data/rails_app/rails_7.0/config/environments/development.rb +58 -0
- data/rails_app/rails_7.0/config/environments/production.rb +70 -0
- data/rails_app/rails_7.0/config/environments/test.rb +52 -0
- data/rails_app/rails_7.0/config/initializers/cors.rb +17 -0
- data/rails_app/rails_7.0/config/initializers/filter_parameter_logging.rb +8 -0
- data/rails_app/rails_7.0/config/initializers/inflections.rb +17 -0
- data/rails_app/rails_7.0/config/locales/en.yml +33 -0
- data/rails_app/rails_7.0/config/routes.rb +8 -0
- data/rails_app/rails_7.0/config.ru +8 -0
- data/rails_app/rails_7.0/db/seeds.rb +8 -0
- data/rails_app/rails_7.0/public/robots.txt +1 -0
- data/rails_app/rails_7.0/spec/rails_helper.rb +14 -0
- data/rails_app/rails_7.0/spec/spec_helper.rb +13 -0
- metadata +36 -6
- data/.dependabot/config.yml +0 -34
data/my_api/Gemfile.lock
CHANGED
@@ -1,44 +1,44 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
actionmailer (6.1.
|
5
|
-
actionpack (= 6.1.
|
6
|
-
actionview (= 6.1.
|
7
|
-
activejob (= 6.1.
|
8
|
-
activesupport (= 6.1.
|
4
|
+
actionmailer (6.1.5.1)
|
5
|
+
actionpack (= 6.1.5.1)
|
6
|
+
actionview (= 6.1.5.1)
|
7
|
+
activejob (= 6.1.5.1)
|
8
|
+
activesupport (= 6.1.5.1)
|
9
9
|
mail (~> 2.5, >= 2.5.4)
|
10
10
|
rails-dom-testing (~> 2.0)
|
11
|
-
actionpack (6.1.
|
12
|
-
actionview (= 6.1.
|
13
|
-
activesupport (= 6.1.
|
11
|
+
actionpack (6.1.5.1)
|
12
|
+
actionview (= 6.1.5.1)
|
13
|
+
activesupport (= 6.1.5.1)
|
14
14
|
rack (~> 2.0, >= 2.0.9)
|
15
15
|
rack-test (>= 0.6.3)
|
16
16
|
rails-dom-testing (~> 2.0)
|
17
17
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
18
|
-
actionview (6.1.
|
19
|
-
activesupport (= 6.1.
|
18
|
+
actionview (6.1.5.1)
|
19
|
+
activesupport (= 6.1.5.1)
|
20
20
|
builder (~> 3.1)
|
21
21
|
erubi (~> 1.4)
|
22
22
|
rails-dom-testing (~> 2.0)
|
23
23
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
24
|
-
activejob (6.1.
|
25
|
-
activesupport (= 6.1.
|
24
|
+
activejob (6.1.5.1)
|
25
|
+
activesupport (= 6.1.5.1)
|
26
26
|
globalid (>= 0.3.6)
|
27
|
-
activemodel (6.1.
|
28
|
-
activesupport (= 6.1.
|
29
|
-
activerecord (6.1.
|
30
|
-
activemodel (= 6.1.
|
31
|
-
activesupport (= 6.1.
|
32
|
-
activesupport (6.1.
|
27
|
+
activemodel (6.1.5.1)
|
28
|
+
activesupport (= 6.1.5.1)
|
29
|
+
activerecord (6.1.5.1)
|
30
|
+
activemodel (= 6.1.5.1)
|
31
|
+
activesupport (= 6.1.5.1)
|
32
|
+
activesupport (6.1.5.1)
|
33
33
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
34
34
|
i18n (>= 1.6, < 2)
|
35
35
|
minitest (>= 5.1)
|
36
36
|
tzinfo (~> 2.0)
|
37
37
|
zeitwerk (~> 2.3)
|
38
|
-
addressable (2.
|
38
|
+
addressable (2.8.0)
|
39
39
|
public_suffix (>= 2.0.2, < 5.0)
|
40
|
-
aws-eventstream (1.
|
41
|
-
aws-mfa-secure (0.4.
|
40
|
+
aws-eventstream (1.2.0)
|
41
|
+
aws-mfa-secure (0.4.4)
|
42
42
|
activesupport
|
43
43
|
aws-sdk-core
|
44
44
|
aws_config
|
@@ -46,69 +46,70 @@ GEM
|
|
46
46
|
rainbow
|
47
47
|
thor
|
48
48
|
zeitwerk
|
49
|
-
aws-partitions (1.
|
50
|
-
aws-sdk-apigateway (1.
|
51
|
-
aws-sdk-core (~> 3, >= 3.
|
49
|
+
aws-partitions (1.579.0)
|
50
|
+
aws-sdk-apigateway (1.76.0)
|
51
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
52
52
|
aws-sigv4 (~> 1.1)
|
53
|
-
aws-sdk-cloudformation (1.
|
54
|
-
aws-sdk-core (~> 3, >= 3.
|
53
|
+
aws-sdk-cloudformation (1.68.0)
|
54
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
55
55
|
aws-sigv4 (~> 1.1)
|
56
|
-
aws-sdk-cloudwatchlogs (1.
|
57
|
-
aws-sdk-core (~> 3, >= 3.
|
56
|
+
aws-sdk-cloudwatchlogs (1.52.0)
|
57
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
58
58
|
aws-sigv4 (~> 1.1)
|
59
|
-
aws-sdk-core (3.
|
59
|
+
aws-sdk-core (3.130.2)
|
60
60
|
aws-eventstream (~> 1, >= 1.0.2)
|
61
|
-
aws-partitions (~> 1, >= 1.
|
61
|
+
aws-partitions (~> 1, >= 1.525.0)
|
62
62
|
aws-sigv4 (~> 1.1)
|
63
63
|
jmespath (~> 1.0)
|
64
|
-
aws-sdk-dynamodb (1.
|
65
|
-
aws-sdk-core (~> 3, >= 3.
|
64
|
+
aws-sdk-dynamodb (1.74.0)
|
65
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
66
66
|
aws-sigv4 (~> 1.1)
|
67
|
-
aws-sdk-kinesis (1.
|
68
|
-
aws-sdk-core (~> 3, >= 3.
|
67
|
+
aws-sdk-kinesis (1.41.0)
|
68
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
69
69
|
aws-sigv4 (~> 1.1)
|
70
|
-
aws-sdk-kms (1.
|
71
|
-
aws-sdk-core (~> 3, >= 3.
|
70
|
+
aws-sdk-kms (1.56.0)
|
71
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
72
72
|
aws-sigv4 (~> 1.1)
|
73
|
-
aws-sdk-lambda (1.
|
74
|
-
aws-sdk-core (~> 3, >= 3.
|
73
|
+
aws-sdk-lambda (1.83.0)
|
74
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
75
75
|
aws-sigv4 (~> 1.1)
|
76
|
-
aws-sdk-s3 (1.
|
77
|
-
aws-sdk-core (~> 3, >= 3.
|
76
|
+
aws-sdk-s3 (1.113.0)
|
77
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
78
78
|
aws-sdk-kms (~> 1)
|
79
|
+
aws-sigv4 (~> 1.4)
|
80
|
+
aws-sdk-sns (1.53.0)
|
81
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
79
82
|
aws-sigv4 (~> 1.1)
|
80
|
-
aws-sdk-
|
81
|
-
aws-sdk-core (~> 3, >= 3.
|
83
|
+
aws-sdk-sqs (1.51.0)
|
84
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
82
85
|
aws-sigv4 (~> 1.1)
|
83
|
-
aws-sdk-
|
84
|
-
aws-sdk-core (~> 3, >= 3.
|
86
|
+
aws-sdk-ssm (1.135.0)
|
87
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
85
88
|
aws-sigv4 (~> 1.1)
|
86
|
-
aws-
|
87
|
-
aws-sdk-core (~> 3, >= 3.109.0)
|
88
|
-
aws-sigv4 (~> 1.1)
|
89
|
-
aws-sigv4 (1.2.2)
|
89
|
+
aws-sigv4 (1.5.0)
|
90
90
|
aws-eventstream (~> 1, >= 1.0.2)
|
91
91
|
aws_config (0.1.0)
|
92
92
|
builder (3.2.4)
|
93
93
|
byebug (11.1.3)
|
94
|
-
capybara (3.
|
94
|
+
capybara (3.37.1)
|
95
95
|
addressable
|
96
|
+
matrix
|
96
97
|
mini_mime (>= 0.1.3)
|
97
98
|
nokogiri (~> 1.8)
|
98
99
|
rack (>= 1.6.0)
|
99
100
|
rack-test (>= 0.6.3)
|
100
101
|
regexp_parser (>= 1.5, < 3.0)
|
101
102
|
xpath (~> 3.2)
|
102
|
-
cfn-status (0.4.
|
103
|
+
cfn-status (0.4.6)
|
103
104
|
aws-sdk-cloudformation
|
104
105
|
cfn_camelizer (0.4.9)
|
105
106
|
activesupport
|
106
107
|
memoist
|
107
108
|
rainbow
|
108
109
|
cfn_response (0.2.0)
|
109
|
-
concurrent-ruby (1.1.
|
110
|
+
concurrent-ruby (1.1.10)
|
110
111
|
crass (1.0.6)
|
111
|
-
diff-lcs (1.
|
112
|
+
diff-lcs (1.5.0)
|
112
113
|
dotenv (2.7.6)
|
113
114
|
dynomite (1.2.6)
|
114
115
|
activesupport
|
@@ -116,12 +117,12 @@ GEM
|
|
116
117
|
rainbow
|
117
118
|
erubi (1.10.0)
|
118
119
|
gems (1.2.0)
|
119
|
-
globalid (0.
|
120
|
-
activesupport (>=
|
121
|
-
hashie (
|
122
|
-
i18n (1.
|
120
|
+
globalid (1.0.0)
|
121
|
+
activesupport (>= 5.0)
|
122
|
+
hashie (5.0.0)
|
123
|
+
i18n (1.10.0)
|
123
124
|
concurrent-ruby (~> 1.0)
|
124
|
-
jets (3.
|
125
|
+
jets (3.1.2)
|
125
126
|
actionmailer (~> 6.1.0)
|
126
127
|
actionpack (~> 6.1.0)
|
127
128
|
actionview (~> 6.1.0)
|
@@ -147,89 +148,89 @@ GEM
|
|
147
148
|
jets-html-sanitizer
|
148
149
|
kramdown
|
149
150
|
memoist
|
150
|
-
|
151
|
+
mini_mime
|
151
152
|
rack
|
152
153
|
railties (~> 6.1.0)
|
153
154
|
rainbow
|
154
155
|
recursive-open-struct
|
155
|
-
serverlessgems (~> 0.1.
|
156
|
+
serverlessgems (~> 0.1.4)
|
156
157
|
shotgun
|
157
158
|
text-table
|
158
159
|
thor
|
159
|
-
zeitwerk
|
160
|
+
zeitwerk (~> 2.5.0)
|
160
161
|
jets-html-sanitizer (1.0.4)
|
161
162
|
loofah (~> 2.2, >= 2.2.2)
|
162
|
-
jmespath (1.
|
163
|
-
kramdown (2.3.
|
163
|
+
jmespath (1.6.1)
|
164
|
+
kramdown (2.3.2)
|
164
165
|
rexml
|
165
166
|
launchy (2.5.0)
|
166
167
|
addressable (~> 2.7)
|
167
|
-
loofah (2.
|
168
|
+
loofah (2.16.0)
|
168
169
|
crass (~> 1.0.2)
|
169
170
|
nokogiri (>= 1.5.9)
|
170
171
|
mail (2.7.1)
|
171
172
|
mini_mime (>= 0.1.1)
|
173
|
+
matrix (0.4.2)
|
172
174
|
memoist (0.16.2)
|
173
175
|
method_source (1.0.0)
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
mini_portile2 (~> 2.5.0)
|
176
|
+
mini_mime (1.1.2)
|
177
|
+
mini_portile2 (2.8.0)
|
178
|
+
minitest (5.15.0)
|
179
|
+
nio4r (2.5.8)
|
180
|
+
nokogiri (1.13.6)
|
181
|
+
mini_portile2 (~> 2.8.0)
|
181
182
|
racc (~> 1.4)
|
182
|
-
public_suffix (4.0.
|
183
|
-
puma (5.
|
183
|
+
public_suffix (4.0.7)
|
184
|
+
puma (5.6.4)
|
184
185
|
nio4r (~> 2.0)
|
185
|
-
racc (1.
|
186
|
-
rack (2.2.3)
|
186
|
+
racc (1.6.0)
|
187
|
+
rack (2.2.3.1)
|
187
188
|
rack-test (1.1.0)
|
188
189
|
rack (>= 1.0, < 3)
|
189
190
|
rails-dom-testing (2.0.3)
|
190
191
|
activesupport (>= 4.2.0)
|
191
192
|
nokogiri (>= 1.6)
|
192
|
-
rails-html-sanitizer (1.
|
193
|
+
rails-html-sanitizer (1.4.2)
|
193
194
|
loofah (~> 2.3)
|
194
|
-
railties (6.1.
|
195
|
-
actionpack (= 6.1.
|
196
|
-
activesupport (= 6.1.
|
195
|
+
railties (6.1.5.1)
|
196
|
+
actionpack (= 6.1.5.1)
|
197
|
+
activesupport (= 6.1.5.1)
|
197
198
|
method_source
|
198
|
-
rake (>=
|
199
|
+
rake (>= 12.2)
|
199
200
|
thor (~> 1.0)
|
200
|
-
rainbow (3.
|
201
|
-
rake (13.0.
|
201
|
+
rainbow (3.1.1)
|
202
|
+
rake (13.0.6)
|
202
203
|
recursive-open-struct (1.1.3)
|
203
|
-
regexp_parser (2.0
|
204
|
-
rexml (3.2.
|
205
|
-
rspec (3.
|
206
|
-
rspec-core (~> 3.
|
207
|
-
rspec-expectations (~> 3.
|
208
|
-
rspec-mocks (~> 3.
|
209
|
-
rspec-core (3.
|
210
|
-
rspec-support (~> 3.
|
211
|
-
rspec-expectations (3.
|
204
|
+
regexp_parser (2.4.0)
|
205
|
+
rexml (3.2.5)
|
206
|
+
rspec (3.11.0)
|
207
|
+
rspec-core (~> 3.11.0)
|
208
|
+
rspec-expectations (~> 3.11.0)
|
209
|
+
rspec-mocks (~> 3.11.0)
|
210
|
+
rspec-core (3.11.0)
|
211
|
+
rspec-support (~> 3.11.0)
|
212
|
+
rspec-expectations (3.11.0)
|
212
213
|
diff-lcs (>= 1.2.0, < 2.0)
|
213
|
-
rspec-support (~> 3.
|
214
|
-
rspec-mocks (3.
|
214
|
+
rspec-support (~> 3.11.0)
|
215
|
+
rspec-mocks (3.11.0)
|
215
216
|
diff-lcs (>= 1.2.0, < 2.0)
|
216
|
-
rspec-support (~> 3.
|
217
|
-
rspec-support (3.
|
218
|
-
rspec_junit_formatter (0.
|
217
|
+
rspec-support (~> 3.11.0)
|
218
|
+
rspec-support (3.11.0)
|
219
|
+
rspec_junit_formatter (0.5.1)
|
219
220
|
rspec-core (>= 2, < 4, != 2.12.0)
|
220
|
-
serverlessgems (0.1.
|
221
|
+
serverlessgems (0.1.6)
|
221
222
|
gems
|
222
223
|
memoist
|
223
224
|
zeitwerk
|
224
225
|
shotgun (0.9.2)
|
225
226
|
rack (>= 1.0)
|
226
227
|
text-table (1.2.4)
|
227
|
-
thor (1.1
|
228
|
+
thor (1.2.1)
|
228
229
|
tzinfo (2.0.4)
|
229
230
|
concurrent-ruby (~> 1.0)
|
230
231
|
xpath (3.2.0)
|
231
232
|
nokogiri (~> 1.8)
|
232
|
-
zeitwerk (2.4
|
233
|
+
zeitwerk (2.5.4)
|
233
234
|
|
234
235
|
PLATFORMS
|
235
236
|
ruby
|
@@ -240,7 +241,7 @@ DEPENDENCIES
|
|
240
241
|
dynomite
|
241
242
|
jets
|
242
243
|
launchy
|
243
|
-
nokogiri (~> 1.
|
244
|
+
nokogiri (~> 1.13.6)
|
244
245
|
puma
|
245
246
|
rack
|
246
247
|
rspec
|
@@ -51,7 +51,7 @@ class PaginationController < ApplicationController
|
|
51
51
|
# So this is workaround.
|
52
52
|
def page_link(page)
|
53
53
|
query_strings = "?#{{ page: page }.to_query}"
|
54
|
-
uri = File.join(ENV
|
54
|
+
uri = File.join(ENV.fetch('JETS_HOST', nil), ENV.fetch('JETS_STAGE', nil), pagination_path)
|
55
55
|
uri.sub!('http://', 'https://')
|
56
56
|
URI.join(uri, query_strings)
|
57
57
|
end
|
data/my_api/public/index.html
CHANGED
@@ -83,8 +83,8 @@
|
|
83
83
|
<p>Also check out the <a href="http://rubyonjets.com/reference">Jets CLI reference</a>.</p>
|
84
84
|
</div>
|
85
85
|
<p class="version">
|
86
|
-
<strong>Jets version:</strong>
|
87
|
-
<strong>Ruby version:</strong> 2.
|
86
|
+
<strong>Jets version:</strong> 3.0.11<br />
|
87
|
+
<strong>Ruby version:</strong> 2.7.2
|
88
88
|
</p>
|
89
89
|
</div>
|
90
90
|
</body>
|
data/my_api/spec/spec_helper.rb
CHANGED
data/my_api_client.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
23
|
spec.require_paths = ['lib']
|
24
24
|
|
25
|
-
spec.required_ruby_version = '>= 2.
|
25
|
+
spec.required_ruby_version = '>= 2.7.0'
|
26
26
|
|
27
27
|
spec.add_dependency 'activesupport', '>= 5.2.0'
|
28
28
|
spec.add_dependency 'faraday', '>= 0.17.1'
|
@@ -40,4 +40,7 @@ Gem::Specification.new do |spec|
|
|
40
40
|
spec.add_development_dependency 'simplecov', '0.21.2'
|
41
41
|
spec.add_development_dependency 'webmock'
|
42
42
|
spec.add_development_dependency 'yard'
|
43
|
+
spec.metadata = {
|
44
|
+
'rubygems_mfa_required' => 'true',
|
45
|
+
}
|
43
46
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../..
|
3
3
|
specs:
|
4
|
-
my_api_client (0.
|
4
|
+
my_api_client (0.20.0)
|
5
5
|
activesupport (>= 5.2.0)
|
6
6
|
faraday (>= 0.17.1)
|
7
7
|
jsonpath
|
@@ -10,118 +10,124 @@ PATH
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
actioncable (5.2.
|
14
|
-
actionpack (= 5.2.
|
13
|
+
actioncable (5.2.6)
|
14
|
+
actionpack (= 5.2.6)
|
15
15
|
nio4r (~> 2.0)
|
16
16
|
websocket-driver (>= 0.6.1)
|
17
|
-
actionmailer (5.2.
|
18
|
-
actionpack (= 5.2.
|
19
|
-
actionview (= 5.2.
|
20
|
-
activejob (= 5.2.
|
17
|
+
actionmailer (5.2.6)
|
18
|
+
actionpack (= 5.2.6)
|
19
|
+
actionview (= 5.2.6)
|
20
|
+
activejob (= 5.2.6)
|
21
21
|
mail (~> 2.5, >= 2.5.4)
|
22
22
|
rails-dom-testing (~> 2.0)
|
23
|
-
actionpack (5.2.
|
24
|
-
actionview (= 5.2.
|
25
|
-
activesupport (= 5.2.
|
23
|
+
actionpack (5.2.6)
|
24
|
+
actionview (= 5.2.6)
|
25
|
+
activesupport (= 5.2.6)
|
26
26
|
rack (~> 2.0, >= 2.0.8)
|
27
27
|
rack-test (>= 0.6.3)
|
28
28
|
rails-dom-testing (~> 2.0)
|
29
29
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
30
|
-
actionview (5.2.
|
31
|
-
activesupport (= 5.2.
|
30
|
+
actionview (5.2.6)
|
31
|
+
activesupport (= 5.2.6)
|
32
32
|
builder (~> 3.1)
|
33
33
|
erubi (~> 1.4)
|
34
34
|
rails-dom-testing (~> 2.0)
|
35
35
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
36
|
-
activejob (5.2.
|
37
|
-
activesupport (= 5.2.
|
36
|
+
activejob (5.2.6)
|
37
|
+
activesupport (= 5.2.6)
|
38
38
|
globalid (>= 0.3.6)
|
39
|
-
activemodel (5.2.
|
40
|
-
activesupport (= 5.2.
|
41
|
-
activerecord (5.2.
|
42
|
-
activemodel (= 5.2.
|
43
|
-
activesupport (= 5.2.
|
39
|
+
activemodel (5.2.6)
|
40
|
+
activesupport (= 5.2.6)
|
41
|
+
activerecord (5.2.6)
|
42
|
+
activemodel (= 5.2.6)
|
43
|
+
activesupport (= 5.2.6)
|
44
44
|
arel (>= 9.0)
|
45
|
-
activestorage (5.2.
|
46
|
-
actionpack (= 5.2.
|
47
|
-
activerecord (= 5.2.
|
48
|
-
marcel (~> 0.
|
49
|
-
activesupport (5.2.
|
45
|
+
activestorage (5.2.6)
|
46
|
+
actionpack (= 5.2.6)
|
47
|
+
activerecord (= 5.2.6)
|
48
|
+
marcel (~> 1.0.0)
|
49
|
+
activesupport (5.2.6)
|
50
50
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
51
51
|
i18n (>= 0.7, < 2)
|
52
52
|
minitest (~> 5.1)
|
53
53
|
tzinfo (~> 1.1)
|
54
|
-
addressable (2.
|
54
|
+
addressable (2.8.0)
|
55
55
|
public_suffix (>= 2.0.2, < 5.0)
|
56
56
|
arel (9.0.0)
|
57
57
|
bootsnap (1.4.8)
|
58
58
|
msgpack (~> 1.0)
|
59
59
|
builder (3.2.4)
|
60
60
|
byebug (11.1.3)
|
61
|
-
concurrent-ruby (1.1.
|
61
|
+
concurrent-ruby (1.1.9)
|
62
62
|
crass (1.0.6)
|
63
63
|
diff-lcs (1.4.4)
|
64
|
-
erubi (1.
|
65
|
-
faraday (1.
|
64
|
+
erubi (1.10.0)
|
65
|
+
faraday (1.4.2)
|
66
|
+
faraday-em_http (~> 1.0)
|
67
|
+
faraday-em_synchrony (~> 1.0)
|
68
|
+
faraday-excon (~> 1.1)
|
66
69
|
faraday-net_http (~> 1.0)
|
70
|
+
faraday-net_http_persistent (~> 1.1)
|
67
71
|
multipart-post (>= 1.2, < 3)
|
68
|
-
ruby2_keywords
|
69
|
-
faraday-
|
72
|
+
ruby2_keywords (>= 0.0.4)
|
73
|
+
faraday-em_http (1.0.0)
|
74
|
+
faraday-em_synchrony (1.0.0)
|
75
|
+
faraday-excon (1.1.0)
|
76
|
+
faraday-net_http (1.0.1)
|
77
|
+
faraday-net_http_persistent (1.1.0)
|
70
78
|
globalid (0.4.2)
|
71
79
|
activesupport (>= 4.2.0)
|
72
|
-
i18n (1.8.
|
80
|
+
i18n (1.8.10)
|
73
81
|
concurrent-ruby (~> 1.0)
|
74
82
|
jsonpath (1.1.0)
|
75
83
|
multi_json
|
76
|
-
loofah (2.
|
84
|
+
loofah (2.10.0)
|
77
85
|
crass (~> 1.0.2)
|
78
86
|
nokogiri (>= 1.5.9)
|
79
87
|
mail (2.7.1)
|
80
88
|
mini_mime (>= 0.1.1)
|
81
|
-
marcel (0.
|
82
|
-
mimemagic (~> 0.3.2)
|
89
|
+
marcel (1.0.1)
|
83
90
|
method_source (1.0.0)
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
minitest (5.14.2)
|
91
|
+
mini_mime (1.1.0)
|
92
|
+
mini_portile2 (2.8.0)
|
93
|
+
minitest (5.14.4)
|
88
94
|
msgpack (1.3.3)
|
89
95
|
multi_json (1.15.0)
|
90
96
|
multipart-post (2.1.1)
|
91
|
-
nio4r (2.5.
|
92
|
-
nokogiri (1.
|
93
|
-
mini_portile2 (~> 2.
|
97
|
+
nio4r (2.5.7)
|
98
|
+
nokogiri (1.13.6)
|
99
|
+
mini_portile2 (~> 2.8.0)
|
94
100
|
racc (~> 1.4)
|
95
101
|
public_suffix (4.0.6)
|
96
|
-
racc (1.
|
97
|
-
rack (2.2.3)
|
102
|
+
racc (1.6.0)
|
103
|
+
rack (2.2.3.1)
|
98
104
|
rack-test (1.1.0)
|
99
105
|
rack (>= 1.0, < 3)
|
100
|
-
rails (5.2.
|
101
|
-
actioncable (= 5.2.
|
102
|
-
actionmailer (= 5.2.
|
103
|
-
actionpack (= 5.2.
|
104
|
-
actionview (= 5.2.
|
105
|
-
activejob (= 5.2.
|
106
|
-
activemodel (= 5.2.
|
107
|
-
activerecord (= 5.2.
|
108
|
-
activestorage (= 5.2.
|
109
|
-
activesupport (= 5.2.
|
106
|
+
rails (5.2.6)
|
107
|
+
actioncable (= 5.2.6)
|
108
|
+
actionmailer (= 5.2.6)
|
109
|
+
actionpack (= 5.2.6)
|
110
|
+
actionview (= 5.2.6)
|
111
|
+
activejob (= 5.2.6)
|
112
|
+
activemodel (= 5.2.6)
|
113
|
+
activerecord (= 5.2.6)
|
114
|
+
activestorage (= 5.2.6)
|
115
|
+
activesupport (= 5.2.6)
|
110
116
|
bundler (>= 1.3.0)
|
111
|
-
railties (= 5.2.
|
117
|
+
railties (= 5.2.6)
|
112
118
|
sprockets-rails (>= 2.0.0)
|
113
119
|
rails-dom-testing (2.0.3)
|
114
120
|
activesupport (>= 4.2.0)
|
115
121
|
nokogiri (>= 1.6)
|
116
122
|
rails-html-sanitizer (1.3.0)
|
117
123
|
loofah (~> 2.3)
|
118
|
-
railties (5.2.
|
119
|
-
actionpack (= 5.2.
|
120
|
-
activesupport (= 5.2.
|
124
|
+
railties (5.2.6)
|
125
|
+
actionpack (= 5.2.6)
|
126
|
+
activesupport (= 5.2.6)
|
121
127
|
method_source
|
122
128
|
rake (>= 0.8.7)
|
123
129
|
thor (>= 0.19.0, < 2.0)
|
124
|
-
rake (13.0.
|
130
|
+
rake (13.0.3)
|
125
131
|
rspec-core (3.9.2)
|
126
132
|
rspec-support (~> 3.9.3)
|
127
133
|
rspec-expectations (3.9.2)
|
@@ -139,23 +145,23 @@ GEM
|
|
139
145
|
rspec-mocks (~> 3.9)
|
140
146
|
rspec-support (~> 3.9)
|
141
147
|
rspec-support (3.9.3)
|
142
|
-
ruby2_keywords (0.0.
|
148
|
+
ruby2_keywords (0.0.4)
|
143
149
|
sawyer (0.8.2)
|
144
150
|
addressable (>= 2.3.5)
|
145
151
|
faraday (> 0.8, < 2.0)
|
146
152
|
spring (2.1.1)
|
147
|
-
sprockets (
|
153
|
+
sprockets (4.0.2)
|
148
154
|
concurrent-ruby (~> 1.0)
|
149
155
|
rack (> 1, < 3)
|
150
156
|
sprockets-rails (3.2.2)
|
151
157
|
actionpack (>= 4.0)
|
152
158
|
activesupport (>= 4.0)
|
153
159
|
sprockets (>= 3.0.0)
|
154
|
-
thor (1.0
|
160
|
+
thor (1.1.0)
|
155
161
|
thread_safe (0.3.6)
|
156
|
-
tzinfo (1.2.
|
162
|
+
tzinfo (1.2.9)
|
157
163
|
thread_safe (~> 0.1)
|
158
|
-
websocket-driver (0.7.
|
164
|
+
websocket-driver (0.7.4)
|
159
165
|
websocket-extensions (>= 0.1.0)
|
160
166
|
websocket-extensions (0.1.5)
|
161
167
|
|
@@ -171,4 +177,4 @@ DEPENDENCIES
|
|
171
177
|
spring
|
172
178
|
|
173
179
|
BUNDLED WITH
|
174
|
-
2.
|
180
|
+
2.2.4
|
data/rails_app/rails_6.0/Gemfile
CHANGED