my_api_client 0.24.0 → 0.25.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 +5 -23
- data/.rubocop.yml +4 -0
- data/.rubocop_todo.yml +2 -2
- data/CHANGELOG.md +19 -0
- data/Gemfile.lock +35 -29
- data/README.jp.md +2 -4
- data/README.md +7 -3
- data/lib/my_api_client/rspec/stub.rb +1 -1
- data/lib/my_api_client/version.rb +1 -1
- data/my_api/Gemfile +2 -2
- data/my_api/Gemfile.lock +97 -83
- data/my_api_client.gemspec +3 -2
- data/rails_app/rails_6.0/Gemfile.lock +20 -20
- data/rails_app/rails_6.1/Gemfile.lock +21 -21
- data/rails_app/rails_7.0/Gemfile.lock +20 -20
- metadata +21 -43
- data/gemfiles/rails_5.0.gemfile +0 -16
- data/gemfiles/rails_5.1.gemfile +0 -16
- data/gemfiles/rails_5.2.gemfile +0 -16
- data/rails_app/rails_5.2/.rspec +0 -3
- data/rails_app/rails_5.2/Gemfile +0 -17
- data/rails_app/rails_5.2/Gemfile.lock +0 -180
- data/rails_app/rails_5.2/README.md +0 -24
- data/rails_app/rails_5.2/Rakefile +0 -8
- data/rails_app/rails_5.2/app/controllers/application_controller.rb +0 -4
- data/rails_app/rails_5.2/app/jobs/application_job.rb +0 -4
- data/rails_app/rails_5.2/bin/bundle +0 -5
- data/rails_app/rails_5.2/bin/rails +0 -6
- data/rails_app/rails_5.2/bin/rake +0 -6
- data/rails_app/rails_5.2/bin/setup +0 -27
- data/rails_app/rails_5.2/bin/update +0 -27
- data/rails_app/rails_5.2/config/application.rb +0 -37
- data/rails_app/rails_5.2/config/boot.rb +0 -6
- data/rails_app/rails_5.2/config/credentials.yml.enc +0 -1
- data/rails_app/rails_5.2/config/environment.rb +0 -7
- data/rails_app/rails_5.2/config/environments/development.rb +0 -41
- data/rails_app/rails_5.2/config/environments/production.rb +0 -70
- data/rails_app/rails_5.2/config/environments/test.rb +0 -38
- data/rails_app/rails_5.2/config/initializers/application_controller_renderer.rb +0 -9
- data/rails_app/rails_5.2/config/initializers/backtrace_silencers.rb +0 -8
- data/rails_app/rails_5.2/config/initializers/cors.rb +0 -17
- data/rails_app/rails_5.2/config/initializers/filter_parameter_logging.rb +0 -6
- data/rails_app/rails_5.2/config/initializers/inflections.rb +0 -17
- data/rails_app/rails_5.2/config/initializers/mime_types.rb +0 -5
- data/rails_app/rails_5.2/config/initializers/wrap_parameters.rb +0 -11
- data/rails_app/rails_5.2/config/locales/en.yml +0 -33
- data/rails_app/rails_5.2/config/routes.rb +0 -5
- data/rails_app/rails_5.2/config/spring.rb +0 -8
- data/rails_app/rails_5.2/config.ru +0 -7
- data/rails_app/rails_5.2/public/robots.txt +0 -1
- data/rails_app/rails_5.2/spec/rails_helper.rb +0 -14
- data/rails_app/rails_5.2/spec/spec_helper.rb +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6c284685be8f55566beede15458b1a37dc948b09ce05bc264f23187fc266478
|
4
|
+
data.tar.gz: 3cc7d5acf9b8d53fde96270b6ef63baca986ba459f819ad53c11d71744004049
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36ae22feafaddcab8f70f1c755c89d6cacd2bced91fe04c373c56d1e45c157c5c64188de9b1edd2f43eaa9ab1a50339e8c19ec94bd6a67802f83e28d6deb5228
|
7
|
+
data.tar.gz: 980a73834aa0c2e5b0c95d111b19466c8918a8ab5e43fdfefc46f7e4e4bc033b206dca290cfb0c9d5122ff9d6e4fa02b441c180150ccc4e05b4cbb26cc4c3546
|
data/.circleci/config.yml
CHANGED
@@ -12,12 +12,12 @@ references:
|
|
12
12
|
- &ruby_version
|
13
13
|
ruby_version:
|
14
14
|
type: enum
|
15
|
-
enum: &ruby_version_enum ["2.7", "3.0", "3.1"]
|
16
|
-
default: "3.
|
15
|
+
enum: &ruby_version_enum ["2.7", "3.0", "3.1", "3.2"]
|
16
|
+
default: "3.2"
|
17
17
|
- &rails_version
|
18
18
|
rails_version:
|
19
19
|
type: enum
|
20
|
-
enum: &rails_version_enum ["
|
20
|
+
enum: &rails_version_enum ["6.0", "6.1", "7.0"]
|
21
21
|
default: "7.0"
|
22
22
|
- &bundler_options
|
23
23
|
bundler_options:
|
@@ -153,7 +153,7 @@ commands:
|
|
153
153
|
name: Install Bundler 2.x
|
154
154
|
command: gem install bundler -v '~> 2.0'
|
155
155
|
- ruby-orbs/bundle-install:
|
156
|
-
cache_key_prefix:
|
156
|
+
cache_key_prefix: v2-dependencies-<< parameters.ruby_version >>
|
157
157
|
bundle_extra_args: << parameters.bundler_options >>
|
158
158
|
restore_bundled_with: false
|
159
159
|
test_and_deploy_for_api:
|
@@ -252,7 +252,7 @@ jobs:
|
|
252
252
|
- code-climate/install
|
253
253
|
- code-climate/sum-coverage:
|
254
254
|
input: codeclimate.*.json
|
255
|
-
parts:
|
255
|
+
parts: 24
|
256
256
|
- code-climate/upload-coverage
|
257
257
|
rubocop:
|
258
258
|
executor: gem_executor
|
@@ -287,30 +287,12 @@ workflows:
|
|
287
287
|
ruby_version: *ruby_version_enum
|
288
288
|
rails_version: *rails_version_enum
|
289
289
|
bundler_options: ["--with integrations", "--without integrations"]
|
290
|
-
exclude:
|
291
|
-
- ruby_version: "3.0"
|
292
|
-
rails_version: "5.2"
|
293
|
-
bundler_options: "--with integrations"
|
294
|
-
- ruby_version: "3.0"
|
295
|
-
rails_version: "5.2"
|
296
|
-
bundler_options: "--without integrations"
|
297
|
-
- ruby_version: "3.1"
|
298
|
-
rails_version: "5.2"
|
299
|
-
bundler_options: "--with integrations"
|
300
|
-
- ruby_version: "3.1"
|
301
|
-
rails_version: "5.2"
|
302
|
-
bundler_options: "--without integrations"
|
303
290
|
- verify_generator:
|
304
291
|
name: verify_generator_on_ruby_<< matrix.ruby_version >>_and_rails_<< matrix.rails_version >>
|
305
292
|
matrix:
|
306
293
|
parameters:
|
307
294
|
ruby_version: *ruby_version_enum
|
308
295
|
rails_version: *rails_version_enum
|
309
|
-
exclude:
|
310
|
-
- ruby_version: "3.0"
|
311
|
-
rails_version: "5.2"
|
312
|
-
- ruby_version: "3.1"
|
313
|
-
rails_version: "5.2"
|
314
296
|
- test_api:
|
315
297
|
ruby_version: "2.7" # Jets supports only Ruby 2.x
|
316
298
|
- rubocop
|
data/.rubocop.yml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
require:
|
2
2
|
- rubocop-performance
|
3
|
+
- rubocop-rake
|
3
4
|
- rubocop-rspec
|
4
5
|
|
5
6
|
inherit_from: .rubocop_todo.yml
|
@@ -11,6 +12,9 @@ AllCops:
|
|
11
12
|
- rails_app/**/*
|
12
13
|
- vendor/bundle/**/*
|
13
14
|
|
15
|
+
Gemspec/DevelopmentDependencies:
|
16
|
+
Enabled: false
|
17
|
+
|
14
18
|
Layout/LineLength:
|
15
19
|
Max: 100
|
16
20
|
Exclude:
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2023-02-06 23:31:23 UTC using RuboCop version 1.41.1.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -32,7 +32,7 @@ Naming/VariableNumber:
|
|
32
32
|
- 'spec/lib/my_api_client/error_handling_spec.rb'
|
33
33
|
- 'spec/lib/my_api_client/request/executor_spec.rb'
|
34
34
|
|
35
|
-
# Offense count:
|
35
|
+
# Offense count: 101
|
36
36
|
# Configuration parameters: AllowSubject.
|
37
37
|
RSpec/MultipleMemoizedHelpers:
|
38
38
|
Max: 15
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,24 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
+
## v0.25.0 (Feb 12, 2023)
|
4
|
+
|
5
|
+
### Breaking Change
|
6
|
+
|
7
|
+
- [#864](https://github.com/ryz310/my_api_client/pull/864) Support Ruby 3.2 and drop support for Rails 5.2 ([@ryz310](https://github.com/ryz310))
|
8
|
+
|
9
|
+
### Rubocop Challenge
|
10
|
+
|
11
|
+
- [#809](https://github.com/ryz310/my_api_client/pull/809) Style/RedundantConstantBase-20221208233100 ([@ryz310](https://github.com/ryz310))
|
12
|
+
- [#812](https://github.com/ryz310/my_api_client/pull/812) Lint/RedundantCopDisableDirective-20221211233112 ([@ryz310](https://github.com/ryz310))
|
13
|
+
- [#862](https://github.com/ryz310/my_api_client/pull/862) Performance/StringInclude-20230206233100 ([@ryz310](https://github.com/ryz310))
|
14
|
+
|
15
|
+
### Dependabot
|
16
|
+
|
17
|
+
- [#830](https://github.com/ryz310/my_api_client/pull/830) ryz310/dependabot/bundler/simplecov-0.22.0 ([@ryz310](https://github.com/ryz310))
|
18
|
+
- [#858](https://github.com/ryz310/my_api_client/pull/858) Bump faraday from 2.7.3 to 2.7.4 ([@ryz310](https://github.com/ryz310))
|
19
|
+
- [#859](https://github.com/ryz310/my_api_client/pull/859) Bump activesupport from 7.0.4.1 to 7.0.4.2 ([@ryz310](https://github.com/ryz310))
|
20
|
+
- [#863](https://github.com/ryz310/my_api_client/pull/863) Bump bugsnag from 6.25.1 to 6.25.2 ([@ryz310](https://github.com/ryz310))
|
21
|
+
|
3
22
|
## v0.24.0 (Nov 07, 2022)
|
4
23
|
|
5
24
|
### Feature
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
my_api_client (0.
|
5
|
-
activesupport (>=
|
4
|
+
my_api_client (0.25.0)
|
5
|
+
activesupport (>= 6.0.0)
|
6
6
|
faraday (>= 0.17.1)
|
7
7
|
jsonpath
|
8
8
|
sawyer (>= 0.8.2)
|
@@ -10,7 +10,7 @@ PATH
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
activesupport (7.0.4)
|
13
|
+
activesupport (7.0.4.2)
|
14
14
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
15
15
|
i18n (>= 1.6, < 2)
|
16
16
|
minitest (>= 5.1)
|
@@ -18,88 +18,93 @@ GEM
|
|
18
18
|
addressable (2.8.1)
|
19
19
|
public_suffix (>= 2.0.2, < 6.0)
|
20
20
|
ast (2.4.2)
|
21
|
-
bugsnag (6.
|
21
|
+
bugsnag (6.25.2)
|
22
22
|
concurrent-ruby (~> 1.0)
|
23
23
|
byebug (11.1.3)
|
24
24
|
coderay (1.1.3)
|
25
|
-
concurrent-ruby (1.
|
25
|
+
concurrent-ruby (1.2.0)
|
26
26
|
crack (0.4.5)
|
27
27
|
rexml
|
28
28
|
diff-lcs (1.5.0)
|
29
29
|
docile (1.4.0)
|
30
|
-
faraday (2.
|
30
|
+
faraday (2.7.4)
|
31
31
|
faraday-net_http (>= 2.0, < 3.1)
|
32
32
|
ruby2_keywords (>= 0.0.4)
|
33
|
-
faraday-net_http (3.0.
|
33
|
+
faraday-net_http (3.0.2)
|
34
34
|
hashdiff (1.0.1)
|
35
35
|
i18n (1.12.0)
|
36
36
|
concurrent-ruby (~> 1.0)
|
37
|
-
json (2.6.
|
37
|
+
json (2.6.3)
|
38
38
|
jsonpath (1.1.2)
|
39
39
|
multi_json
|
40
40
|
method_source (1.0.0)
|
41
|
-
minitest (5.
|
41
|
+
minitest (5.17.0)
|
42
42
|
multi_json (1.15.0)
|
43
43
|
parallel (1.22.1)
|
44
|
-
parser (3.
|
44
|
+
parser (3.2.1.0)
|
45
45
|
ast (~> 2.4.1)
|
46
|
-
pry (0.14.
|
46
|
+
pry (0.14.2)
|
47
47
|
coderay (~> 1.1)
|
48
48
|
method_source (~> 1.0)
|
49
49
|
pry-byebug (3.10.1)
|
50
50
|
byebug (~> 11.0)
|
51
51
|
pry (>= 0.13, < 0.15)
|
52
|
-
public_suffix (5.0.
|
52
|
+
public_suffix (5.0.1)
|
53
53
|
rainbow (3.1.1)
|
54
54
|
rake (13.0.6)
|
55
|
-
regexp_parser (2.
|
55
|
+
regexp_parser (2.7.0)
|
56
56
|
rexml (3.2.5)
|
57
57
|
rspec (3.12.0)
|
58
58
|
rspec-core (~> 3.12.0)
|
59
59
|
rspec-expectations (~> 3.12.0)
|
60
60
|
rspec-mocks (~> 3.12.0)
|
61
|
-
rspec-core (3.12.
|
61
|
+
rspec-core (3.12.1)
|
62
62
|
rspec-support (~> 3.12.0)
|
63
|
-
rspec-expectations (3.12.
|
63
|
+
rspec-expectations (3.12.2)
|
64
64
|
diff-lcs (>= 1.2.0, < 2.0)
|
65
65
|
rspec-support (~> 3.12.0)
|
66
|
-
rspec-mocks (3.12.
|
66
|
+
rspec-mocks (3.12.3)
|
67
67
|
diff-lcs (>= 1.2.0, < 2.0)
|
68
68
|
rspec-support (~> 3.12.0)
|
69
69
|
rspec-support (3.12.0)
|
70
70
|
rspec_junit_formatter (0.6.0)
|
71
71
|
rspec-core (>= 2, < 4, != 2.12.0)
|
72
|
-
rubocop (1.
|
72
|
+
rubocop (1.45.1)
|
73
73
|
json (~> 2.3)
|
74
74
|
parallel (~> 1.10)
|
75
|
-
parser (>= 3.
|
75
|
+
parser (>= 3.2.0.0)
|
76
76
|
rainbow (>= 2.2.2, < 4.0)
|
77
77
|
regexp_parser (>= 1.8, < 3.0)
|
78
78
|
rexml (>= 3.2.5, < 4.0)
|
79
|
-
rubocop-ast (>= 1.
|
79
|
+
rubocop-ast (>= 1.24.1, < 2.0)
|
80
80
|
ruby-progressbar (~> 1.7)
|
81
|
-
unicode-display_width (>=
|
82
|
-
rubocop-ast (1.
|
83
|
-
parser (>= 3.
|
84
|
-
rubocop-
|
81
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
82
|
+
rubocop-ast (1.26.0)
|
83
|
+
parser (>= 3.2.1.0)
|
84
|
+
rubocop-capybara (2.17.0)
|
85
|
+
rubocop (~> 1.41)
|
86
|
+
rubocop-performance (1.16.0)
|
85
87
|
rubocop (>= 1.7.0, < 2.0)
|
86
88
|
rubocop-ast (>= 0.4.0)
|
87
|
-
rubocop-
|
89
|
+
rubocop-rake (0.6.0)
|
90
|
+
rubocop (~> 1.0)
|
91
|
+
rubocop-rspec (2.18.1)
|
88
92
|
rubocop (~> 1.33)
|
93
|
+
rubocop-capybara (~> 2.17)
|
89
94
|
ruby-progressbar (1.11.0)
|
90
95
|
ruby2_keywords (0.0.5)
|
91
96
|
sawyer (0.9.2)
|
92
97
|
addressable (>= 2.3.5)
|
93
98
|
faraday (>= 0.17.3, < 3)
|
94
|
-
simplecov (0.
|
99
|
+
simplecov (0.22.0)
|
95
100
|
docile (~> 1.1)
|
96
101
|
simplecov-html (~> 0.11)
|
97
102
|
simplecov_json_formatter (~> 0.1)
|
98
103
|
simplecov-html (0.12.3)
|
99
104
|
simplecov_json_formatter (0.1.4)
|
100
|
-
tzinfo (2.0.
|
105
|
+
tzinfo (2.0.6)
|
101
106
|
concurrent-ruby (~> 1.0)
|
102
|
-
unicode-display_width (2.
|
107
|
+
unicode-display_width (2.4.2)
|
103
108
|
webmock (3.18.1)
|
104
109
|
addressable (>= 2.8.0)
|
105
110
|
crack (>= 0.3.2)
|
@@ -121,10 +126,11 @@ DEPENDENCIES
|
|
121
126
|
rspec_junit_formatter
|
122
127
|
rubocop
|
123
128
|
rubocop-performance
|
129
|
+
rubocop-rake
|
124
130
|
rubocop-rspec
|
125
|
-
simplecov (= 0.
|
131
|
+
simplecov (= 0.22.0)
|
126
132
|
webmock
|
127
133
|
yard
|
128
134
|
|
129
135
|
BUNDLED WITH
|
130
|
-
2.3.
|
136
|
+
2.3.26
|
data/README.jp.md
CHANGED
@@ -12,8 +12,8 @@ MyApiClient は API リクエストクラスを作成するための汎用的な
|
|
12
12
|
|
13
13
|
## Supported Versions
|
14
14
|
|
15
|
-
- Ruby 2.7, 3.0, 3.1
|
16
|
-
- Rails
|
15
|
+
- Ruby 2.7, 3.0, 3.1, 3.2
|
16
|
+
- Rails 6.0, 6.1, 7.0
|
17
17
|
|
18
18
|
## Installation
|
19
19
|
|
@@ -223,7 +223,6 @@ error_handling json: { '$.errors.code': 10..19 }, with: :my_error_handling
|
|
223
223
|
|
224
224
|
`headers` には `Hash` の Key に レスポンスのヘッダーキーを指定して、 Value とマッチするかどうかでエラーハンドリングできます。Value には `String` `Regexp` が指定可能です。
|
225
225
|
|
226
|
-
|
227
226
|
```ruby
|
228
227
|
error_handling headers: { 'www-authenticate': /invalid token/ }, with: :my_error_handling
|
229
228
|
```
|
@@ -237,7 +236,6 @@ www-authenticate: Bearer error="invalid_token", error_description="invalid token
|
|
237
236
|
content-length: 104
|
238
237
|
```
|
239
238
|
|
240
|
-
|
241
239
|
`with` にはインスタンスメソッド名を指定することで、エラーを検出した際、例外を発生させる前に任意のメソッドを実行させることができます。メソッドに渡される引数は `block` 定義の場合と同じく `params` と `logger` です。なお、 `block` と `with` は同時には利用できません。
|
242
240
|
|
243
241
|
```ruby
|
data/README.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
[![CircleCI](https://circleci.com/gh/ryz310/my_api_client.svg?style=svg)](https://circleci.com/gh/ryz310/my_api_client)
|
1
|
+
[![CircleCI](https://circleci.com/gh/ryz310/my_api_client.svg?style=svg)](https://circleci.com/gh/ryz310/my_api_client)
|
2
|
+
[![Gem Version](https://badge.fury.io/rb/my_api_client.svg)](https://badge.fury.io/rb/my_api_client)
|
3
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/861a2c8f168bbe995107/maintainability)](https://codeclimate.com/github/ryz310/my_api_client/maintainability)
|
4
|
+
[![Test Coverage](https://api.codeclimate.com/v1/badges/861a2c8f168bbe995107/test_coverage)](https://codeclimate.com/github/ryz310/my_api_client/test_coverage)
|
5
|
+
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/ryz310/my_api_client)
|
2
6
|
|
3
7
|
日本語ドキュメントは [こちら](README.jp.md)
|
4
8
|
|
@@ -12,8 +16,8 @@ It is supposed to be used in Ruby on Rails, but it is made to work in other envi
|
|
12
16
|
|
13
17
|
## Supported Versions
|
14
18
|
|
15
|
-
- Ruby 2.7, 3.0, 3.1
|
16
|
-
- Rails
|
19
|
+
- Ruby 2.7, 3.0, 3.1, 3.2
|
20
|
+
- Rails 6.0, 6.1, 7.0
|
17
21
|
|
18
22
|
## Installation
|
19
23
|
|
@@ -86,7 +86,7 @@ module MyApiClient
|
|
86
86
|
when Proc
|
87
87
|
stub_as_resource(options.call(*request))
|
88
88
|
when Hash
|
89
|
-
if options[:raise]
|
89
|
+
if options[:raise]
|
90
90
|
raise process_raise_option(options[:raise], options[:response], options[:status_code])
|
91
91
|
elsif options[:response]
|
92
92
|
stub_as_resource(options[:response])
|
data/my_api/Gemfile
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
source 'https://rubygems.org'
|
4
4
|
|
5
|
-
gem 'jets', '~> 3.
|
5
|
+
gem 'jets', '~> 3.2.0'
|
6
6
|
|
7
7
|
gem 'dynomite'
|
8
8
|
|
9
9
|
# See: https://github.com/boltops-tools/jets/issues/523
|
10
|
-
gem 'nokogiri', '~> 1.
|
10
|
+
gem 'nokogiri', '~> 1.14.1'
|
11
11
|
|
12
12
|
# development and test groups are not bundled as part of the deployment
|
13
13
|
group :development, :test do
|
data/my_api/Gemfile.lock
CHANGED
@@ -1,42 +1,42 @@
|
|
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.7.1)
|
5
|
+
actionpack (= 6.1.7.1)
|
6
|
+
actionview (= 6.1.7.1)
|
7
|
+
activejob (= 6.1.7.1)
|
8
|
+
activesupport (= 6.1.7.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.7.1)
|
12
|
+
actionview (= 6.1.7.1)
|
13
|
+
activesupport (= 6.1.7.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.7.1)
|
19
|
+
activesupport (= 6.1.7.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.7.1)
|
25
|
+
activesupport (= 6.1.7.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.7.1)
|
28
|
+
activesupport (= 6.1.7.1)
|
29
|
+
activerecord (6.1.7.1)
|
30
|
+
activemodel (= 6.1.7.1)
|
31
|
+
activesupport (= 6.1.7.1)
|
32
|
+
activesupport (6.1.7.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.8.
|
39
|
-
public_suffix (>= 2.0.2, <
|
38
|
+
addressable (2.8.1)
|
39
|
+
public_suffix (>= 2.0.2, < 6.0)
|
40
40
|
aws-eventstream (1.2.0)
|
41
41
|
aws-mfa-secure (0.4.4)
|
42
42
|
activesupport
|
@@ -46,52 +46,52 @@ 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.686.0)
|
50
|
+
aws-sdk-apigateway (1.80.0)
|
51
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
52
52
|
aws-sigv4 (~> 1.1)
|
53
|
-
aws-sdk-cloudformation (1.
|
54
|
-
aws-sdk-core (~> 3, >= 3.
|
53
|
+
aws-sdk-cloudformation (1.73.0)
|
54
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
55
55
|
aws-sigv4 (~> 1.1)
|
56
|
-
aws-sdk-cloudwatchlogs (1.
|
57
|
-
aws-sdk-core (~> 3, >= 3.
|
56
|
+
aws-sdk-cloudwatchlogs (1.58.0)
|
57
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
58
58
|
aws-sigv4 (~> 1.1)
|
59
|
-
aws-sdk-core (3.
|
59
|
+
aws-sdk-core (3.168.4)
|
60
60
|
aws-eventstream (~> 1, >= 1.0.2)
|
61
|
-
aws-partitions (~> 1, >= 1.
|
62
|
-
aws-sigv4 (~> 1.
|
61
|
+
aws-partitions (~> 1, >= 1.651.0)
|
62
|
+
aws-sigv4 (~> 1.5)
|
63
63
|
jmespath (~> 1, >= 1.6.1)
|
64
|
-
aws-sdk-dynamodb (1.
|
65
|
-
aws-sdk-core (~> 3, >= 3.
|
64
|
+
aws-sdk-dynamodb (1.80.0)
|
65
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
66
66
|
aws-sigv4 (~> 1.1)
|
67
|
-
aws-sdk-kinesis (1.
|
68
|
-
aws-sdk-core (~> 3, >= 3.
|
67
|
+
aws-sdk-kinesis (1.43.0)
|
68
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
69
69
|
aws-sigv4 (~> 1.1)
|
70
|
-
aws-sdk-kms (1.
|
71
|
-
aws-sdk-core (~> 3, >= 3.
|
70
|
+
aws-sdk-kms (1.61.0)
|
71
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
72
72
|
aws-sigv4 (~> 1.1)
|
73
|
-
aws-sdk-lambda (1.
|
74
|
-
aws-sdk-core (~> 3, >= 3.
|
73
|
+
aws-sdk-lambda (1.88.0)
|
74
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
75
75
|
aws-sigv4 (~> 1.1)
|
76
|
-
aws-sdk-s3 (1.
|
77
|
-
aws-sdk-core (~> 3, >= 3.
|
76
|
+
aws-sdk-s3 (1.117.2)
|
77
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
78
78
|
aws-sdk-kms (~> 1)
|
79
79
|
aws-sigv4 (~> 1.4)
|
80
|
-
aws-sdk-sns (1.
|
81
|
-
aws-sdk-core (~> 3, >= 3.
|
80
|
+
aws-sdk-sns (1.57.0)
|
81
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
82
82
|
aws-sigv4 (~> 1.1)
|
83
|
-
aws-sdk-sqs (1.
|
84
|
-
aws-sdk-core (~> 3, >= 3.
|
83
|
+
aws-sdk-sqs (1.52.1)
|
84
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
85
85
|
aws-sigv4 (~> 1.1)
|
86
|
-
aws-sdk-ssm (1.
|
87
|
-
aws-sdk-core (~> 3, >= 3.
|
86
|
+
aws-sdk-ssm (1.146.0)
|
87
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
88
88
|
aws-sigv4 (~> 1.1)
|
89
|
-
aws-sigv4 (1.5.
|
89
|
+
aws-sigv4 (1.5.2)
|
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.38.0)
|
95
95
|
addressable
|
96
96
|
matrix
|
97
97
|
mini_mime (>= 0.1.3)
|
@@ -109,20 +109,21 @@ GEM
|
|
109
109
|
cfn_response (0.2.0)
|
110
110
|
concurrent-ruby (1.1.10)
|
111
111
|
crass (1.0.6)
|
112
|
+
date (3.3.3)
|
112
113
|
diff-lcs (1.5.0)
|
113
114
|
dotenv (2.8.1)
|
114
115
|
dynomite (1.2.7)
|
115
116
|
activesupport
|
116
117
|
aws-sdk-dynamodb
|
117
118
|
rainbow
|
118
|
-
erubi (1.
|
119
|
+
erubi (1.12.0)
|
119
120
|
gems (1.2.0)
|
120
|
-
globalid (1.0.
|
121
|
+
globalid (1.0.1)
|
121
122
|
activesupport (>= 5.0)
|
122
123
|
hashie (5.0.0)
|
123
124
|
i18n (1.12.0)
|
124
125
|
concurrent-ruby (~> 1.0)
|
125
|
-
jets (3.
|
126
|
+
jets (3.2.0)
|
126
127
|
actionmailer (~> 6.1.0)
|
127
128
|
actionpack (~> 6.1.0)
|
128
129
|
actionview (~> 6.1.0)
|
@@ -160,62 +161,74 @@ GEM
|
|
160
161
|
zeitwerk (>= 2.6.0)
|
161
162
|
jets-html-sanitizer (1.0.4)
|
162
163
|
loofah (~> 2.2, >= 2.2.2)
|
163
|
-
jmespath (1.6.
|
164
|
+
jmespath (1.6.2)
|
164
165
|
kramdown (2.4.0)
|
165
166
|
rexml
|
166
|
-
launchy (2.5.
|
167
|
-
addressable (~> 2.
|
168
|
-
loofah (2.
|
167
|
+
launchy (2.5.2)
|
168
|
+
addressable (~> 2.8)
|
169
|
+
loofah (2.19.1)
|
169
170
|
crass (~> 1.0.2)
|
170
171
|
nokogiri (>= 1.5.9)
|
171
|
-
mail (2.
|
172
|
+
mail (2.8.0)
|
172
173
|
mini_mime (>= 0.1.1)
|
174
|
+
net-imap
|
175
|
+
net-pop
|
176
|
+
net-smtp
|
173
177
|
matrix (0.4.2)
|
174
178
|
memoist (0.16.2)
|
175
179
|
method_source (1.0.0)
|
176
180
|
mini_mime (1.1.2)
|
177
|
-
mini_portile2 (2.8.
|
178
|
-
minitest (5.
|
181
|
+
mini_portile2 (2.8.1)
|
182
|
+
minitest (5.17.0)
|
183
|
+
net-imap (0.3.4)
|
184
|
+
date
|
185
|
+
net-protocol
|
186
|
+
net-pop (0.1.2)
|
187
|
+
net-protocol
|
188
|
+
net-protocol (0.2.1)
|
189
|
+
timeout
|
190
|
+
net-smtp (0.3.3)
|
191
|
+
net-protocol
|
179
192
|
nio4r (2.5.8)
|
180
|
-
nokogiri (1.
|
193
|
+
nokogiri (1.14.1)
|
181
194
|
mini_portile2 (~> 2.8.0)
|
182
195
|
racc (~> 1.4)
|
183
|
-
public_suffix (
|
184
|
-
puma (
|
196
|
+
public_suffix (5.0.1)
|
197
|
+
puma (6.0.2)
|
185
198
|
nio4r (~> 2.0)
|
186
|
-
racc (1.6.
|
187
|
-
rack (2.2.
|
199
|
+
racc (1.6.2)
|
200
|
+
rack (2.2.6.2)
|
188
201
|
rack-test (2.0.2)
|
189
202
|
rack (>= 1.3)
|
190
203
|
rails-dom-testing (2.0.3)
|
191
204
|
activesupport (>= 4.2.0)
|
192
205
|
nokogiri (>= 1.6)
|
193
|
-
rails-html-sanitizer (1.4.
|
194
|
-
loofah (~> 2.
|
195
|
-
railties (6.1.
|
196
|
-
actionpack (= 6.1.
|
197
|
-
activesupport (= 6.1.
|
206
|
+
rails-html-sanitizer (1.4.4)
|
207
|
+
loofah (~> 2.19, >= 2.19.1)
|
208
|
+
railties (6.1.7.1)
|
209
|
+
actionpack (= 6.1.7.1)
|
210
|
+
activesupport (= 6.1.7.1)
|
198
211
|
method_source
|
199
212
|
rake (>= 12.2)
|
200
213
|
thor (~> 1.0)
|
201
214
|
rainbow (3.1.1)
|
202
215
|
rake (13.0.6)
|
203
216
|
recursive-open-struct (1.1.3)
|
204
|
-
regexp_parser (2.
|
217
|
+
regexp_parser (2.6.0)
|
205
218
|
rexml (3.2.5)
|
206
|
-
rspec (3.
|
207
|
-
rspec-core (~> 3.
|
208
|
-
rspec-expectations (~> 3.
|
209
|
-
rspec-mocks (~> 3.
|
210
|
-
rspec-core (3.
|
211
|
-
rspec-support (~> 3.
|
212
|
-
rspec-expectations (3.
|
219
|
+
rspec (3.12.0)
|
220
|
+
rspec-core (~> 3.12.0)
|
221
|
+
rspec-expectations (~> 3.12.0)
|
222
|
+
rspec-mocks (~> 3.12.0)
|
223
|
+
rspec-core (3.12.0)
|
224
|
+
rspec-support (~> 3.12.0)
|
225
|
+
rspec-expectations (3.12.0)
|
213
226
|
diff-lcs (>= 1.2.0, < 2.0)
|
214
|
-
rspec-support (~> 3.
|
215
|
-
rspec-mocks (3.
|
227
|
+
rspec-support (~> 3.12.0)
|
228
|
+
rspec-mocks (3.12.0)
|
216
229
|
diff-lcs (>= 1.2.0, < 2.0)
|
217
|
-
rspec-support (~> 3.
|
218
|
-
rspec-support (3.
|
230
|
+
rspec-support (~> 3.12.0)
|
231
|
+
rspec-support (3.12.0)
|
219
232
|
rspec_junit_formatter (0.6.0)
|
220
233
|
rspec-core (>= 2, < 4, != 2.12.0)
|
221
234
|
serverlessgems (0.2.0)
|
@@ -226,11 +239,12 @@ GEM
|
|
226
239
|
rack (>= 1.0)
|
227
240
|
text-table (1.2.4)
|
228
241
|
thor (1.2.1)
|
242
|
+
timeout (0.3.1)
|
229
243
|
tzinfo (2.0.5)
|
230
244
|
concurrent-ruby (~> 1.0)
|
231
245
|
xpath (3.2.0)
|
232
246
|
nokogiri (~> 1.8)
|
233
|
-
zeitwerk (2.6.
|
247
|
+
zeitwerk (2.6.6)
|
234
248
|
|
235
249
|
PLATFORMS
|
236
250
|
ruby
|
@@ -239,9 +253,9 @@ DEPENDENCIES
|
|
239
253
|
byebug
|
240
254
|
capybara
|
241
255
|
dynomite
|
242
|
-
jets (~> 3.
|
256
|
+
jets (~> 3.2.0)
|
243
257
|
launchy
|
244
|
-
nokogiri (~> 1.
|
258
|
+
nokogiri (~> 1.14.1)
|
245
259
|
puma
|
246
260
|
rack
|
247
261
|
rspec
|