keycloak_rack 1.1.0 → 1.2.0
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/main.yml +9 -11
- data/.rubocop.yml +4 -1
- data/Appraisals +6 -1
- data/README.md +2 -7
- data/gemfiles/rack_2.gemfile +7 -0
- data/gemfiles/{rack_only.gemfile.lock → rack_2.gemfile.lock} +111 -78
- data/gemfiles/{rack_only.gemfile → rack_3.gemfile} +2 -0
- data/gemfiles/rack_3.gemfile.lock +232 -0
- data/gemfiles/rails_6_0.gemfile.lock +95 -81
- data/gemfiles/rails_6_1.gemfile.lock +96 -82
- data/keycloak_rack.gemspec +5 -4
- data/lib/keycloak_rack/decoded_token.rb +3 -1
- data/lib/keycloak_rack/read_token.rb +1 -1
- data/lib/keycloak_rack/version.rb +1 -1
- data/spec/keycloak_rack/wrap_token_spec.rb +15 -0
- data/spec/spec_helper.rb +3 -1
- metadata +28 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fb1bbcf74885f519dcbf5134e103fdef04168ba097ad30203a032f48ce91e97
|
4
|
+
data.tar.gz: a2f837c1c93ea76038cb284d2e59840460a27e57e9621e418ce5aef40ce9d94a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f68c8a83462a258787b7affbc8bec009952ae7b1de1924a9c9555b8c5e72382c592dca6170732c3b8145003383f9798aa13d76783cca244a9a14bb8499a042a
|
7
|
+
data.tar.gz: 95b516e19f21af6324cd5c97c4768b5698e47812758a359ba43bf29f5c7ebcf432ecafb06ce11c6d8b1cf524ce2f24d4d6466aed324e1facce132eebebff924d
|
data/.github/workflows/main.yml
CHANGED
@@ -15,22 +15,21 @@ jobs:
|
|
15
15
|
lint:
|
16
16
|
runs-on: ubuntu-latest
|
17
17
|
env:
|
18
|
-
APPRAISAL_NAME:
|
19
|
-
BUNDLE_GEMFILE: ./gemfiles/
|
18
|
+
APPRAISAL_NAME: rack_3
|
19
|
+
BUNDLE_GEMFILE: ./gemfiles/rack_3.gemfile
|
20
20
|
steps:
|
21
21
|
- uses: actions/checkout@v2
|
22
22
|
- uses: ruby/setup-ruby@v1
|
23
23
|
with:
|
24
|
-
ruby-version:
|
25
|
-
- uses: actions/cache@
|
24
|
+
ruby-version: 3.0.0
|
25
|
+
- uses: actions/cache@v4
|
26
26
|
with:
|
27
27
|
path: vendor/bundle
|
28
|
-
key: bundle-use-ruby-ubuntu-latest-
|
28
|
+
key: bundle-use-ruby-ubuntu-latest-3.0.0-rack_3-${{ hashFiles(format('{0}.lock', env.BUNDLE_GEMFILE)) }}
|
29
29
|
restore-keys: |
|
30
|
-
bundle-use-ruby-ubuntu-latest-
|
30
|
+
bundle-use-ruby-ubuntu-latest-3.0.0-rack_3
|
31
31
|
- name: bundle install
|
32
32
|
run: |
|
33
|
-
gem update --system
|
34
33
|
bundle config deployment true
|
35
34
|
bundle config path vendor/bundle
|
36
35
|
bundle install --jobs 4
|
@@ -42,8 +41,8 @@ jobs:
|
|
42
41
|
strategy:
|
43
42
|
fail-fast: false
|
44
43
|
matrix:
|
45
|
-
appraisal_name: [
|
46
|
-
ruby: [
|
44
|
+
appraisal_name: [rack_2, rack_3, rails_6_0, rails_6_1]
|
45
|
+
ruby: [3.0.0]
|
47
46
|
env:
|
48
47
|
APPRAISAL_NAME: ${{ matrix.appraisal_name }}
|
49
48
|
BUNDLE_GEMFILE: ${{ format('./gemfiles/{0}.gemfile', matrix.appraisal_name) }}
|
@@ -52,7 +51,7 @@ jobs:
|
|
52
51
|
- uses: ruby/setup-ruby@v1
|
53
52
|
with:
|
54
53
|
ruby-version: ${{ matrix.ruby }}
|
55
|
-
- uses: actions/cache@
|
54
|
+
- uses: actions/cache@v4
|
56
55
|
with:
|
57
56
|
path: vendor/bundle
|
58
57
|
key: bundle-use-ruby-ubuntu-latest-${{ matrix.ruby }}-${{ env.APPRAISAL_NAME }}-${{ hashFiles(format('{0}.lock', env.BUNDLE_GEMFILE)) }}
|
@@ -60,7 +59,6 @@ jobs:
|
|
60
59
|
bundle-use-ruby-ubuntu-latest-${{ matrix.ruby }}-${{ env.APPRAISAL_NAME }}
|
61
60
|
- name: bundle install
|
62
61
|
run: |
|
63
|
-
gem update --system
|
64
62
|
bundle config deployment true
|
65
63
|
bundle config path vendor/bundle
|
66
64
|
bundle install --jobs 4
|
data/.rubocop.yml
CHANGED
@@ -7,7 +7,7 @@ AllCops:
|
|
7
7
|
- Appraisals
|
8
8
|
- "bin/*"
|
9
9
|
- "gemfiles/**/*"
|
10
|
-
TargetRubyVersion:
|
10
|
+
TargetRubyVersion: 3.0
|
11
11
|
|
12
12
|
Bundler/OrderedGems:
|
13
13
|
Enabled: false
|
@@ -174,6 +174,9 @@ Style/IfWithBooleanLiteralBranches:
|
|
174
174
|
Style/Lambda:
|
175
175
|
Enabled: false
|
176
176
|
|
177
|
+
Style/LambdaCall:
|
178
|
+
Enabled: false
|
179
|
+
|
177
180
|
Style/MultilineBlockChain:
|
178
181
|
Enabled: false
|
179
182
|
|
data/Appraisals
CHANGED
data/README.md
CHANGED
@@ -15,13 +15,8 @@ gem "keycloak_rack", "1.0.0"
|
|
15
15
|
|
16
16
|
### Ruby & Rails Versions
|
17
17
|
|
18
|
-
- Ruby
|
19
|
-
- Rails 6.0, 6.1, or using only Rack 2.2
|
20
|
-
|
21
|
-
It has also been tested on Rails 5.2, but isn't officially supported because it doesn't support Ruby 3.
|
22
|
-
|
23
|
-
At minimum, it requires Ruby 2.7, because it makes use of [pattern matching](https://docs.ruby-lang.org/en/3.0.0/doc/syntax/pattern_matching_rdoc.html).
|
24
|
-
If you find the warning at boot annoying (I sure do), you can set `RUBYOPT='-W:no-experimental'` in your environment to silence the nag.
|
18
|
+
- Ruby 3.0+
|
19
|
+
- Rails 6.0, 6.1, 7.0, 7.1, or using only Rack 2.2+ or 3.x
|
25
20
|
|
26
21
|
## Basic Usage in Rails
|
27
22
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
keycloak_rack (1.
|
4
|
+
keycloak_rack (1.2.0)
|
5
5
|
activesupport (>= 4.2)
|
6
6
|
anyway_config (>= 2.1.0, < 3)
|
7
7
|
dry-auto_inject
|
@@ -14,108 +14,136 @@ PATH
|
|
14
14
|
dry-types (>= 1, < 2)
|
15
15
|
dry-validation
|
16
16
|
jwt (>= 2.2.0, < 3)
|
17
|
-
rack (>= 2.0.0, <
|
17
|
+
rack (>= 2.0.0, < 4)
|
18
18
|
zeitwerk (>= 2.0.0, < 3)
|
19
19
|
|
20
20
|
GEM
|
21
21
|
remote: https://rubygems.org/
|
22
22
|
specs:
|
23
|
-
activesupport (7.
|
23
|
+
activesupport (7.1.5.1)
|
24
|
+
base64
|
25
|
+
benchmark (>= 0.3)
|
26
|
+
bigdecimal
|
24
27
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
28
|
+
connection_pool (>= 2.2.5)
|
29
|
+
drb
|
25
30
|
i18n (>= 1.6, < 2)
|
31
|
+
logger (>= 1.4.2)
|
26
32
|
minitest (>= 5.1)
|
33
|
+
mutex_m
|
34
|
+
securerandom (>= 0.3)
|
27
35
|
tzinfo (~> 2.0)
|
28
|
-
addressable (2.8.
|
29
|
-
public_suffix (>= 2.0.2, <
|
30
|
-
anyway_config (2.2
|
31
|
-
ruby-next-core (
|
32
|
-
appraisal (2.
|
36
|
+
addressable (2.8.7)
|
37
|
+
public_suffix (>= 2.0.2, < 7.0)
|
38
|
+
anyway_config (2.7.2)
|
39
|
+
ruby-next-core (~> 1.0)
|
40
|
+
appraisal (2.5.0)
|
33
41
|
bundler
|
34
42
|
rake
|
35
43
|
thor (>= 0.14.0)
|
36
|
-
ast (2.4.
|
37
|
-
backports (3.
|
44
|
+
ast (2.4.3)
|
45
|
+
backports (3.25.1)
|
46
|
+
base64 (0.3.0)
|
47
|
+
benchmark (0.4.1)
|
48
|
+
bigdecimal (3.2.2)
|
38
49
|
coderay (1.1.3)
|
39
|
-
concurrent-ruby (1.
|
40
|
-
|
50
|
+
concurrent-ruby (1.3.5)
|
51
|
+
connection_pool (2.5.3)
|
52
|
+
crack (1.0.0)
|
53
|
+
bigdecimal
|
41
54
|
rexml
|
42
|
-
diff-lcs (1.
|
43
|
-
docile (1.4.
|
44
|
-
|
45
|
-
|
46
|
-
|
55
|
+
diff-lcs (1.6.2)
|
56
|
+
docile (1.4.1)
|
57
|
+
drb (2.2.3)
|
58
|
+
dry-auto_inject (1.0.1)
|
59
|
+
dry-core (~> 1.0)
|
60
|
+
zeitwerk (~> 2.6)
|
61
|
+
dry-configurable (1.2.0)
|
62
|
+
dry-core (~> 1.0, < 2)
|
63
|
+
zeitwerk (~> 2.6)
|
64
|
+
dry-container (0.11.0)
|
47
65
|
concurrent-ruby (~> 1.0)
|
48
|
-
|
49
|
-
dry-container (0.9.0)
|
66
|
+
dry-core (1.0.2)
|
50
67
|
concurrent-ruby (~> 1.0)
|
51
|
-
|
52
|
-
|
68
|
+
logger
|
69
|
+
zeitwerk (~> 2.6)
|
70
|
+
dry-effects (0.4.1)
|
53
71
|
concurrent-ruby (~> 1.0)
|
54
|
-
|
55
|
-
|
56
|
-
dry-container (~> 0.7, >= 0.7.2)
|
57
|
-
dry-core (~> 0.5, >= 0.5)
|
58
|
-
dry-inflector (~> 0.1, >= 0.1.2)
|
72
|
+
dry-core (~> 1.0)
|
73
|
+
dry-inflector (~> 1.0)
|
59
74
|
dry-initializer (~> 3.0)
|
60
|
-
|
75
|
+
zeitwerk (~> 2.6)
|
76
|
+
dry-inflector (1.1.0)
|
61
77
|
dry-initializer (3.1.1)
|
62
|
-
dry-logic (1.
|
78
|
+
dry-logic (1.5.0)
|
63
79
|
concurrent-ruby (~> 1.0)
|
64
|
-
dry-core (~> 0
|
65
|
-
|
66
|
-
|
67
|
-
|
80
|
+
dry-core (~> 1.0, < 2)
|
81
|
+
zeitwerk (~> 2.6)
|
82
|
+
dry-matcher (1.0.0)
|
83
|
+
dry-core (~> 1.0, < 2)
|
84
|
+
dry-monads (1.6.0)
|
68
85
|
concurrent-ruby (~> 1.0)
|
69
|
-
dry-core (~> 0
|
70
|
-
|
86
|
+
dry-core (~> 1.0, < 2)
|
87
|
+
zeitwerk (~> 2.6)
|
88
|
+
dry-schema (1.13.4)
|
71
89
|
concurrent-ruby (~> 1.0)
|
72
|
-
dry-configurable (~> 0
|
73
|
-
dry-core (~> 0
|
90
|
+
dry-configurable (~> 1.0, >= 1.0.1)
|
91
|
+
dry-core (~> 1.0, < 2)
|
74
92
|
dry-initializer (~> 3.0)
|
75
|
-
dry-logic (
|
76
|
-
dry-types (
|
77
|
-
|
78
|
-
|
79
|
-
dry-
|
93
|
+
dry-logic (>= 1.4, < 2)
|
94
|
+
dry-types (>= 1.7, < 2)
|
95
|
+
zeitwerk (~> 2.6)
|
96
|
+
dry-struct (1.6.0)
|
97
|
+
dry-core (~> 1.0, < 2)
|
98
|
+
dry-types (>= 1.7, < 2)
|
80
99
|
ice_nine (~> 0.11)
|
81
|
-
|
100
|
+
zeitwerk (~> 2.6)
|
101
|
+
dry-types (1.7.2)
|
102
|
+
bigdecimal (~> 3.0)
|
82
103
|
concurrent-ruby (~> 1.0)
|
83
|
-
dry-
|
84
|
-
dry-
|
85
|
-
dry-
|
86
|
-
|
87
|
-
dry-validation (1.
|
104
|
+
dry-core (~> 1.0)
|
105
|
+
dry-inflector (~> 1.0)
|
106
|
+
dry-logic (~> 1.4)
|
107
|
+
zeitwerk (~> 2.6)
|
108
|
+
dry-validation (1.10.0)
|
88
109
|
concurrent-ruby (~> 1.0)
|
89
|
-
dry-
|
90
|
-
dry-core (~> 0.5, >= 0.5)
|
110
|
+
dry-core (~> 1.0, < 2)
|
91
111
|
dry-initializer (~> 3.0)
|
92
|
-
dry-schema (
|
112
|
+
dry-schema (>= 1.12, < 2)
|
113
|
+
zeitwerk (~> 2.6)
|
93
114
|
factory_bot (6.1.0)
|
94
115
|
activesupport (>= 5.0.0)
|
95
116
|
faker (2.19.0)
|
96
117
|
i18n (>= 1.6, < 2)
|
97
|
-
hashdiff (1.0
|
98
|
-
i18n (1.
|
118
|
+
hashdiff (1.2.0)
|
119
|
+
i18n (1.14.7)
|
99
120
|
concurrent-ruby (~> 1.0)
|
100
121
|
ice_nine (0.11.2)
|
101
|
-
jwt (2.
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
122
|
+
jwt (2.10.2)
|
123
|
+
base64
|
124
|
+
logger (1.7.0)
|
125
|
+
method_source (1.1.0)
|
126
|
+
minitest (5.25.5)
|
127
|
+
mutex_m (0.3.0)
|
128
|
+
ostruct (0.6.3)
|
129
|
+
parallel (1.27.0)
|
130
|
+
parser (3.3.9.0)
|
106
131
|
ast (~> 2.4.1)
|
132
|
+
racc
|
133
|
+
prism (1.4.0)
|
107
134
|
pry (0.14.1)
|
108
135
|
coderay (~> 1.1)
|
109
136
|
method_source (~> 1.0)
|
110
|
-
public_suffix (
|
137
|
+
public_suffix (6.0.2)
|
138
|
+
racc (1.8.1)
|
111
139
|
rack (2.2.3)
|
112
|
-
rack-test (
|
113
|
-
rack (>= 1.
|
140
|
+
rack-test (2.2.0)
|
141
|
+
rack (>= 1.3)
|
114
142
|
rainbow (3.1.1)
|
115
|
-
rake (13.0
|
116
|
-
redcarpet (3.
|
117
|
-
regexp_parser (2.
|
118
|
-
rexml (3.
|
143
|
+
rake (13.3.0)
|
144
|
+
redcarpet (3.6.1)
|
145
|
+
regexp_parser (2.11.0)
|
146
|
+
rexml (3.4.1)
|
119
147
|
rspec (3.10.0)
|
120
148
|
rspec-core (~> 3.10.0)
|
121
149
|
rspec-expectations (~> 3.10.0)
|
@@ -139,49 +167,53 @@ GEM
|
|
139
167
|
rubocop-ast (>= 1.2.0, < 2.0)
|
140
168
|
ruby-progressbar (~> 1.7)
|
141
169
|
unicode-display_width (>= 1.4.0, < 3.0)
|
142
|
-
rubocop-ast (1.
|
143
|
-
parser (>= 3.
|
170
|
+
rubocop-ast (1.46.0)
|
171
|
+
parser (>= 3.3.7.2)
|
172
|
+
prism (~> 1.4)
|
144
173
|
rubocop-rake (0.5.1)
|
145
174
|
rubocop
|
146
175
|
rubocop-rspec (2.3.0)
|
147
176
|
rubocop (~> 1.0)
|
148
177
|
rubocop-ast (>= 1.1.0)
|
149
|
-
ruby-next-core (
|
150
|
-
ruby-progressbar (1.
|
178
|
+
ruby-next-core (1.1.2)
|
179
|
+
ruby-progressbar (1.13.0)
|
180
|
+
securerandom (0.3.2)
|
181
|
+
set (1.1.2)
|
151
182
|
simplecov (0.21.2)
|
152
183
|
docile (~> 1.1)
|
153
184
|
simplecov-html (~> 0.11)
|
154
185
|
simplecov_json_formatter (~> 0.1)
|
155
|
-
simplecov-html (0.
|
156
|
-
simplecov_json_formatter (0.1.
|
157
|
-
thor (1.
|
186
|
+
simplecov-html (0.13.2)
|
187
|
+
simplecov_json_formatter (0.1.4)
|
188
|
+
thor (1.4.0)
|
158
189
|
timecop (0.9.4)
|
159
|
-
tzinfo (2.0.
|
190
|
+
tzinfo (2.0.6)
|
160
191
|
concurrent-ruby (~> 1.0)
|
161
|
-
unicode-display_width (2.
|
192
|
+
unicode-display_width (2.6.0)
|
162
193
|
webmock (3.12.2)
|
163
194
|
addressable (>= 2.3.6)
|
164
195
|
crack (>= 0.3.2)
|
165
196
|
hashdiff (>= 0.4.0, < 2.0.0)
|
166
197
|
yard (0.9.26)
|
167
|
-
yard-junk (0.0.
|
198
|
+
yard-junk (0.0.10)
|
168
199
|
backports (>= 3.18)
|
200
|
+
ostruct
|
169
201
|
rainbow
|
170
202
|
yard
|
171
|
-
zeitwerk (2.
|
203
|
+
zeitwerk (2.6.18)
|
172
204
|
|
173
205
|
PLATFORMS
|
174
|
-
ruby
|
175
206
|
x86_64-darwin-19
|
176
207
|
x86_64-linux
|
177
208
|
|
178
209
|
DEPENDENCIES
|
179
|
-
appraisal (= 2.
|
210
|
+
appraisal (= 2.5.0)
|
180
211
|
factory_bot (~> 6.1.0)
|
181
212
|
faker (= 2.19.0)
|
182
213
|
keycloak_rack!
|
183
214
|
pry (= 0.14.1)
|
184
|
-
rack
|
215
|
+
rack (>= 2.2, < 3)
|
216
|
+
rack-test (= 2.2.0)
|
185
217
|
rake (>= 13, < 14)
|
186
218
|
redcarpet
|
187
219
|
rspec (= 3.10.0)
|
@@ -189,6 +221,7 @@ DEPENDENCIES
|
|
189
221
|
rubocop (= 1.13.0)
|
190
222
|
rubocop-rake (= 0.5.1)
|
191
223
|
rubocop-rspec (= 2.3.0)
|
224
|
+
set (= 1.1.2)
|
192
225
|
simplecov (= 0.21.2)
|
193
226
|
timecop (= 0.9.4)
|
194
227
|
webmock (= 3.12.2)
|
@@ -0,0 +1,232 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
keycloak_rack (1.2.0)
|
5
|
+
activesupport (>= 4.2)
|
6
|
+
anyway_config (>= 2.1.0, < 3)
|
7
|
+
dry-auto_inject
|
8
|
+
dry-container
|
9
|
+
dry-effects (>= 0.0.1)
|
10
|
+
dry-initializer
|
11
|
+
dry-matcher
|
12
|
+
dry-monads (>= 1.3.5, < 2)
|
13
|
+
dry-struct (>= 1, < 2)
|
14
|
+
dry-types (>= 1, < 2)
|
15
|
+
dry-validation
|
16
|
+
jwt (>= 2.2.0, < 3)
|
17
|
+
rack (>= 2.0.0, < 4)
|
18
|
+
zeitwerk (>= 2.0.0, < 3)
|
19
|
+
|
20
|
+
GEM
|
21
|
+
remote: https://rubygems.org/
|
22
|
+
specs:
|
23
|
+
activesupport (7.1.5.1)
|
24
|
+
base64
|
25
|
+
benchmark (>= 0.3)
|
26
|
+
bigdecimal
|
27
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
28
|
+
connection_pool (>= 2.2.5)
|
29
|
+
drb
|
30
|
+
i18n (>= 1.6, < 2)
|
31
|
+
logger (>= 1.4.2)
|
32
|
+
minitest (>= 5.1)
|
33
|
+
mutex_m
|
34
|
+
securerandom (>= 0.3)
|
35
|
+
tzinfo (~> 2.0)
|
36
|
+
addressable (2.8.7)
|
37
|
+
public_suffix (>= 2.0.2, < 7.0)
|
38
|
+
anyway_config (2.7.2)
|
39
|
+
ruby-next-core (~> 1.0)
|
40
|
+
appraisal (2.5.0)
|
41
|
+
bundler
|
42
|
+
rake
|
43
|
+
thor (>= 0.14.0)
|
44
|
+
ast (2.4.3)
|
45
|
+
backports (3.25.1)
|
46
|
+
base64 (0.3.0)
|
47
|
+
benchmark (0.4.1)
|
48
|
+
bigdecimal (3.2.2)
|
49
|
+
coderay (1.1.3)
|
50
|
+
concurrent-ruby (1.3.5)
|
51
|
+
connection_pool (2.5.3)
|
52
|
+
crack (1.0.0)
|
53
|
+
bigdecimal
|
54
|
+
rexml
|
55
|
+
diff-lcs (1.6.2)
|
56
|
+
docile (1.4.1)
|
57
|
+
drb (2.2.3)
|
58
|
+
dry-auto_inject (1.0.1)
|
59
|
+
dry-core (~> 1.0)
|
60
|
+
zeitwerk (~> 2.6)
|
61
|
+
dry-configurable (1.2.0)
|
62
|
+
dry-core (~> 1.0, < 2)
|
63
|
+
zeitwerk (~> 2.6)
|
64
|
+
dry-container (0.11.0)
|
65
|
+
concurrent-ruby (~> 1.0)
|
66
|
+
dry-core (1.0.2)
|
67
|
+
concurrent-ruby (~> 1.0)
|
68
|
+
logger
|
69
|
+
zeitwerk (~> 2.6)
|
70
|
+
dry-effects (0.4.1)
|
71
|
+
concurrent-ruby (~> 1.0)
|
72
|
+
dry-core (~> 1.0)
|
73
|
+
dry-inflector (~> 1.0)
|
74
|
+
dry-initializer (~> 3.0)
|
75
|
+
zeitwerk (~> 2.6)
|
76
|
+
dry-inflector (1.1.0)
|
77
|
+
dry-initializer (3.1.1)
|
78
|
+
dry-logic (1.5.0)
|
79
|
+
concurrent-ruby (~> 1.0)
|
80
|
+
dry-core (~> 1.0, < 2)
|
81
|
+
zeitwerk (~> 2.6)
|
82
|
+
dry-matcher (1.0.0)
|
83
|
+
dry-core (~> 1.0, < 2)
|
84
|
+
dry-monads (1.6.0)
|
85
|
+
concurrent-ruby (~> 1.0)
|
86
|
+
dry-core (~> 1.0, < 2)
|
87
|
+
zeitwerk (~> 2.6)
|
88
|
+
dry-schema (1.13.4)
|
89
|
+
concurrent-ruby (~> 1.0)
|
90
|
+
dry-configurable (~> 1.0, >= 1.0.1)
|
91
|
+
dry-core (~> 1.0, < 2)
|
92
|
+
dry-initializer (~> 3.0)
|
93
|
+
dry-logic (>= 1.4, < 2)
|
94
|
+
dry-types (>= 1.7, < 2)
|
95
|
+
zeitwerk (~> 2.6)
|
96
|
+
dry-struct (1.6.0)
|
97
|
+
dry-core (~> 1.0, < 2)
|
98
|
+
dry-types (>= 1.7, < 2)
|
99
|
+
ice_nine (~> 0.11)
|
100
|
+
zeitwerk (~> 2.6)
|
101
|
+
dry-types (1.7.2)
|
102
|
+
bigdecimal (~> 3.0)
|
103
|
+
concurrent-ruby (~> 1.0)
|
104
|
+
dry-core (~> 1.0)
|
105
|
+
dry-inflector (~> 1.0)
|
106
|
+
dry-logic (~> 1.4)
|
107
|
+
zeitwerk (~> 2.6)
|
108
|
+
dry-validation (1.10.0)
|
109
|
+
concurrent-ruby (~> 1.0)
|
110
|
+
dry-core (~> 1.0, < 2)
|
111
|
+
dry-initializer (~> 3.0)
|
112
|
+
dry-schema (>= 1.12, < 2)
|
113
|
+
zeitwerk (~> 2.6)
|
114
|
+
factory_bot (6.1.0)
|
115
|
+
activesupport (>= 5.0.0)
|
116
|
+
faker (2.19.0)
|
117
|
+
i18n (>= 1.6, < 2)
|
118
|
+
hashdiff (1.2.0)
|
119
|
+
i18n (1.14.7)
|
120
|
+
concurrent-ruby (~> 1.0)
|
121
|
+
ice_nine (0.11.2)
|
122
|
+
jwt (2.10.2)
|
123
|
+
base64
|
124
|
+
logger (1.7.0)
|
125
|
+
method_source (1.1.0)
|
126
|
+
minitest (5.25.5)
|
127
|
+
mutex_m (0.3.0)
|
128
|
+
ostruct (0.6.3)
|
129
|
+
parallel (1.27.0)
|
130
|
+
parser (3.3.9.0)
|
131
|
+
ast (~> 2.4.1)
|
132
|
+
racc
|
133
|
+
prism (1.4.0)
|
134
|
+
pry (0.14.1)
|
135
|
+
coderay (~> 1.1)
|
136
|
+
method_source (~> 1.0)
|
137
|
+
public_suffix (6.0.2)
|
138
|
+
racc (1.8.1)
|
139
|
+
rack (3.2.0)
|
140
|
+
rack-test (2.2.0)
|
141
|
+
rack (>= 1.3)
|
142
|
+
rainbow (3.1.1)
|
143
|
+
rake (13.3.0)
|
144
|
+
redcarpet (3.6.1)
|
145
|
+
regexp_parser (2.11.0)
|
146
|
+
rexml (3.4.1)
|
147
|
+
rspec (3.10.0)
|
148
|
+
rspec-core (~> 3.10.0)
|
149
|
+
rspec-expectations (~> 3.10.0)
|
150
|
+
rspec-mocks (~> 3.10.0)
|
151
|
+
rspec-core (3.10.2)
|
152
|
+
rspec-support (~> 3.10.0)
|
153
|
+
rspec-expectations (3.10.2)
|
154
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
155
|
+
rspec-support (~> 3.10.0)
|
156
|
+
rspec-json_expectations (2.2.0)
|
157
|
+
rspec-mocks (3.10.3)
|
158
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
159
|
+
rspec-support (~> 3.10.0)
|
160
|
+
rspec-support (3.10.3)
|
161
|
+
rubocop (1.13.0)
|
162
|
+
parallel (~> 1.10)
|
163
|
+
parser (>= 3.0.0.0)
|
164
|
+
rainbow (>= 2.2.2, < 4.0)
|
165
|
+
regexp_parser (>= 1.8, < 3.0)
|
166
|
+
rexml
|
167
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
168
|
+
ruby-progressbar (~> 1.7)
|
169
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
170
|
+
rubocop-ast (1.46.0)
|
171
|
+
parser (>= 3.3.7.2)
|
172
|
+
prism (~> 1.4)
|
173
|
+
rubocop-rake (0.5.1)
|
174
|
+
rubocop
|
175
|
+
rubocop-rspec (2.3.0)
|
176
|
+
rubocop (~> 1.0)
|
177
|
+
rubocop-ast (>= 1.1.0)
|
178
|
+
ruby-next-core (1.1.2)
|
179
|
+
ruby-progressbar (1.13.0)
|
180
|
+
securerandom (0.3.2)
|
181
|
+
set (1.1.2)
|
182
|
+
simplecov (0.21.2)
|
183
|
+
docile (~> 1.1)
|
184
|
+
simplecov-html (~> 0.11)
|
185
|
+
simplecov_json_formatter (~> 0.1)
|
186
|
+
simplecov-html (0.13.2)
|
187
|
+
simplecov_json_formatter (0.1.4)
|
188
|
+
thor (1.4.0)
|
189
|
+
timecop (0.9.4)
|
190
|
+
tzinfo (2.0.6)
|
191
|
+
concurrent-ruby (~> 1.0)
|
192
|
+
unicode-display_width (2.6.0)
|
193
|
+
webmock (3.12.2)
|
194
|
+
addressable (>= 2.3.6)
|
195
|
+
crack (>= 0.3.2)
|
196
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
197
|
+
yard (0.9.26)
|
198
|
+
yard-junk (0.0.10)
|
199
|
+
backports (>= 3.18)
|
200
|
+
ostruct
|
201
|
+
rainbow
|
202
|
+
yard
|
203
|
+
zeitwerk (2.6.18)
|
204
|
+
|
205
|
+
PLATFORMS
|
206
|
+
x86_64-darwin-19
|
207
|
+
x86_64-linux
|
208
|
+
|
209
|
+
DEPENDENCIES
|
210
|
+
appraisal (= 2.5.0)
|
211
|
+
factory_bot (~> 6.1.0)
|
212
|
+
faker (= 2.19.0)
|
213
|
+
keycloak_rack!
|
214
|
+
pry (= 0.14.1)
|
215
|
+
rack (>= 3, < 4)
|
216
|
+
rack-test (= 2.2.0)
|
217
|
+
rake (>= 13, < 14)
|
218
|
+
redcarpet
|
219
|
+
rspec (= 3.10.0)
|
220
|
+
rspec-json_expectations (= 2.2.0)
|
221
|
+
rubocop (= 1.13.0)
|
222
|
+
rubocop-rake (= 0.5.1)
|
223
|
+
rubocop-rspec (= 2.3.0)
|
224
|
+
set (= 1.1.2)
|
225
|
+
simplecov (= 0.21.2)
|
226
|
+
timecop (= 0.9.4)
|
227
|
+
webmock (= 3.12.2)
|
228
|
+
yard (= 0.9.26)
|
229
|
+
yard-junk
|
230
|
+
|
231
|
+
BUNDLED WITH
|
232
|
+
2.2.19
|