authorized_persona 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +10 -1
- data/.rubocop.yml +6 -0
- data/.rubocop_todo.yml +23 -27
- data/Appraisals +10 -3
- data/Gemfile +4 -0
- data/Gemfile.lock +130 -80
- data/Rakefile +14 -4
- data/authorized_persona.gemspec +1 -1
- data/gemfiles/rails_6_1.gemfile +4 -3
- data/gemfiles/rails_6_1.gemfile.lock +82 -68
- data/gemfiles/rails_7_0.gemfile +4 -3
- data/gemfiles/rails_7_0.gemfile.lock +82 -68
- data/gemfiles/rails_7_1.gemfile +3 -3
- data/gemfiles/rails_7_1.gemfile.lock +80 -62
- data/gemfiles/rails_7_2.gemfile +10 -0
- data/gemfiles/rails_7_2.gemfile.lock +201 -0
- data/gemfiles/rails_8_0.gemfile +10 -0
- data/gemfiles/rails_8_0.gemfile.lock +202 -0
- data/lib/authorized_persona/version.rb +1 -1
- metadata +10 -6
@@ -1,15 +1,15 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
authorized_persona (0.
|
5
|
-
railties (>= 6.1, <
|
4
|
+
authorized_persona (0.12.0)
|
5
|
+
railties (>= 6.1, < 8.1)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (7.1.
|
11
|
-
actionview (= 7.1.
|
12
|
-
activesupport (= 7.1.
|
10
|
+
actionpack (7.1.5.1)
|
11
|
+
actionview (= 7.1.5.1)
|
12
|
+
activesupport (= 7.1.5.1)
|
13
13
|
nokogiri (>= 1.8.5)
|
14
14
|
racc
|
15
15
|
rack (>= 2.2.4)
|
@@ -17,23 +17,26 @@ GEM
|
|
17
17
|
rack-test (>= 0.6.3)
|
18
18
|
rails-dom-testing (~> 2.2)
|
19
19
|
rails-html-sanitizer (~> 1.6)
|
20
|
-
actionview (7.1.
|
21
|
-
activesupport (= 7.1.
|
20
|
+
actionview (7.1.5.1)
|
21
|
+
activesupport (= 7.1.5.1)
|
22
22
|
builder (~> 3.1)
|
23
23
|
erubi (~> 1.11)
|
24
24
|
rails-dom-testing (~> 2.2)
|
25
25
|
rails-html-sanitizer (~> 1.6)
|
26
|
-
activemodel (7.1.
|
27
|
-
activesupport (= 7.1.
|
28
|
-
activesupport (7.1.
|
26
|
+
activemodel (7.1.5.1)
|
27
|
+
activesupport (= 7.1.5.1)
|
28
|
+
activesupport (7.1.5.1)
|
29
29
|
base64
|
30
|
+
benchmark (>= 0.3)
|
30
31
|
bigdecimal
|
31
32
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
32
33
|
connection_pool (>= 2.2.5)
|
33
34
|
drb
|
34
35
|
i18n (>= 1.6, < 2)
|
36
|
+
logger (>= 1.4.2)
|
35
37
|
minitest (>= 5.1)
|
36
38
|
mutex_m
|
39
|
+
securerandom (>= 0.3)
|
37
40
|
tzinfo (~> 2.0)
|
38
41
|
appraisal (2.5.0)
|
39
42
|
bundler
|
@@ -41,62 +44,71 @@ GEM
|
|
41
44
|
thor (>= 0.14.0)
|
42
45
|
ast (2.4.2)
|
43
46
|
base64 (0.2.0)
|
44
|
-
|
47
|
+
benchmark (0.4.0)
|
48
|
+
betterlint (1.16.0)
|
45
49
|
rubocop (~> 1.62.0)
|
50
|
+
rubocop-graphql (~> 1.5.0)
|
46
51
|
rubocop-performance (~> 1.21.0)
|
47
52
|
rubocop-rails (~> 2.24.0)
|
48
53
|
rubocop-rake (~> 0.6.0)
|
49
54
|
rubocop-rspec (~> 2.28.0)
|
50
|
-
bigdecimal (3.1.
|
51
|
-
builder (3.
|
52
|
-
concurrent-ruby (1.
|
53
|
-
connection_pool (2.
|
55
|
+
bigdecimal (3.1.9)
|
56
|
+
builder (3.3.0)
|
57
|
+
concurrent-ruby (1.3.5)
|
58
|
+
connection_pool (2.5.0)
|
54
59
|
crass (1.0.6)
|
60
|
+
date (3.4.1)
|
55
61
|
diff-lcs (1.5.1)
|
56
62
|
drb (2.2.1)
|
57
|
-
erubi (1.
|
58
|
-
i18n (1.14.
|
63
|
+
erubi (1.13.1)
|
64
|
+
i18n (1.14.7)
|
59
65
|
concurrent-ruby (~> 1.0)
|
60
|
-
io-console (0.
|
61
|
-
irb (1.
|
62
|
-
|
66
|
+
io-console (0.8.0)
|
67
|
+
irb (1.15.0)
|
68
|
+
pp (>= 0.6.0)
|
69
|
+
rdoc (>= 4.0.0)
|
63
70
|
reline (>= 0.4.2)
|
64
|
-
json (2.
|
71
|
+
json (2.9.1)
|
65
72
|
language_server-protocol (3.17.0.3)
|
66
|
-
|
73
|
+
logger (1.6.5)
|
74
|
+
loofah (2.24.0)
|
67
75
|
crass (~> 1.0.2)
|
68
76
|
nokogiri (>= 1.12.0)
|
69
|
-
minitest (5.
|
70
|
-
mutex_m (0.
|
71
|
-
nokogiri (1.
|
77
|
+
minitest (5.25.4)
|
78
|
+
mutex_m (0.3.0)
|
79
|
+
nokogiri (1.17.2-arm64-darwin)
|
72
80
|
racc (~> 1.4)
|
73
|
-
nokogiri (1.
|
81
|
+
nokogiri (1.17.2-x86_64-linux)
|
74
82
|
racc (~> 1.4)
|
75
|
-
parallel (1.
|
76
|
-
parser (3.3.0
|
83
|
+
parallel (1.26.3)
|
84
|
+
parser (3.3.7.0)
|
77
85
|
ast (~> 2.4.1)
|
78
86
|
racc
|
79
|
-
|
87
|
+
pp (0.6.2)
|
88
|
+
prettyprint
|
89
|
+
prettyprint (0.2.0)
|
90
|
+
psych (5.2.3)
|
91
|
+
date
|
80
92
|
stringio
|
81
|
-
racc (1.
|
82
|
-
rack (3.
|
83
|
-
rack-session (2.
|
93
|
+
racc (1.8.1)
|
94
|
+
rack (3.1.8)
|
95
|
+
rack-session (2.1.0)
|
96
|
+
base64 (>= 0.1.0)
|
84
97
|
rack (>= 3.0.0)
|
85
|
-
rack-test (2.
|
98
|
+
rack-test (2.2.0)
|
86
99
|
rack (>= 1.3)
|
87
|
-
rackup (2.1
|
100
|
+
rackup (2.2.1)
|
88
101
|
rack (>= 3)
|
89
|
-
webrick (~> 1.8)
|
90
102
|
rails-dom-testing (2.2.0)
|
91
103
|
activesupport (>= 5.0.0)
|
92
104
|
minitest
|
93
105
|
nokogiri (>= 1.6)
|
94
|
-
rails-html-sanitizer (1.6.
|
106
|
+
rails-html-sanitizer (1.6.2)
|
95
107
|
loofah (~> 2.21)
|
96
|
-
nokogiri (
|
97
|
-
railties (7.1.
|
98
|
-
actionpack (= 7.1.
|
99
|
-
activesupport (= 7.1.
|
108
|
+
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)
|
109
|
+
railties (7.1.5.1)
|
110
|
+
actionpack (= 7.1.5.1)
|
111
|
+
activesupport (= 7.1.5.1)
|
100
112
|
irb
|
101
113
|
rackup (>= 1.0.0)
|
102
114
|
rake (>= 12.2)
|
@@ -104,25 +116,25 @@ GEM
|
|
104
116
|
zeitwerk (~> 2.6)
|
105
117
|
rainbow (3.1.1)
|
106
118
|
rake (13.2.1)
|
107
|
-
rdoc (6.
|
119
|
+
rdoc (6.11.0)
|
108
120
|
psych (>= 4.0.0)
|
109
|
-
regexp_parser (2.
|
110
|
-
reline (0.
|
121
|
+
regexp_parser (2.10.0)
|
122
|
+
reline (0.6.0)
|
111
123
|
io-console (~> 0.5)
|
112
|
-
rexml (3.
|
124
|
+
rexml (3.4.0)
|
113
125
|
rspec (3.13.0)
|
114
126
|
rspec-core (~> 3.13.0)
|
115
127
|
rspec-expectations (~> 3.13.0)
|
116
128
|
rspec-mocks (~> 3.13.0)
|
117
|
-
rspec-core (3.13.
|
129
|
+
rspec-core (3.13.2)
|
118
130
|
rspec-support (~> 3.13.0)
|
119
|
-
rspec-expectations (3.13.
|
131
|
+
rspec-expectations (3.13.3)
|
120
132
|
diff-lcs (>= 1.2.0, < 2.0)
|
121
133
|
rspec-support (~> 3.13.0)
|
122
|
-
rspec-mocks (3.13.
|
134
|
+
rspec-mocks (3.13.2)
|
123
135
|
diff-lcs (>= 1.2.0, < 2.0)
|
124
136
|
rspec-support (~> 3.13.0)
|
125
|
-
rspec-support (3.13.
|
137
|
+
rspec-support (3.13.2)
|
126
138
|
rubocop (1.62.1)
|
127
139
|
json (~> 2.3)
|
128
140
|
language_server-protocol (>= 3.17.0)
|
@@ -134,13 +146,15 @@ GEM
|
|
134
146
|
rubocop-ast (>= 1.31.1, < 2.0)
|
135
147
|
ruby-progressbar (~> 1.7)
|
136
148
|
unicode-display_width (>= 2.4.0, < 3.0)
|
137
|
-
rubocop-ast (1.
|
138
|
-
parser (>= 3.3.0
|
139
|
-
rubocop-capybara (2.
|
149
|
+
rubocop-ast (1.37.0)
|
150
|
+
parser (>= 3.3.1.0)
|
151
|
+
rubocop-capybara (2.21.0)
|
140
152
|
rubocop (~> 1.41)
|
141
|
-
rubocop-factory_bot (2.
|
142
|
-
rubocop (~> 1.
|
143
|
-
rubocop-
|
153
|
+
rubocop-factory_bot (2.26.1)
|
154
|
+
rubocop (~> 1.61)
|
155
|
+
rubocop-graphql (1.5.4)
|
156
|
+
rubocop (>= 1.50, < 2)
|
157
|
+
rubocop-performance (1.21.1)
|
144
158
|
rubocop (>= 1.48.1, < 2.0)
|
145
159
|
rubocop-ast (>= 1.31.1, < 2.0)
|
146
160
|
rubocop-rails (2.24.1)
|
@@ -155,30 +169,34 @@ GEM
|
|
155
169
|
rubocop-capybara (~> 2.17)
|
156
170
|
rubocop-factory_bot (~> 2.22)
|
157
171
|
rubocop-rspec_rails (~> 2.28)
|
158
|
-
rubocop-rspec_rails (2.
|
159
|
-
rubocop (~> 1.
|
172
|
+
rubocop-rspec_rails (2.29.1)
|
173
|
+
rubocop (~> 1.61)
|
160
174
|
ruby-progressbar (1.13.0)
|
161
|
-
|
162
|
-
|
175
|
+
securerandom (0.3.2)
|
176
|
+
stringio (3.1.2)
|
177
|
+
thor (1.3.2)
|
163
178
|
tzinfo (2.0.6)
|
164
179
|
concurrent-ruby (~> 1.0)
|
165
|
-
unicode-display_width (2.
|
166
|
-
|
167
|
-
zeitwerk (2.6.13)
|
180
|
+
unicode-display_width (2.6.0)
|
181
|
+
zeitwerk (2.6.18)
|
168
182
|
|
169
183
|
PLATFORMS
|
170
184
|
arm64-darwin-22
|
185
|
+
arm64-darwin-23
|
171
186
|
x86_64-linux
|
172
187
|
|
173
188
|
DEPENDENCIES
|
174
|
-
activemodel (
|
189
|
+
activemodel (>= 6.1, < 8.1)
|
175
190
|
appraisal
|
176
191
|
authorized_persona!
|
177
192
|
betterlint
|
178
193
|
bundler
|
194
|
+
nokogiri (~> 1.17.2)
|
179
195
|
railties (~> 7.1.0)
|
180
196
|
rake
|
181
197
|
rspec (~> 3.0)
|
198
|
+
securerandom (~> 0.3.2)
|
199
|
+
zeitwerk (~> 2.6.18)
|
182
200
|
|
183
201
|
BUNDLED WITH
|
184
202
|
2.4.21
|
@@ -0,0 +1,201 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
authorized_persona (0.12.0)
|
5
|
+
railties (>= 6.1, < 8.1)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actionpack (7.2.2.1)
|
11
|
+
actionview (= 7.2.2.1)
|
12
|
+
activesupport (= 7.2.2.1)
|
13
|
+
nokogiri (>= 1.8.5)
|
14
|
+
racc
|
15
|
+
rack (>= 2.2.4, < 3.2)
|
16
|
+
rack-session (>= 1.0.1)
|
17
|
+
rack-test (>= 0.6.3)
|
18
|
+
rails-dom-testing (~> 2.2)
|
19
|
+
rails-html-sanitizer (~> 1.6)
|
20
|
+
useragent (~> 0.16)
|
21
|
+
actionview (7.2.2.1)
|
22
|
+
activesupport (= 7.2.2.1)
|
23
|
+
builder (~> 3.1)
|
24
|
+
erubi (~> 1.11)
|
25
|
+
rails-dom-testing (~> 2.2)
|
26
|
+
rails-html-sanitizer (~> 1.6)
|
27
|
+
activemodel (7.2.2.1)
|
28
|
+
activesupport (= 7.2.2.1)
|
29
|
+
activesupport (7.2.2.1)
|
30
|
+
base64
|
31
|
+
benchmark (>= 0.3)
|
32
|
+
bigdecimal
|
33
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
34
|
+
connection_pool (>= 2.2.5)
|
35
|
+
drb
|
36
|
+
i18n (>= 1.6, < 2)
|
37
|
+
logger (>= 1.4.2)
|
38
|
+
minitest (>= 5.1)
|
39
|
+
securerandom (>= 0.3)
|
40
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
41
|
+
appraisal (2.5.0)
|
42
|
+
bundler
|
43
|
+
rake
|
44
|
+
thor (>= 0.14.0)
|
45
|
+
ast (2.4.2)
|
46
|
+
base64 (0.2.0)
|
47
|
+
benchmark (0.4.0)
|
48
|
+
betterlint (1.16.0)
|
49
|
+
rubocop (~> 1.62.0)
|
50
|
+
rubocop-graphql (~> 1.5.0)
|
51
|
+
rubocop-performance (~> 1.21.0)
|
52
|
+
rubocop-rails (~> 2.24.0)
|
53
|
+
rubocop-rake (~> 0.6.0)
|
54
|
+
rubocop-rspec (~> 2.28.0)
|
55
|
+
bigdecimal (3.1.9)
|
56
|
+
builder (3.3.0)
|
57
|
+
concurrent-ruby (1.3.5)
|
58
|
+
connection_pool (2.5.0)
|
59
|
+
crass (1.0.6)
|
60
|
+
date (3.4.1)
|
61
|
+
diff-lcs (1.5.1)
|
62
|
+
drb (2.2.1)
|
63
|
+
erubi (1.13.1)
|
64
|
+
i18n (1.14.7)
|
65
|
+
concurrent-ruby (~> 1.0)
|
66
|
+
io-console (0.8.0)
|
67
|
+
irb (1.15.0)
|
68
|
+
pp (>= 0.6.0)
|
69
|
+
rdoc (>= 4.0.0)
|
70
|
+
reline (>= 0.4.2)
|
71
|
+
json (2.9.1)
|
72
|
+
language_server-protocol (3.17.0.3)
|
73
|
+
logger (1.6.5)
|
74
|
+
loofah (2.24.0)
|
75
|
+
crass (~> 1.0.2)
|
76
|
+
nokogiri (>= 1.12.0)
|
77
|
+
minitest (5.25.4)
|
78
|
+
nokogiri (1.17.2-arm64-darwin)
|
79
|
+
racc (~> 1.4)
|
80
|
+
nokogiri (1.17.2-x86_64-linux)
|
81
|
+
racc (~> 1.4)
|
82
|
+
parallel (1.26.3)
|
83
|
+
parser (3.3.7.0)
|
84
|
+
ast (~> 2.4.1)
|
85
|
+
racc
|
86
|
+
pp (0.6.2)
|
87
|
+
prettyprint
|
88
|
+
prettyprint (0.2.0)
|
89
|
+
psych (5.2.3)
|
90
|
+
date
|
91
|
+
stringio
|
92
|
+
racc (1.8.1)
|
93
|
+
rack (3.1.8)
|
94
|
+
rack-session (2.1.0)
|
95
|
+
base64 (>= 0.1.0)
|
96
|
+
rack (>= 3.0.0)
|
97
|
+
rack-test (2.2.0)
|
98
|
+
rack (>= 1.3)
|
99
|
+
rackup (2.2.1)
|
100
|
+
rack (>= 3)
|
101
|
+
rails-dom-testing (2.2.0)
|
102
|
+
activesupport (>= 5.0.0)
|
103
|
+
minitest
|
104
|
+
nokogiri (>= 1.6)
|
105
|
+
rails-html-sanitizer (1.6.2)
|
106
|
+
loofah (~> 2.21)
|
107
|
+
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)
|
108
|
+
railties (7.2.2.1)
|
109
|
+
actionpack (= 7.2.2.1)
|
110
|
+
activesupport (= 7.2.2.1)
|
111
|
+
irb (~> 1.13)
|
112
|
+
rackup (>= 1.0.0)
|
113
|
+
rake (>= 12.2)
|
114
|
+
thor (~> 1.0, >= 1.2.2)
|
115
|
+
zeitwerk (~> 2.6)
|
116
|
+
rainbow (3.1.1)
|
117
|
+
rake (13.2.1)
|
118
|
+
rdoc (6.11.0)
|
119
|
+
psych (>= 4.0.0)
|
120
|
+
regexp_parser (2.10.0)
|
121
|
+
reline (0.6.0)
|
122
|
+
io-console (~> 0.5)
|
123
|
+
rexml (3.4.0)
|
124
|
+
rspec (3.13.0)
|
125
|
+
rspec-core (~> 3.13.0)
|
126
|
+
rspec-expectations (~> 3.13.0)
|
127
|
+
rspec-mocks (~> 3.13.0)
|
128
|
+
rspec-core (3.13.2)
|
129
|
+
rspec-support (~> 3.13.0)
|
130
|
+
rspec-expectations (3.13.3)
|
131
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
132
|
+
rspec-support (~> 3.13.0)
|
133
|
+
rspec-mocks (3.13.2)
|
134
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
135
|
+
rspec-support (~> 3.13.0)
|
136
|
+
rspec-support (3.13.2)
|
137
|
+
rubocop (1.62.1)
|
138
|
+
json (~> 2.3)
|
139
|
+
language_server-protocol (>= 3.17.0)
|
140
|
+
parallel (~> 1.10)
|
141
|
+
parser (>= 3.3.0.2)
|
142
|
+
rainbow (>= 2.2.2, < 4.0)
|
143
|
+
regexp_parser (>= 1.8, < 3.0)
|
144
|
+
rexml (>= 3.2.5, < 4.0)
|
145
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
146
|
+
ruby-progressbar (~> 1.7)
|
147
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
148
|
+
rubocop-ast (1.37.0)
|
149
|
+
parser (>= 3.3.1.0)
|
150
|
+
rubocop-capybara (2.21.0)
|
151
|
+
rubocop (~> 1.41)
|
152
|
+
rubocop-factory_bot (2.26.1)
|
153
|
+
rubocop (~> 1.61)
|
154
|
+
rubocop-graphql (1.5.4)
|
155
|
+
rubocop (>= 1.50, < 2)
|
156
|
+
rubocop-performance (1.21.1)
|
157
|
+
rubocop (>= 1.48.1, < 2.0)
|
158
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
159
|
+
rubocop-rails (2.24.1)
|
160
|
+
activesupport (>= 4.2.0)
|
161
|
+
rack (>= 1.1)
|
162
|
+
rubocop (>= 1.33.0, < 2.0)
|
163
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
164
|
+
rubocop-rake (0.6.0)
|
165
|
+
rubocop (~> 1.0)
|
166
|
+
rubocop-rspec (2.28.0)
|
167
|
+
rubocop (~> 1.40)
|
168
|
+
rubocop-capybara (~> 2.17)
|
169
|
+
rubocop-factory_bot (~> 2.22)
|
170
|
+
rubocop-rspec_rails (~> 2.28)
|
171
|
+
rubocop-rspec_rails (2.29.1)
|
172
|
+
rubocop (~> 1.61)
|
173
|
+
ruby-progressbar (1.13.0)
|
174
|
+
securerandom (0.3.2)
|
175
|
+
stringio (3.1.2)
|
176
|
+
thor (1.3.2)
|
177
|
+
tzinfo (2.0.6)
|
178
|
+
concurrent-ruby (~> 1.0)
|
179
|
+
unicode-display_width (2.6.0)
|
180
|
+
useragent (0.16.11)
|
181
|
+
zeitwerk (2.6.18)
|
182
|
+
|
183
|
+
PLATFORMS
|
184
|
+
arm64-darwin-23
|
185
|
+
x86_64-linux
|
186
|
+
|
187
|
+
DEPENDENCIES
|
188
|
+
activemodel (>= 6.1, < 8.1)
|
189
|
+
appraisal
|
190
|
+
authorized_persona!
|
191
|
+
betterlint
|
192
|
+
bundler
|
193
|
+
nokogiri (~> 1.17.2)
|
194
|
+
railties (~> 7.2.0)
|
195
|
+
rake
|
196
|
+
rspec (~> 3.0)
|
197
|
+
securerandom (~> 0.3.2)
|
198
|
+
zeitwerk (~> 2.6.18)
|
199
|
+
|
200
|
+
BUNDLED WITH
|
201
|
+
2.4.21
|
@@ -0,0 +1,202 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
authorized_persona (0.12.0)
|
5
|
+
railties (>= 6.1, < 8.1)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actionpack (8.0.1)
|
11
|
+
actionview (= 8.0.1)
|
12
|
+
activesupport (= 8.0.1)
|
13
|
+
nokogiri (>= 1.8.5)
|
14
|
+
rack (>= 2.2.4)
|
15
|
+
rack-session (>= 1.0.1)
|
16
|
+
rack-test (>= 0.6.3)
|
17
|
+
rails-dom-testing (~> 2.2)
|
18
|
+
rails-html-sanitizer (~> 1.6)
|
19
|
+
useragent (~> 0.16)
|
20
|
+
actionview (8.0.1)
|
21
|
+
activesupport (= 8.0.1)
|
22
|
+
builder (~> 3.1)
|
23
|
+
erubi (~> 1.11)
|
24
|
+
rails-dom-testing (~> 2.2)
|
25
|
+
rails-html-sanitizer (~> 1.6)
|
26
|
+
activemodel (8.0.1)
|
27
|
+
activesupport (= 8.0.1)
|
28
|
+
activesupport (8.0.1)
|
29
|
+
base64
|
30
|
+
benchmark (>= 0.3)
|
31
|
+
bigdecimal
|
32
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
33
|
+
connection_pool (>= 2.2.5)
|
34
|
+
drb
|
35
|
+
i18n (>= 1.6, < 2)
|
36
|
+
logger (>= 1.4.2)
|
37
|
+
minitest (>= 5.1)
|
38
|
+
securerandom (>= 0.3)
|
39
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
40
|
+
uri (>= 0.13.1)
|
41
|
+
appraisal (2.5.0)
|
42
|
+
bundler
|
43
|
+
rake
|
44
|
+
thor (>= 0.14.0)
|
45
|
+
ast (2.4.2)
|
46
|
+
base64 (0.2.0)
|
47
|
+
benchmark (0.4.0)
|
48
|
+
betterlint (1.16.0)
|
49
|
+
rubocop (~> 1.62.0)
|
50
|
+
rubocop-graphql (~> 1.5.0)
|
51
|
+
rubocop-performance (~> 1.21.0)
|
52
|
+
rubocop-rails (~> 2.24.0)
|
53
|
+
rubocop-rake (~> 0.6.0)
|
54
|
+
rubocop-rspec (~> 2.28.0)
|
55
|
+
bigdecimal (3.1.9)
|
56
|
+
builder (3.3.0)
|
57
|
+
concurrent-ruby (1.3.5)
|
58
|
+
connection_pool (2.5.0)
|
59
|
+
crass (1.0.6)
|
60
|
+
date (3.4.1)
|
61
|
+
diff-lcs (1.5.1)
|
62
|
+
drb (2.2.1)
|
63
|
+
erubi (1.13.1)
|
64
|
+
i18n (1.14.7)
|
65
|
+
concurrent-ruby (~> 1.0)
|
66
|
+
io-console (0.8.0)
|
67
|
+
irb (1.15.0)
|
68
|
+
pp (>= 0.6.0)
|
69
|
+
rdoc (>= 4.0.0)
|
70
|
+
reline (>= 0.4.2)
|
71
|
+
json (2.9.1)
|
72
|
+
language_server-protocol (3.17.0.3)
|
73
|
+
logger (1.6.5)
|
74
|
+
loofah (2.24.0)
|
75
|
+
crass (~> 1.0.2)
|
76
|
+
nokogiri (>= 1.12.0)
|
77
|
+
minitest (5.25.4)
|
78
|
+
nokogiri (1.17.2-arm64-darwin)
|
79
|
+
racc (~> 1.4)
|
80
|
+
nokogiri (1.17.2-x86_64-linux)
|
81
|
+
racc (~> 1.4)
|
82
|
+
parallel (1.26.3)
|
83
|
+
parser (3.3.7.0)
|
84
|
+
ast (~> 2.4.1)
|
85
|
+
racc
|
86
|
+
pp (0.6.2)
|
87
|
+
prettyprint
|
88
|
+
prettyprint (0.2.0)
|
89
|
+
psych (5.2.3)
|
90
|
+
date
|
91
|
+
stringio
|
92
|
+
racc (1.8.1)
|
93
|
+
rack (3.1.8)
|
94
|
+
rack-session (2.1.0)
|
95
|
+
base64 (>= 0.1.0)
|
96
|
+
rack (>= 3.0.0)
|
97
|
+
rack-test (2.2.0)
|
98
|
+
rack (>= 1.3)
|
99
|
+
rackup (2.2.1)
|
100
|
+
rack (>= 3)
|
101
|
+
rails-dom-testing (2.2.0)
|
102
|
+
activesupport (>= 5.0.0)
|
103
|
+
minitest
|
104
|
+
nokogiri (>= 1.6)
|
105
|
+
rails-html-sanitizer (1.6.2)
|
106
|
+
loofah (~> 2.21)
|
107
|
+
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)
|
108
|
+
railties (8.0.1)
|
109
|
+
actionpack (= 8.0.1)
|
110
|
+
activesupport (= 8.0.1)
|
111
|
+
irb (~> 1.13)
|
112
|
+
rackup (>= 1.0.0)
|
113
|
+
rake (>= 12.2)
|
114
|
+
thor (~> 1.0, >= 1.2.2)
|
115
|
+
zeitwerk (~> 2.6)
|
116
|
+
rainbow (3.1.1)
|
117
|
+
rake (13.2.1)
|
118
|
+
rdoc (6.11.0)
|
119
|
+
psych (>= 4.0.0)
|
120
|
+
regexp_parser (2.10.0)
|
121
|
+
reline (0.6.0)
|
122
|
+
io-console (~> 0.5)
|
123
|
+
rexml (3.4.0)
|
124
|
+
rspec (3.13.0)
|
125
|
+
rspec-core (~> 3.13.0)
|
126
|
+
rspec-expectations (~> 3.13.0)
|
127
|
+
rspec-mocks (~> 3.13.0)
|
128
|
+
rspec-core (3.13.2)
|
129
|
+
rspec-support (~> 3.13.0)
|
130
|
+
rspec-expectations (3.13.3)
|
131
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
132
|
+
rspec-support (~> 3.13.0)
|
133
|
+
rspec-mocks (3.13.2)
|
134
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
135
|
+
rspec-support (~> 3.13.0)
|
136
|
+
rspec-support (3.13.2)
|
137
|
+
rubocop (1.62.1)
|
138
|
+
json (~> 2.3)
|
139
|
+
language_server-protocol (>= 3.17.0)
|
140
|
+
parallel (~> 1.10)
|
141
|
+
parser (>= 3.3.0.2)
|
142
|
+
rainbow (>= 2.2.2, < 4.0)
|
143
|
+
regexp_parser (>= 1.8, < 3.0)
|
144
|
+
rexml (>= 3.2.5, < 4.0)
|
145
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
146
|
+
ruby-progressbar (~> 1.7)
|
147
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
148
|
+
rubocop-ast (1.37.0)
|
149
|
+
parser (>= 3.3.1.0)
|
150
|
+
rubocop-capybara (2.21.0)
|
151
|
+
rubocop (~> 1.41)
|
152
|
+
rubocop-factory_bot (2.26.1)
|
153
|
+
rubocop (~> 1.61)
|
154
|
+
rubocop-graphql (1.5.4)
|
155
|
+
rubocop (>= 1.50, < 2)
|
156
|
+
rubocop-performance (1.21.1)
|
157
|
+
rubocop (>= 1.48.1, < 2.0)
|
158
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
159
|
+
rubocop-rails (2.24.1)
|
160
|
+
activesupport (>= 4.2.0)
|
161
|
+
rack (>= 1.1)
|
162
|
+
rubocop (>= 1.33.0, < 2.0)
|
163
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
164
|
+
rubocop-rake (0.6.0)
|
165
|
+
rubocop (~> 1.0)
|
166
|
+
rubocop-rspec (2.28.0)
|
167
|
+
rubocop (~> 1.40)
|
168
|
+
rubocop-capybara (~> 2.17)
|
169
|
+
rubocop-factory_bot (~> 2.22)
|
170
|
+
rubocop-rspec_rails (~> 2.28)
|
171
|
+
rubocop-rspec_rails (2.29.1)
|
172
|
+
rubocop (~> 1.61)
|
173
|
+
ruby-progressbar (1.13.0)
|
174
|
+
securerandom (0.3.2)
|
175
|
+
stringio (3.1.2)
|
176
|
+
thor (1.3.2)
|
177
|
+
tzinfo (2.0.6)
|
178
|
+
concurrent-ruby (~> 1.0)
|
179
|
+
unicode-display_width (2.6.0)
|
180
|
+
uri (1.0.2)
|
181
|
+
useragent (0.16.11)
|
182
|
+
zeitwerk (2.6.18)
|
183
|
+
|
184
|
+
PLATFORMS
|
185
|
+
arm64-darwin-23
|
186
|
+
x86_64-linux
|
187
|
+
|
188
|
+
DEPENDENCIES
|
189
|
+
activemodel (>= 6.1, < 8.1)
|
190
|
+
appraisal
|
191
|
+
authorized_persona!
|
192
|
+
betterlint
|
193
|
+
bundler
|
194
|
+
nokogiri (~> 1.17.2)
|
195
|
+
railties (~> 8.0.0)
|
196
|
+
rake
|
197
|
+
rspec (~> 3.0)
|
198
|
+
securerandom (~> 0.3.2)
|
199
|
+
zeitwerk (~> 2.6.18)
|
200
|
+
|
201
|
+
BUNDLED WITH
|
202
|
+
2.4.21
|