devise-api 0.2.0 → 0.3.1
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/.claude/commands/commit.md +38 -0
- data/.claude/commands/create-branch.md +57 -0
- data/.claude/commands/create-pr.md +41 -0
- data/CHANGELOG.md +60 -1
- data/CLAUDE.md +49 -0
- data/Gemfile +9 -3
- data/Gemfile.lock +257 -185
- data/README.md +320 -162
- data/Rakefile +6 -0
- data/app/controllers/devise/api/tokens_controller.rb +48 -108
- data/app/services/devise/api/resource_owner_service/authenticate.rb +9 -2
- data/app/services/devise/api/tokens_service/create.rb +16 -8
- data/app/services/devise/api/tokens_service/refresh.rb +17 -2
- data/app/services/devise/api/tokens_service/revoke.rb +1 -1
- data/config/locales/en.yml +1 -0
- data/docs/README.md +32 -0
- data/docs/analysis/known-issues.md +56 -0
- data/docs/analysis/security-review.md +53 -0
- data/docs/api-reference.md +95 -0
- data/docs/architecture.md +145 -0
- data/docs/configuration.md +84 -0
- data/docs/data-model.md +80 -0
- data/docs/development.md +52 -0
- data/docs/extending.md +75 -0
- data/docs/services.md +72 -0
- data/docs/testing.md +65 -0
- data/lib/devise/api/configuration.rb +7 -0
- data/lib/devise/api/controllers/helpers.rb +5 -3
- data/lib/devise/api/generators/templates/migration.rb.erb +2 -2
- data/lib/devise/api/rails/engine.rb +6 -0
- data/lib/devise/api/responses/error_response.rb +40 -29
- data/lib/devise/api/responses/token_response.rb +5 -1
- data/lib/devise/api/token.rb +34 -2
- data/lib/devise/api/version.rb +1 -1
- metadata +18 -7
- data/sig/devise/api.rbs +0 -6
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
devise-api (0.1
|
|
4
|
+
devise-api (0.3.1)
|
|
5
5
|
devise (>= 4.7.2)
|
|
6
6
|
dry-configurable (~> 1.0, >= 1.0.1)
|
|
7
7
|
dry-initializer (>= 3.1.1)
|
|
@@ -12,254 +12,324 @@ PATH
|
|
|
12
12
|
GEM
|
|
13
13
|
remote: https://rubygems.org/
|
|
14
14
|
specs:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
action_text-trix (2.1.19)
|
|
16
|
+
railties
|
|
17
|
+
actioncable (8.1.3.1)
|
|
18
|
+
actionpack (= 8.1.3.1)
|
|
19
|
+
activesupport (= 8.1.3.1)
|
|
18
20
|
nio4r (~> 2.0)
|
|
19
21
|
websocket-driver (>= 0.6.1)
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
actionview (= 7.0.4)
|
|
42
|
-
activesupport (= 7.0.4)
|
|
43
|
-
rack (~> 2.0, >= 2.2.0)
|
|
22
|
+
zeitwerk (~> 2.6)
|
|
23
|
+
actionmailbox (8.1.3.1)
|
|
24
|
+
actionpack (= 8.1.3.1)
|
|
25
|
+
activejob (= 8.1.3.1)
|
|
26
|
+
activerecord (= 8.1.3.1)
|
|
27
|
+
activestorage (= 8.1.3.1)
|
|
28
|
+
activesupport (= 8.1.3.1)
|
|
29
|
+
mail (>= 2.8.0)
|
|
30
|
+
actionmailer (8.1.3.1)
|
|
31
|
+
actionpack (= 8.1.3.1)
|
|
32
|
+
actionview (= 8.1.3.1)
|
|
33
|
+
activejob (= 8.1.3.1)
|
|
34
|
+
activesupport (= 8.1.3.1)
|
|
35
|
+
mail (>= 2.8.0)
|
|
36
|
+
rails-dom-testing (~> 2.2)
|
|
37
|
+
actionpack (8.1.3.1)
|
|
38
|
+
actionview (= 8.1.3.1)
|
|
39
|
+
activesupport (= 8.1.3.1)
|
|
40
|
+
nokogiri (>= 1.8.5)
|
|
41
|
+
rack (>= 2.2.4)
|
|
42
|
+
rack-session (>= 1.0.1)
|
|
44
43
|
rack-test (>= 0.6.3)
|
|
45
|
-
rails-dom-testing (~> 2.
|
|
46
|
-
rails-html-sanitizer (~> 1.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
44
|
+
rails-dom-testing (~> 2.2)
|
|
45
|
+
rails-html-sanitizer (~> 1.6)
|
|
46
|
+
useragent (~> 0.16)
|
|
47
|
+
actiontext (8.1.3.1)
|
|
48
|
+
action_text-trix (~> 2.1.15)
|
|
49
|
+
actionpack (= 8.1.3.1)
|
|
50
|
+
activerecord (= 8.1.3.1)
|
|
51
|
+
activestorage (= 8.1.3.1)
|
|
52
|
+
activesupport (= 8.1.3.1)
|
|
52
53
|
globalid (>= 0.6.0)
|
|
53
54
|
nokogiri (>= 1.8.5)
|
|
54
|
-
actionview (
|
|
55
|
-
activesupport (=
|
|
55
|
+
actionview (8.1.3.1)
|
|
56
|
+
activesupport (= 8.1.3.1)
|
|
56
57
|
builder (~> 3.1)
|
|
57
|
-
erubi (~> 1.
|
|
58
|
-
rails-dom-testing (~> 2.
|
|
59
|
-
rails-html-sanitizer (~> 1.
|
|
60
|
-
activejob (
|
|
61
|
-
activesupport (=
|
|
58
|
+
erubi (~> 1.11)
|
|
59
|
+
rails-dom-testing (~> 2.2)
|
|
60
|
+
rails-html-sanitizer (~> 1.6)
|
|
61
|
+
activejob (8.1.3.1)
|
|
62
|
+
activesupport (= 8.1.3.1)
|
|
62
63
|
globalid (>= 0.3.6)
|
|
63
|
-
activemodel (
|
|
64
|
-
activesupport (=
|
|
65
|
-
activerecord (
|
|
66
|
-
activemodel (=
|
|
67
|
-
activesupport (=
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
64
|
+
activemodel (8.1.3.1)
|
|
65
|
+
activesupport (= 8.1.3.1)
|
|
66
|
+
activerecord (8.1.3.1)
|
|
67
|
+
activemodel (= 8.1.3.1)
|
|
68
|
+
activesupport (= 8.1.3.1)
|
|
69
|
+
timeout (>= 0.4.0)
|
|
70
|
+
activestorage (8.1.3.1)
|
|
71
|
+
actionpack (= 8.1.3.1)
|
|
72
|
+
activejob (= 8.1.3.1)
|
|
73
|
+
activerecord (= 8.1.3.1)
|
|
74
|
+
activesupport (= 8.1.3.1)
|
|
73
75
|
marcel (~> 1.0)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
76
|
+
activesupport (8.1.3.1)
|
|
77
|
+
base64
|
|
78
|
+
bigdecimal
|
|
79
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
80
|
+
connection_pool (>= 2.2.5)
|
|
81
|
+
drb
|
|
77
82
|
i18n (>= 1.6, < 2)
|
|
83
|
+
json
|
|
84
|
+
logger (>= 1.4.2)
|
|
78
85
|
minitest (>= 5.1)
|
|
79
|
-
|
|
80
|
-
|
|
86
|
+
securerandom (>= 0.3)
|
|
87
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
88
|
+
uri (>= 0.13.1)
|
|
89
|
+
ast (2.4.3)
|
|
81
90
|
awesome_print (1.9.2)
|
|
82
|
-
|
|
83
|
-
|
|
91
|
+
base64 (0.3.0)
|
|
92
|
+
bcrypt (3.1.22)
|
|
93
|
+
bigdecimal (4.1.2)
|
|
94
|
+
builder (3.3.0)
|
|
84
95
|
coderay (1.1.3)
|
|
85
|
-
concurrent-ruby (1.
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
96
|
+
concurrent-ruby (1.3.8)
|
|
97
|
+
connection_pool (3.0.2)
|
|
98
|
+
crass (1.0.7)
|
|
99
|
+
database_cleaner (2.1.0)
|
|
100
|
+
database_cleaner-active_record (>= 2, < 3)
|
|
101
|
+
database_cleaner-active_record (2.2.2)
|
|
90
102
|
activerecord (>= 5.a)
|
|
91
|
-
database_cleaner-core (~> 2.0
|
|
92
|
-
database_cleaner-core (2.0
|
|
93
|
-
date (3.
|
|
94
|
-
devise (
|
|
103
|
+
database_cleaner-core (~> 2.0)
|
|
104
|
+
database_cleaner-core (2.1.0)
|
|
105
|
+
date (3.5.1)
|
|
106
|
+
devise (5.0.4)
|
|
95
107
|
bcrypt (~> 3.0)
|
|
96
108
|
orm_adapter (~> 0.1)
|
|
97
|
-
railties (>=
|
|
109
|
+
railties (>= 7.0)
|
|
98
110
|
responders
|
|
99
111
|
warden (~> 1.2.3)
|
|
100
|
-
diff-lcs (1.
|
|
101
|
-
|
|
102
|
-
|
|
112
|
+
diff-lcs (1.6.2)
|
|
113
|
+
docile (1.4.1)
|
|
114
|
+
drb (2.2.3)
|
|
115
|
+
dry-configurable (1.3.0)
|
|
116
|
+
dry-core (~> 1.1)
|
|
103
117
|
zeitwerk (~> 2.6)
|
|
104
|
-
dry-core (1.
|
|
118
|
+
dry-core (1.2.0)
|
|
105
119
|
concurrent-ruby (~> 1.0)
|
|
120
|
+
logger
|
|
106
121
|
zeitwerk (~> 2.6)
|
|
107
|
-
dry-inflector (1.
|
|
108
|
-
dry-initializer (3.
|
|
109
|
-
dry-logic (1.
|
|
122
|
+
dry-inflector (1.3.1)
|
|
123
|
+
dry-initializer (3.2.0)
|
|
124
|
+
dry-logic (1.6.0)
|
|
125
|
+
bigdecimal
|
|
110
126
|
concurrent-ruby (~> 1.0)
|
|
111
|
-
dry-core (~> 1.
|
|
127
|
+
dry-core (~> 1.1)
|
|
112
128
|
zeitwerk (~> 2.6)
|
|
113
|
-
dry-monads (1.
|
|
129
|
+
dry-monads (1.10.0)
|
|
114
130
|
concurrent-ruby (~> 1.0)
|
|
115
|
-
dry-core (~> 1.
|
|
131
|
+
dry-core (~> 1.1)
|
|
116
132
|
zeitwerk (~> 2.6)
|
|
117
|
-
dry-types (1.
|
|
133
|
+
dry-types (1.9.1)
|
|
134
|
+
bigdecimal (>= 3.0)
|
|
118
135
|
concurrent-ruby (~> 1.0)
|
|
119
|
-
dry-core (~> 1.0
|
|
120
|
-
dry-inflector (~> 1.0
|
|
121
|
-
dry-logic (
|
|
136
|
+
dry-core (~> 1.0)
|
|
137
|
+
dry-inflector (~> 1.0)
|
|
138
|
+
dry-logic (~> 1.4)
|
|
122
139
|
zeitwerk (~> 2.6)
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
140
|
+
erb (6.0.7)
|
|
141
|
+
erubi (1.13.1)
|
|
142
|
+
factory_bot (6.6.0)
|
|
143
|
+
activesupport (>= 6.1.0)
|
|
144
|
+
faker (3.8.0)
|
|
127
145
|
i18n (>= 1.8.11, < 2)
|
|
128
|
-
globalid (1.
|
|
129
|
-
activesupport (>=
|
|
130
|
-
i18n (1.
|
|
146
|
+
globalid (1.4.0)
|
|
147
|
+
activesupport (>= 6.1)
|
|
148
|
+
i18n (1.15.2)
|
|
131
149
|
concurrent-ruby (~> 1.0)
|
|
132
|
-
|
|
133
|
-
|
|
150
|
+
io-console (0.9.2)
|
|
151
|
+
irb (1.18.0)
|
|
152
|
+
pp (>= 0.6.0)
|
|
153
|
+
prism (>= 1.3.0)
|
|
154
|
+
rdoc (>= 4.0.0)
|
|
155
|
+
reline (>= 0.4.2)
|
|
156
|
+
json (2.21.2)
|
|
157
|
+
language_server-protocol (3.17.0.6)
|
|
158
|
+
lint_roller (1.1.0)
|
|
159
|
+
logger (1.7.0)
|
|
160
|
+
loofah (2.25.2)
|
|
134
161
|
crass (~> 1.0.2)
|
|
135
|
-
nokogiri (>= 1.
|
|
136
|
-
mail (2.
|
|
162
|
+
nokogiri (>= 1.12.0)
|
|
163
|
+
mail (2.9.1)
|
|
164
|
+
logger
|
|
137
165
|
mini_mime (>= 0.1.1)
|
|
138
166
|
net-imap
|
|
139
167
|
net-pop
|
|
140
168
|
net-smtp
|
|
141
|
-
marcel (1.
|
|
142
|
-
method_source (1.
|
|
143
|
-
mini_mime (1.1.
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
169
|
+
marcel (1.2.1)
|
|
170
|
+
method_source (1.1.0)
|
|
171
|
+
mini_mime (1.1.5)
|
|
172
|
+
minitest (6.0.6)
|
|
173
|
+
drb (~> 2.0)
|
|
174
|
+
prism (~> 1.5)
|
|
175
|
+
net-imap (0.6.6)
|
|
147
176
|
date
|
|
148
177
|
net-protocol
|
|
149
178
|
net-pop (0.1.2)
|
|
150
179
|
net-protocol
|
|
151
|
-
net-protocol (0.2.
|
|
180
|
+
net-protocol (0.2.2)
|
|
152
181
|
timeout
|
|
153
|
-
net-smtp (0.
|
|
182
|
+
net-smtp (0.5.1)
|
|
154
183
|
net-protocol
|
|
155
|
-
nio4r (2.5
|
|
156
|
-
nokogiri (1.
|
|
157
|
-
mini_portile2 (~> 2.8.0)
|
|
184
|
+
nio4r (2.7.5)
|
|
185
|
+
nokogiri (1.19.4-arm64-darwin)
|
|
158
186
|
racc (~> 1.4)
|
|
159
187
|
orm_adapter (0.5.0)
|
|
160
|
-
|
|
161
|
-
|
|
188
|
+
ostruct (0.6.3)
|
|
189
|
+
parallel (1.28.0)
|
|
190
|
+
parser (3.3.12.0)
|
|
162
191
|
ast (~> 2.4.1)
|
|
192
|
+
racc
|
|
193
|
+
pp (0.6.4)
|
|
194
|
+
prettyprint
|
|
195
|
+
prettyprint (0.2.0)
|
|
196
|
+
prism (1.9.0)
|
|
163
197
|
pry (0.14.2)
|
|
164
198
|
coderay (~> 1.1)
|
|
165
199
|
method_source (~> 1.0)
|
|
166
|
-
puma (
|
|
200
|
+
puma (7.2.1)
|
|
167
201
|
nio4r (~> 2.0)
|
|
168
|
-
racc (1.
|
|
169
|
-
rack (
|
|
170
|
-
rack-
|
|
202
|
+
racc (1.8.1)
|
|
203
|
+
rack (3.2.7)
|
|
204
|
+
rack-session (2.1.2)
|
|
205
|
+
base64 (>= 0.1.0)
|
|
206
|
+
rack (>= 3.0.0)
|
|
207
|
+
rack-test (2.2.0)
|
|
171
208
|
rack (>= 1.3)
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
209
|
+
rackup (2.3.1)
|
|
210
|
+
rack (>= 3)
|
|
211
|
+
rails (8.1.3.1)
|
|
212
|
+
actioncable (= 8.1.3.1)
|
|
213
|
+
actionmailbox (= 8.1.3.1)
|
|
214
|
+
actionmailer (= 8.1.3.1)
|
|
215
|
+
actionpack (= 8.1.3.1)
|
|
216
|
+
actiontext (= 8.1.3.1)
|
|
217
|
+
actionview (= 8.1.3.1)
|
|
218
|
+
activejob (= 8.1.3.1)
|
|
219
|
+
activemodel (= 8.1.3.1)
|
|
220
|
+
activerecord (= 8.1.3.1)
|
|
221
|
+
activestorage (= 8.1.3.1)
|
|
222
|
+
activesupport (= 8.1.3.1)
|
|
184
223
|
bundler (>= 1.15.0)
|
|
185
|
-
railties (=
|
|
186
|
-
rails-dom-testing (2.0
|
|
187
|
-
activesupport (>=
|
|
224
|
+
railties (= 8.1.3.1)
|
|
225
|
+
rails-dom-testing (2.3.0)
|
|
226
|
+
activesupport (>= 5.0.0)
|
|
227
|
+
minitest
|
|
188
228
|
nokogiri (>= 1.6)
|
|
189
|
-
rails-html-sanitizer (1.
|
|
190
|
-
loofah (~> 2.
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
229
|
+
rails-html-sanitizer (1.7.1)
|
|
230
|
+
loofah (~> 2.25, >= 2.25.2)
|
|
231
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
232
|
+
railties (8.1.3.1)
|
|
233
|
+
actionpack (= 8.1.3.1)
|
|
234
|
+
activesupport (= 8.1.3.1)
|
|
235
|
+
irb (~> 1.13)
|
|
236
|
+
rackup (>= 1.0.0)
|
|
195
237
|
rake (>= 12.2)
|
|
196
|
-
thor (~> 1.0)
|
|
197
|
-
|
|
238
|
+
thor (~> 1.0, >= 1.2.2)
|
|
239
|
+
tsort (>= 0.2)
|
|
240
|
+
zeitwerk (~> 2.6)
|
|
198
241
|
rainbow (3.1.1)
|
|
199
|
-
rake (13.
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
242
|
+
rake (13.4.2)
|
|
243
|
+
rbs (4.1.3)
|
|
244
|
+
logger
|
|
245
|
+
prism (>= 1.6.0)
|
|
246
|
+
tsort
|
|
247
|
+
rdoc (8.0.0)
|
|
248
|
+
erb
|
|
249
|
+
prism (>= 1.6.0)
|
|
250
|
+
rbs (>= 4.0.0)
|
|
251
|
+
tsort
|
|
252
|
+
regexp_parser (2.12.0)
|
|
253
|
+
reline (0.7.0)
|
|
254
|
+
io-console (~> 0.5)
|
|
255
|
+
responders (3.2.0)
|
|
256
|
+
actionpack (>= 7.0)
|
|
257
|
+
railties (>= 7.0)
|
|
258
|
+
rspec (3.13.2)
|
|
259
|
+
rspec-core (~> 3.13.0)
|
|
260
|
+
rspec-expectations (~> 3.13.0)
|
|
261
|
+
rspec-mocks (~> 3.13.0)
|
|
262
|
+
rspec-core (3.13.6)
|
|
263
|
+
rspec-support (~> 3.13.0)
|
|
264
|
+
rspec-expectations (3.13.5)
|
|
212
265
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
213
|
-
rspec-support (~> 3.
|
|
214
|
-
rspec-mocks (3.
|
|
266
|
+
rspec-support (~> 3.13.0)
|
|
267
|
+
rspec-mocks (3.13.8)
|
|
215
268
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
216
|
-
rspec-support (~> 3.
|
|
217
|
-
rspec-rails (
|
|
218
|
-
actionpack (>=
|
|
219
|
-
activesupport (>=
|
|
220
|
-
railties (>=
|
|
221
|
-
rspec-core (
|
|
222
|
-
rspec-expectations (
|
|
223
|
-
rspec-mocks (
|
|
224
|
-
rspec-support (
|
|
225
|
-
rspec-support (3.
|
|
226
|
-
rubocop (1.
|
|
227
|
-
json (
|
|
228
|
-
|
|
229
|
-
|
|
269
|
+
rspec-support (~> 3.13.0)
|
|
270
|
+
rspec-rails (8.0.4)
|
|
271
|
+
actionpack (>= 7.2)
|
|
272
|
+
activesupport (>= 7.2)
|
|
273
|
+
railties (>= 7.2)
|
|
274
|
+
rspec-core (>= 3.13.0, < 5.0.0)
|
|
275
|
+
rspec-expectations (>= 3.13.0, < 5.0.0)
|
|
276
|
+
rspec-mocks (>= 3.13.0, < 5.0.0)
|
|
277
|
+
rspec-support (>= 3.13.0, < 5.0.0)
|
|
278
|
+
rspec-support (3.13.7)
|
|
279
|
+
rubocop (1.90.0)
|
|
280
|
+
json (>= 2.3)
|
|
281
|
+
language_server-protocol (~> 3.17.0.2)
|
|
282
|
+
lint_roller (~> 1.1.0)
|
|
283
|
+
parallel (>= 1.10)
|
|
284
|
+
parser (>= 3.3.0.2)
|
|
230
285
|
rainbow (>= 2.2.2, < 4.0)
|
|
231
|
-
regexp_parser (>=
|
|
232
|
-
|
|
233
|
-
rubocop-ast (>= 1.24.1, < 2.0)
|
|
286
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
287
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
234
288
|
ruby-progressbar (~> 1.7)
|
|
235
|
-
unicode-display_width (>=
|
|
236
|
-
rubocop-ast (1.
|
|
237
|
-
parser (>= 3.
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
289
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
290
|
+
rubocop-ast (1.50.0)
|
|
291
|
+
parser (>= 3.3.7.2)
|
|
292
|
+
prism (~> 1.7)
|
|
293
|
+
ruby-progressbar (1.13.0)
|
|
294
|
+
securerandom (0.4.1)
|
|
295
|
+
simplecov (0.22.0)
|
|
296
|
+
docile (~> 1.1)
|
|
297
|
+
simplecov-html (~> 0.11)
|
|
298
|
+
simplecov_json_formatter (~> 0.1)
|
|
299
|
+
simplecov-html (0.13.2)
|
|
300
|
+
simplecov_json_formatter (0.1.4)
|
|
301
|
+
sprockets (4.4.1)
|
|
302
|
+
concurrent-ruby (~> 1.1)
|
|
303
|
+
logger
|
|
241
304
|
rack (>= 2.2.4, < 4)
|
|
242
|
-
sprockets-rails (3.
|
|
243
|
-
actionpack (>=
|
|
244
|
-
activesupport (>=
|
|
305
|
+
sprockets-rails (3.5.2)
|
|
306
|
+
actionpack (>= 6.1)
|
|
307
|
+
activesupport (>= 6.1)
|
|
245
308
|
sprockets (>= 3.0.0)
|
|
246
|
-
sqlite3 (
|
|
247
|
-
thor (1.
|
|
248
|
-
timeout (0.
|
|
249
|
-
|
|
309
|
+
sqlite3 (2.9.6-arm64-darwin)
|
|
310
|
+
thor (1.5.0)
|
|
311
|
+
timeout (0.6.1)
|
|
312
|
+
tsort (0.2.0)
|
|
313
|
+
tzinfo (2.0.6)
|
|
250
314
|
concurrent-ruby (~> 1.0)
|
|
251
|
-
unicode-display_width (2.
|
|
315
|
+
unicode-display_width (3.2.0)
|
|
316
|
+
unicode-emoji (~> 4.1)
|
|
317
|
+
unicode-emoji (4.2.0)
|
|
318
|
+
uri (1.1.1)
|
|
319
|
+
useragent (0.16.11)
|
|
252
320
|
warden (1.2.9)
|
|
253
321
|
rack (>= 2.0.9)
|
|
254
|
-
websocket-driver (0.
|
|
322
|
+
websocket-driver (0.8.2)
|
|
323
|
+
base64
|
|
255
324
|
websocket-extensions (>= 0.1.0)
|
|
256
325
|
websocket-extensions (0.1.5)
|
|
257
|
-
zeitwerk (2.
|
|
326
|
+
zeitwerk (2.8.3)
|
|
258
327
|
|
|
259
328
|
PLATFORMS
|
|
260
329
|
arm64-darwin-21
|
|
261
330
|
arm64-darwin-22
|
|
262
331
|
arm64-darwin-23
|
|
332
|
+
arm64-darwin-25
|
|
263
333
|
|
|
264
334
|
DEPENDENCIES
|
|
265
335
|
awesome_print
|
|
@@ -267,16 +337,18 @@ DEPENDENCIES
|
|
|
267
337
|
devise-api!
|
|
268
338
|
factory_bot (~> 6.2, >= 6.2.1)
|
|
269
339
|
faker (~> 3.1)
|
|
340
|
+
ostruct
|
|
270
341
|
pry (~> 0.14.1)
|
|
271
|
-
puma (~>
|
|
342
|
+
puma (~> 7.0, >= 7.2.1)
|
|
272
343
|
rake (~> 13.0)
|
|
273
344
|
rspec (~> 3.0)
|
|
274
345
|
rspec-core
|
|
275
|
-
rspec-rails (~>
|
|
346
|
+
rspec-rails (~> 8.0)
|
|
276
347
|
rspec-support
|
|
277
348
|
rubocop (~> 1.21)
|
|
349
|
+
simplecov (~> 0.22)
|
|
278
350
|
sprockets-rails
|
|
279
|
-
sqlite3 (~>
|
|
351
|
+
sqlite3 (~> 2.0)
|
|
280
352
|
|
|
281
353
|
BUNDLED WITH
|
|
282
354
|
2.4.3
|