consent 2.3.0 → 2.5.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/.rubocop.yml +0 -8
- data/Appraisals +1 -9
- data/Gemfile +0 -9
- data/Gemfile.lock +83 -93
- data/consent.gemspec +2 -2
- data/docs/CHANGELOG.md +8 -0
- data/docs/README.md +19 -0
- data/gemfiles/rails_7_1.gemfile +3 -10
- data/gemfiles/rails_7_1.gemfile.lock +143 -135
- data/gemfiles/rails_7_2.gemfile +3 -10
- data/gemfiles/rails_7_2.gemfile.lock +81 -85
- data/lib/consent/action.rb +9 -0
- data/lib/consent/permission_definition_payload.rb +12 -0
- data/lib/consent/subject.rb +9 -0
- data/lib/consent/version.rb +1 -1
- data/lib/consent/view.rb +7 -0
- data/lib/consent.rb +21 -0
- metadata +7 -13
- data/gemfiles/rails_6_1.gemfile +0 -17
- data/gemfiles/rails_6_1.gemfile.lock +0 -304
- data/gemfiles/rails_7_0.gemfile +0 -17
- data/gemfiles/rails_7_0.gemfile.lock +0 -302
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
5
|
-
rubocop (= 1.
|
|
4
|
+
rubocop-powerhome (0.6.1)
|
|
5
|
+
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
8
8
|
rubocop-rake
|
|
@@ -11,41 +11,41 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: ..
|
|
13
13
|
specs:
|
|
14
|
-
consent (2.
|
|
14
|
+
consent (2.5.0)
|
|
15
15
|
cancancan (= 3.2.1)
|
|
16
16
|
|
|
17
17
|
GEM
|
|
18
18
|
remote: https://rubygems.org/
|
|
19
19
|
specs:
|
|
20
|
-
actioncable (7.1.
|
|
21
|
-
actionpack (= 7.1.
|
|
22
|
-
activesupport (= 7.1.
|
|
20
|
+
actioncable (7.1.5.2)
|
|
21
|
+
actionpack (= 7.1.5.2)
|
|
22
|
+
activesupport (= 7.1.5.2)
|
|
23
23
|
nio4r (~> 2.0)
|
|
24
24
|
websocket-driver (>= 0.6.1)
|
|
25
25
|
zeitwerk (~> 2.6)
|
|
26
|
-
actionmailbox (7.1.
|
|
27
|
-
actionpack (= 7.1.
|
|
28
|
-
activejob (= 7.1.
|
|
29
|
-
activerecord (= 7.1.
|
|
30
|
-
activestorage (= 7.1.
|
|
31
|
-
activesupport (= 7.1.
|
|
26
|
+
actionmailbox (7.1.5.2)
|
|
27
|
+
actionpack (= 7.1.5.2)
|
|
28
|
+
activejob (= 7.1.5.2)
|
|
29
|
+
activerecord (= 7.1.5.2)
|
|
30
|
+
activestorage (= 7.1.5.2)
|
|
31
|
+
activesupport (= 7.1.5.2)
|
|
32
32
|
mail (>= 2.7.1)
|
|
33
33
|
net-imap
|
|
34
34
|
net-pop
|
|
35
35
|
net-smtp
|
|
36
|
-
actionmailer (7.1.
|
|
37
|
-
actionpack (= 7.1.
|
|
38
|
-
actionview (= 7.1.
|
|
39
|
-
activejob (= 7.1.
|
|
40
|
-
activesupport (= 7.1.
|
|
36
|
+
actionmailer (7.1.5.2)
|
|
37
|
+
actionpack (= 7.1.5.2)
|
|
38
|
+
actionview (= 7.1.5.2)
|
|
39
|
+
activejob (= 7.1.5.2)
|
|
40
|
+
activesupport (= 7.1.5.2)
|
|
41
41
|
mail (~> 2.5, >= 2.5.4)
|
|
42
42
|
net-imap
|
|
43
43
|
net-pop
|
|
44
44
|
net-smtp
|
|
45
45
|
rails-dom-testing (~> 2.2)
|
|
46
|
-
actionpack (7.1.
|
|
47
|
-
actionview (= 7.1.
|
|
48
|
-
activesupport (= 7.1.
|
|
46
|
+
actionpack (7.1.5.2)
|
|
47
|
+
actionview (= 7.1.5.2)
|
|
48
|
+
activesupport (= 7.1.5.2)
|
|
49
49
|
nokogiri (>= 1.8.5)
|
|
50
50
|
racc
|
|
51
51
|
rack (>= 2.2.4)
|
|
@@ -53,43 +53,46 @@ GEM
|
|
|
53
53
|
rack-test (>= 0.6.3)
|
|
54
54
|
rails-dom-testing (~> 2.2)
|
|
55
55
|
rails-html-sanitizer (~> 1.6)
|
|
56
|
-
actiontext (7.1.
|
|
57
|
-
actionpack (= 7.1.
|
|
58
|
-
activerecord (= 7.1.
|
|
59
|
-
activestorage (= 7.1.
|
|
60
|
-
activesupport (= 7.1.
|
|
56
|
+
actiontext (7.1.5.2)
|
|
57
|
+
actionpack (= 7.1.5.2)
|
|
58
|
+
activerecord (= 7.1.5.2)
|
|
59
|
+
activestorage (= 7.1.5.2)
|
|
60
|
+
activesupport (= 7.1.5.2)
|
|
61
61
|
globalid (>= 0.6.0)
|
|
62
62
|
nokogiri (>= 1.8.5)
|
|
63
|
-
actionview (7.1.
|
|
64
|
-
activesupport (= 7.1.
|
|
63
|
+
actionview (7.1.5.2)
|
|
64
|
+
activesupport (= 7.1.5.2)
|
|
65
65
|
builder (~> 3.1)
|
|
66
66
|
erubi (~> 1.11)
|
|
67
67
|
rails-dom-testing (~> 2.2)
|
|
68
68
|
rails-html-sanitizer (~> 1.6)
|
|
69
|
-
activejob (7.1.
|
|
70
|
-
activesupport (= 7.1.
|
|
69
|
+
activejob (7.1.5.2)
|
|
70
|
+
activesupport (= 7.1.5.2)
|
|
71
71
|
globalid (>= 0.3.6)
|
|
72
|
-
activemodel (7.1.
|
|
73
|
-
activesupport (= 7.1.
|
|
74
|
-
activerecord (7.1.
|
|
75
|
-
activemodel (= 7.1.
|
|
76
|
-
activesupport (= 7.1.
|
|
72
|
+
activemodel (7.1.5.2)
|
|
73
|
+
activesupport (= 7.1.5.2)
|
|
74
|
+
activerecord (7.1.5.2)
|
|
75
|
+
activemodel (= 7.1.5.2)
|
|
76
|
+
activesupport (= 7.1.5.2)
|
|
77
77
|
timeout (>= 0.4.0)
|
|
78
|
-
activestorage (7.1.
|
|
79
|
-
actionpack (= 7.1.
|
|
80
|
-
activejob (= 7.1.
|
|
81
|
-
activerecord (= 7.1.
|
|
82
|
-
activesupport (= 7.1.
|
|
78
|
+
activestorage (7.1.5.2)
|
|
79
|
+
actionpack (= 7.1.5.2)
|
|
80
|
+
activejob (= 7.1.5.2)
|
|
81
|
+
activerecord (= 7.1.5.2)
|
|
82
|
+
activesupport (= 7.1.5.2)
|
|
83
83
|
marcel (~> 1.0)
|
|
84
|
-
activesupport (7.1.
|
|
84
|
+
activesupport (7.1.5.2)
|
|
85
85
|
base64
|
|
86
|
+
benchmark (>= 0.3)
|
|
86
87
|
bigdecimal
|
|
87
88
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
88
89
|
connection_pool (>= 2.2.5)
|
|
89
90
|
drb
|
|
90
91
|
i18n (>= 1.6, < 2)
|
|
92
|
+
logger (>= 1.4.2)
|
|
91
93
|
minitest (>= 5.1)
|
|
92
94
|
mutex_m
|
|
95
|
+
securerandom (>= 0.3)
|
|
93
96
|
tzinfo (~> 2.0)
|
|
94
97
|
appraisal (2.5.0)
|
|
95
98
|
bundler
|
|
@@ -97,36 +100,36 @@ GEM
|
|
|
97
100
|
thor (>= 0.14.0)
|
|
98
101
|
ast (2.4.3)
|
|
99
102
|
base64 (0.3.0)
|
|
100
|
-
|
|
103
|
+
benchmark (0.5.0)
|
|
104
|
+
bigdecimal (4.1.1)
|
|
101
105
|
builder (3.3.0)
|
|
102
106
|
byebug (11.1.3)
|
|
103
107
|
cancancan (3.2.1)
|
|
104
|
-
cgi (0.5.0)
|
|
105
108
|
coderay (1.1.3)
|
|
106
109
|
combustion (1.5.0)
|
|
107
110
|
activesupport (>= 3.0.0)
|
|
108
111
|
railties (>= 3.0.0)
|
|
109
112
|
thor (>= 0.14.6)
|
|
110
|
-
concurrent-ruby (1.3.
|
|
111
|
-
connection_pool (
|
|
113
|
+
concurrent-ruby (1.3.6)
|
|
114
|
+
connection_pool (3.0.2)
|
|
112
115
|
crass (1.0.6)
|
|
113
116
|
csv (3.3.5)
|
|
114
|
-
date (3.
|
|
117
|
+
date (3.5.1)
|
|
115
118
|
diff-lcs (1.6.2)
|
|
116
119
|
drb (2.2.3)
|
|
117
|
-
erb (
|
|
118
|
-
cgi (>= 0.3.3)
|
|
120
|
+
erb (6.0.2)
|
|
119
121
|
erubi (1.13.1)
|
|
120
|
-
globalid (1.
|
|
122
|
+
globalid (1.3.0)
|
|
121
123
|
activesupport (>= 6.1)
|
|
122
|
-
i18n (1.14.
|
|
124
|
+
i18n (1.14.8)
|
|
123
125
|
concurrent-ruby (~> 1.0)
|
|
124
|
-
io-console (0.8.
|
|
125
|
-
irb (1.
|
|
126
|
+
io-console (0.8.2)
|
|
127
|
+
irb (1.17.0)
|
|
126
128
|
pp (>= 0.6.0)
|
|
129
|
+
prism (>= 1.3.0)
|
|
127
130
|
rdoc (>= 4.0.0)
|
|
128
131
|
reline (>= 0.4.2)
|
|
129
|
-
json (2.
|
|
132
|
+
json (2.19.3)
|
|
130
133
|
language_server-protocol (3.17.0.5)
|
|
131
134
|
license_finder (7.2.1)
|
|
132
135
|
bundler
|
|
@@ -138,20 +141,23 @@ GEM
|
|
|
138
141
|
xml-simple (~> 1.1.9)
|
|
139
142
|
lint_roller (1.1.0)
|
|
140
143
|
logger (1.7.0)
|
|
141
|
-
loofah (2.
|
|
144
|
+
loofah (2.25.1)
|
|
142
145
|
crass (~> 1.0.2)
|
|
143
146
|
nokogiri (>= 1.12.0)
|
|
144
|
-
mail (2.
|
|
147
|
+
mail (2.9.0)
|
|
148
|
+
logger
|
|
145
149
|
mini_mime (>= 0.1.1)
|
|
146
150
|
net-imap
|
|
147
151
|
net-pop
|
|
148
152
|
net-smtp
|
|
149
|
-
marcel (1.
|
|
153
|
+
marcel (1.2.1)
|
|
150
154
|
method_source (1.1.0)
|
|
151
155
|
mini_mime (1.1.5)
|
|
152
|
-
minitest (
|
|
156
|
+
minitest (6.0.4)
|
|
157
|
+
drb (~> 2.0)
|
|
158
|
+
prism (~> 1.5)
|
|
153
159
|
mutex_m (0.3.0)
|
|
154
|
-
net-imap (0.4
|
|
160
|
+
net-imap (0.6.4)
|
|
155
161
|
date
|
|
156
162
|
net-protocol
|
|
157
163
|
net-pop (0.1.2)
|
|
@@ -160,91 +166,98 @@ GEM
|
|
|
160
166
|
timeout
|
|
161
167
|
net-smtp (0.5.1)
|
|
162
168
|
net-protocol
|
|
163
|
-
nio4r (2.7.
|
|
164
|
-
nokogiri (1.
|
|
169
|
+
nio4r (2.7.5)
|
|
170
|
+
nokogiri (1.19.2-aarch64-linux-gnu)
|
|
165
171
|
racc (~> 1.4)
|
|
166
|
-
nokogiri (1.
|
|
172
|
+
nokogiri (1.19.2-aarch64-linux-musl)
|
|
167
173
|
racc (~> 1.4)
|
|
168
|
-
nokogiri (1.
|
|
174
|
+
nokogiri (1.19.2-arm-linux-gnu)
|
|
169
175
|
racc (~> 1.4)
|
|
170
|
-
nokogiri (1.
|
|
176
|
+
nokogiri (1.19.2-arm-linux-musl)
|
|
171
177
|
racc (~> 1.4)
|
|
172
|
-
nokogiri (1.
|
|
178
|
+
nokogiri (1.19.2-arm64-darwin)
|
|
173
179
|
racc (~> 1.4)
|
|
174
|
-
|
|
175
|
-
|
|
180
|
+
nokogiri (1.19.2-x86_64-darwin)
|
|
181
|
+
racc (~> 1.4)
|
|
182
|
+
nokogiri (1.19.2-x86_64-linux-gnu)
|
|
183
|
+
racc (~> 1.4)
|
|
184
|
+
nokogiri (1.19.2-x86_64-linux-musl)
|
|
185
|
+
racc (~> 1.4)
|
|
186
|
+
parallel (1.28.0)
|
|
187
|
+
parser (3.3.11.1)
|
|
176
188
|
ast (~> 2.4.1)
|
|
177
189
|
racc
|
|
178
|
-
pp (0.6.
|
|
190
|
+
pp (0.6.3)
|
|
179
191
|
prettyprint
|
|
180
192
|
prettyprint (0.2.0)
|
|
181
|
-
prism (1.
|
|
193
|
+
prism (1.9.0)
|
|
182
194
|
pry (0.14.2)
|
|
183
195
|
coderay (~> 1.1)
|
|
184
196
|
method_source (~> 1.0)
|
|
185
197
|
pry-byebug (3.10.1)
|
|
186
198
|
byebug (~> 11.0)
|
|
187
199
|
pry (>= 0.13, < 0.15)
|
|
188
|
-
psych (5.
|
|
200
|
+
psych (5.3.1)
|
|
189
201
|
date
|
|
190
202
|
stringio
|
|
191
203
|
racc (1.8.1)
|
|
192
|
-
rack (3.2.
|
|
193
|
-
rack-session (2.1.
|
|
204
|
+
rack (3.2.6)
|
|
205
|
+
rack-session (2.1.2)
|
|
194
206
|
base64 (>= 0.1.0)
|
|
195
207
|
rack (>= 3.0.0)
|
|
196
208
|
rack-test (2.2.0)
|
|
197
209
|
rack (>= 1.3)
|
|
198
|
-
rackup (2.
|
|
210
|
+
rackup (2.3.1)
|
|
199
211
|
rack (>= 3)
|
|
200
|
-
rails (7.1.
|
|
201
|
-
actioncable (= 7.1.
|
|
202
|
-
actionmailbox (= 7.1.
|
|
203
|
-
actionmailer (= 7.1.
|
|
204
|
-
actionpack (= 7.1.
|
|
205
|
-
actiontext (= 7.1.
|
|
206
|
-
actionview (= 7.1.
|
|
207
|
-
activejob (= 7.1.
|
|
208
|
-
activemodel (= 7.1.
|
|
209
|
-
activerecord (= 7.1.
|
|
210
|
-
activestorage (= 7.1.
|
|
211
|
-
activesupport (= 7.1.
|
|
212
|
+
rails (7.1.5.2)
|
|
213
|
+
actioncable (= 7.1.5.2)
|
|
214
|
+
actionmailbox (= 7.1.5.2)
|
|
215
|
+
actionmailer (= 7.1.5.2)
|
|
216
|
+
actionpack (= 7.1.5.2)
|
|
217
|
+
actiontext (= 7.1.5.2)
|
|
218
|
+
actionview (= 7.1.5.2)
|
|
219
|
+
activejob (= 7.1.5.2)
|
|
220
|
+
activemodel (= 7.1.5.2)
|
|
221
|
+
activerecord (= 7.1.5.2)
|
|
222
|
+
activestorage (= 7.1.5.2)
|
|
223
|
+
activesupport (= 7.1.5.2)
|
|
212
224
|
bundler (>= 1.15.0)
|
|
213
|
-
railties (= 7.1.
|
|
225
|
+
railties (= 7.1.5.2)
|
|
214
226
|
rails-dom-testing (2.3.0)
|
|
215
227
|
activesupport (>= 5.0.0)
|
|
216
228
|
minitest
|
|
217
229
|
nokogiri (>= 1.6)
|
|
218
|
-
rails-html-sanitizer (1.
|
|
219
|
-
loofah (~> 2.
|
|
230
|
+
rails-html-sanitizer (1.7.0)
|
|
231
|
+
loofah (~> 2.25)
|
|
220
232
|
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)
|
|
221
|
-
railties (7.1.
|
|
222
|
-
actionpack (= 7.1.
|
|
223
|
-
activesupport (= 7.1.
|
|
233
|
+
railties (7.1.5.2)
|
|
234
|
+
actionpack (= 7.1.5.2)
|
|
235
|
+
activesupport (= 7.1.5.2)
|
|
224
236
|
irb
|
|
225
237
|
rackup (>= 1.0.0)
|
|
226
238
|
rake (>= 12.2)
|
|
227
239
|
thor (~> 1.0, >= 1.2.2)
|
|
228
240
|
zeitwerk (~> 2.6)
|
|
229
241
|
rainbow (3.1.1)
|
|
230
|
-
rake (13.
|
|
231
|
-
rdoc (
|
|
242
|
+
rake (13.4.1)
|
|
243
|
+
rdoc (7.2.0)
|
|
232
244
|
erb
|
|
233
245
|
psych (>= 4.0.0)
|
|
234
|
-
|
|
235
|
-
|
|
246
|
+
tsort
|
|
247
|
+
regexp_parser (2.12.0)
|
|
248
|
+
reline (0.6.3)
|
|
236
249
|
io-console (~> 0.5)
|
|
237
|
-
rexml (3.4.
|
|
238
|
-
rspec (3.13.
|
|
250
|
+
rexml (3.4.4)
|
|
251
|
+
rspec (3.13.2)
|
|
239
252
|
rspec-core (~> 3.13.0)
|
|
240
253
|
rspec-expectations (~> 3.13.0)
|
|
241
254
|
rspec-mocks (~> 3.13.0)
|
|
242
|
-
rspec-core (3.13.
|
|
255
|
+
rspec-core (3.13.6)
|
|
243
256
|
rspec-support (~> 3.13.0)
|
|
244
257
|
rspec-expectations (3.13.5)
|
|
245
258
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
246
259
|
rspec-support (~> 3.13.0)
|
|
247
|
-
rspec-mocks (3.13.
|
|
260
|
+
rspec-mocks (3.13.8)
|
|
248
261
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
249
262
|
rspec-support (~> 3.13.0)
|
|
250
263
|
rspec-rails (6.1.5)
|
|
@@ -255,8 +268,8 @@ GEM
|
|
|
255
268
|
rspec-expectations (~> 3.13)
|
|
256
269
|
rspec-mocks (~> 3.13)
|
|
257
270
|
rspec-support (~> 3.13)
|
|
258
|
-
rspec-support (3.13.
|
|
259
|
-
rubocop (1.
|
|
271
|
+
rspec-support (3.13.7)
|
|
272
|
+
rubocop (1.82.1)
|
|
260
273
|
json (~> 2.3)
|
|
261
274
|
language_server-protocol (~> 3.17.0.2)
|
|
262
275
|
lint_roller (~> 1.1.0)
|
|
@@ -264,45 +277,49 @@ GEM
|
|
|
264
277
|
parser (>= 3.3.0.2)
|
|
265
278
|
rainbow (>= 2.2.2, < 4.0)
|
|
266
279
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
267
|
-
rubocop-ast (>= 1.
|
|
280
|
+
rubocop-ast (>= 1.48.0, < 2.0)
|
|
268
281
|
ruby-progressbar (~> 1.7)
|
|
269
282
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
270
|
-
rubocop-ast (1.
|
|
283
|
+
rubocop-ast (1.49.1)
|
|
271
284
|
parser (>= 3.3.7.2)
|
|
272
|
-
prism (~> 1.
|
|
273
|
-
rubocop-performance (1.
|
|
285
|
+
prism (~> 1.7)
|
|
286
|
+
rubocop-performance (1.26.1)
|
|
274
287
|
lint_roller (~> 1.1)
|
|
275
|
-
rubocop (>= 1.
|
|
276
|
-
rubocop-ast (>= 1.
|
|
277
|
-
rubocop-rails (2.
|
|
288
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
289
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
290
|
+
rubocop-rails (2.34.3)
|
|
278
291
|
activesupport (>= 4.2.0)
|
|
279
292
|
lint_roller (~> 1.1)
|
|
280
293
|
rack (>= 1.1)
|
|
281
|
-
rubocop (>= 1.
|
|
282
|
-
rubocop-ast (>= 1.
|
|
294
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
295
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
283
296
|
rubocop-rake (0.7.1)
|
|
284
297
|
lint_roller (~> 1.1)
|
|
285
298
|
rubocop (>= 1.72.1)
|
|
286
|
-
rubocop-rspec (3.
|
|
299
|
+
rubocop-rspec (3.9.0)
|
|
287
300
|
lint_roller (~> 1.1)
|
|
288
|
-
rubocop (~> 1.
|
|
301
|
+
rubocop (~> 1.81)
|
|
289
302
|
ruby-progressbar (1.13.0)
|
|
290
303
|
rubyzip (2.4.1)
|
|
291
|
-
securerandom (0.
|
|
292
|
-
sqlite3 (
|
|
293
|
-
sqlite3 (
|
|
294
|
-
sqlite3 (
|
|
295
|
-
sqlite3 (
|
|
296
|
-
sqlite3 (
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
304
|
+
securerandom (0.4.1)
|
|
305
|
+
sqlite3 (2.9.2-aarch64-linux-gnu)
|
|
306
|
+
sqlite3 (2.9.2-aarch64-linux-musl)
|
|
307
|
+
sqlite3 (2.9.2-arm-linux-gnu)
|
|
308
|
+
sqlite3 (2.9.2-arm-linux-musl)
|
|
309
|
+
sqlite3 (2.9.2-arm64-darwin)
|
|
310
|
+
sqlite3 (2.9.2-x86_64-darwin)
|
|
311
|
+
sqlite3 (2.9.2-x86_64-linux-gnu)
|
|
312
|
+
sqlite3 (2.9.2-x86_64-linux-musl)
|
|
313
|
+
stringio (3.2.0)
|
|
314
|
+
thor (1.5.0)
|
|
315
|
+
timeout (0.6.1)
|
|
316
|
+
tomlrb (2.0.4)
|
|
317
|
+
tsort (0.2.0)
|
|
301
318
|
tzinfo (2.0.6)
|
|
302
319
|
concurrent-ruby (~> 1.0)
|
|
303
|
-
unicode-display_width (3.
|
|
304
|
-
unicode-emoji (~> 4.
|
|
305
|
-
unicode-emoji (4.0
|
|
320
|
+
unicode-display_width (3.2.0)
|
|
321
|
+
unicode-emoji (~> 4.1)
|
|
322
|
+
unicode-emoji (4.2.0)
|
|
306
323
|
websocket-driver (0.8.0)
|
|
307
324
|
base64
|
|
308
325
|
websocket-extensions (>= 0.1.0)
|
|
@@ -310,7 +327,7 @@ GEM
|
|
|
310
327
|
with_env (1.1.0)
|
|
311
328
|
xml-simple (1.1.9)
|
|
312
329
|
rexml
|
|
313
|
-
zeitwerk (2.
|
|
330
|
+
zeitwerk (2.7.5)
|
|
314
331
|
|
|
315
332
|
PLATFORMS
|
|
316
333
|
aarch64-linux
|
|
@@ -328,27 +345,18 @@ PLATFORMS
|
|
|
328
345
|
DEPENDENCIES
|
|
329
346
|
activerecord (>= 5)
|
|
330
347
|
appraisal (~> 2.5.0)
|
|
331
|
-
base64
|
|
332
|
-
bigdecimal
|
|
333
348
|
bundler (~> 2.1)
|
|
334
349
|
combustion (~> 1.3)
|
|
335
350
|
consent!
|
|
336
|
-
erb (< 5.1)
|
|
337
351
|
license_finder (>= 7.0)
|
|
338
|
-
logger
|
|
339
|
-
mutex_m
|
|
340
|
-
net-imap (< 0.5.0)
|
|
341
|
-
nokogiri (< 1.19)
|
|
342
352
|
pry (>= 0.14.2)
|
|
343
353
|
pry-byebug (= 3.10.1)
|
|
344
|
-
rails (= 7.1.
|
|
354
|
+
rails (= 7.1.5.2)
|
|
345
355
|
rake (~> 13)
|
|
346
356
|
rspec (~> 3.0)
|
|
347
357
|
rspec-rails (~> 6.1.5)
|
|
348
358
|
rubocop-powerhome!
|
|
349
|
-
|
|
350
|
-
sqlite3 (~> 1.7.3)
|
|
351
|
-
zeitwerk (< 2.7.0)
|
|
359
|
+
sqlite3 (~> 2.9)
|
|
352
360
|
|
|
353
361
|
BUNDLED WITH
|
|
354
362
|
2.5.23
|
data/gemfiles/rails_7_2.gemfile
CHANGED
|
@@ -1,17 +1,10 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# This file was generated by Appraisal
|
|
2
4
|
|
|
3
5
|
source "https://rubygems.org"
|
|
4
6
|
|
|
5
|
-
gem "base64"
|
|
6
|
-
gem "bigdecimal"
|
|
7
|
-
gem "erb", "< 5.1"
|
|
8
|
-
gem "logger"
|
|
9
|
-
gem "mutex_m"
|
|
10
|
-
gem "net-imap", "< 0.5.0"
|
|
11
|
-
gem "nokogiri", "< 1.19"
|
|
12
|
-
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
|
13
|
-
gem "securerandom", "< 0.4"
|
|
14
|
-
gem "zeitwerk", "< 2.7.0"
|
|
15
7
|
gem "rails", "7.2.2.1"
|
|
8
|
+
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
|
16
9
|
|
|
17
10
|
gemspec path: "../"
|