nacelle 0.5.0 → 0.6.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 +2 -2
- data/Appraisals +6 -9
- data/Gemfile +1 -2
- data/app/assets/config/manifest.js +1 -0
- data/gemfiles/rails_7.0.gemfile.lock +111 -113
- data/gemfiles/{rails_6.0.gemfile → rails_7.1.gemfile} +1 -1
- data/gemfiles/rails_7.1.gemfile.lock +240 -0
- data/gemfiles/{rails_6.1.gemfile → rails_7.2.gemfile} +1 -1
- data/gemfiles/rails_7.2.gemfile.lock +238 -0
- data/lib/nacelle/after_filter.rb +11 -7
- data/lib/nacelle/cell.rb +38 -21
- data/lib/nacelle/cells_serializer.rb +1 -1
- data/lib/nacelle/version.rb +1 -1
- data/nacelle.gemspec +0 -1
- metadata +8 -21
- data/gemfiles/rails_6.0.gemfile.lock +0 -205
- data/gemfiles/rails_6.1.gemfile.lock +0 -208
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6477e57d6d1fe634a3c9a940e14dcf5b988895683e987d56d37246b81994a3eb
|
4
|
+
data.tar.gz: 5c7d38c042003f3bc54c73806931c100fafcf259be9e923c36cb058301546ebc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba15b649933306bb4ac18d5fd3a7e42660394d0105d795df93b6b6d6ca283a330727e370b6a169c4315d6df8e23f334b9afa369a33aa478d25c9f349dd41da2d
|
7
|
+
data.tar.gz: a7f13c2431e3e8a9cc84246b28cfa5e1e0327c48d64dd462d71979d1ed68a944e8af0ba11e3f7b5d818bf14456374d474925e779fc195d282927dcbd30ca4bb6
|
data/.github/workflows/ci.yml
CHANGED
@@ -5,8 +5,8 @@ jobs:
|
|
5
5
|
strategy:
|
6
6
|
fail-fast: false
|
7
7
|
matrix:
|
8
|
-
gemfile: [
|
9
|
-
ruby: [
|
8
|
+
gemfile: [ rails_7.0, rails_7.1, rails_7.2 ]
|
9
|
+
ruby: [ 3.1, 3.2, 3.3 ]
|
10
10
|
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
|
data/Appraisals
CHANGED
@@ -1,15 +1,12 @@
|
|
1
|
-
appraise "rails-
|
2
|
-
gem "rails", "~>
|
3
|
-
gem "sprockets", "~>3.0"
|
1
|
+
appraise "rails-7.0" do
|
2
|
+
gem "rails", "~>7.0.0"
|
4
3
|
end
|
5
4
|
|
6
|
-
appraise "rails-
|
7
|
-
gem "rails", "~>
|
8
|
-
gem "sprockets", "~>3.0"
|
5
|
+
appraise "rails-7.1" do
|
6
|
+
gem "rails", "~>7.1.0"
|
9
7
|
end
|
10
8
|
|
11
|
-
appraise "rails-7.
|
12
|
-
gem "rails", "~>7.
|
13
|
-
gem "sprockets", "~>3.0"
|
9
|
+
appraise "rails-7.2" do
|
10
|
+
gem "rails", "~>7.2.0"
|
14
11
|
end
|
15
12
|
|
data/Gemfile
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
//= link_tree ../javascripts .js
|
@@ -1,198 +1,196 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
nacelle (0.
|
5
|
-
cells (~> 3.0)
|
4
|
+
nacelle (0.5.0)
|
6
5
|
rails
|
7
6
|
sprockets-rails
|
8
7
|
|
9
8
|
GEM
|
10
9
|
remote: https://rubygems.org/
|
11
10
|
specs:
|
12
|
-
actioncable (7.0.4
|
13
|
-
actionpack (= 7.0.4
|
14
|
-
activesupport (= 7.0.4
|
11
|
+
actioncable (7.0.8.4)
|
12
|
+
actionpack (= 7.0.8.4)
|
13
|
+
activesupport (= 7.0.8.4)
|
15
14
|
nio4r (~> 2.0)
|
16
15
|
websocket-driver (>= 0.6.1)
|
17
|
-
actionmailbox (7.0.4
|
18
|
-
actionpack (= 7.0.4
|
19
|
-
activejob (= 7.0.4
|
20
|
-
activerecord (= 7.0.4
|
21
|
-
activestorage (= 7.0.4
|
22
|
-
activesupport (= 7.0.4
|
16
|
+
actionmailbox (7.0.8.4)
|
17
|
+
actionpack (= 7.0.8.4)
|
18
|
+
activejob (= 7.0.8.4)
|
19
|
+
activerecord (= 7.0.8.4)
|
20
|
+
activestorage (= 7.0.8.4)
|
21
|
+
activesupport (= 7.0.8.4)
|
23
22
|
mail (>= 2.7.1)
|
24
23
|
net-imap
|
25
24
|
net-pop
|
26
25
|
net-smtp
|
27
|
-
actionmailer (7.0.4
|
28
|
-
actionpack (= 7.0.4
|
29
|
-
actionview (= 7.0.4
|
30
|
-
activejob (= 7.0.4
|
31
|
-
activesupport (= 7.0.4
|
26
|
+
actionmailer (7.0.8.4)
|
27
|
+
actionpack (= 7.0.8.4)
|
28
|
+
actionview (= 7.0.8.4)
|
29
|
+
activejob (= 7.0.8.4)
|
30
|
+
activesupport (= 7.0.8.4)
|
32
31
|
mail (~> 2.5, >= 2.5.4)
|
33
32
|
net-imap
|
34
33
|
net-pop
|
35
34
|
net-smtp
|
36
35
|
rails-dom-testing (~> 2.0)
|
37
|
-
actionpack (7.0.4
|
38
|
-
actionview (= 7.0.4
|
39
|
-
activesupport (= 7.0.4
|
40
|
-
rack (~> 2.0, >= 2.2.
|
36
|
+
actionpack (7.0.8.4)
|
37
|
+
actionview (= 7.0.8.4)
|
38
|
+
activesupport (= 7.0.8.4)
|
39
|
+
rack (~> 2.0, >= 2.2.4)
|
41
40
|
rack-test (>= 0.6.3)
|
42
41
|
rails-dom-testing (~> 2.0)
|
43
42
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
44
|
-
actiontext (7.0.4
|
45
|
-
actionpack (= 7.0.4
|
46
|
-
activerecord (= 7.0.4
|
47
|
-
activestorage (= 7.0.4
|
48
|
-
activesupport (= 7.0.4
|
43
|
+
actiontext (7.0.8.4)
|
44
|
+
actionpack (= 7.0.8.4)
|
45
|
+
activerecord (= 7.0.8.4)
|
46
|
+
activestorage (= 7.0.8.4)
|
47
|
+
activesupport (= 7.0.8.4)
|
49
48
|
globalid (>= 0.6.0)
|
50
49
|
nokogiri (>= 1.8.5)
|
51
|
-
actionview (7.0.4
|
52
|
-
activesupport (= 7.0.4
|
50
|
+
actionview (7.0.8.4)
|
51
|
+
activesupport (= 7.0.8.4)
|
53
52
|
builder (~> 3.1)
|
54
53
|
erubi (~> 1.4)
|
55
54
|
rails-dom-testing (~> 2.0)
|
56
55
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
57
|
-
activejob (7.0.4
|
58
|
-
activesupport (= 7.0.4
|
56
|
+
activejob (7.0.8.4)
|
57
|
+
activesupport (= 7.0.8.4)
|
59
58
|
globalid (>= 0.3.6)
|
60
|
-
activemodel (7.0.4
|
61
|
-
activesupport (= 7.0.4
|
62
|
-
activerecord (7.0.4
|
63
|
-
activemodel (= 7.0.4
|
64
|
-
activesupport (= 7.0.4
|
65
|
-
activestorage (7.0.4
|
66
|
-
actionpack (= 7.0.4
|
67
|
-
activejob (= 7.0.4
|
68
|
-
activerecord (= 7.0.4
|
69
|
-
activesupport (= 7.0.4
|
59
|
+
activemodel (7.0.8.4)
|
60
|
+
activesupport (= 7.0.8.4)
|
61
|
+
activerecord (7.0.8.4)
|
62
|
+
activemodel (= 7.0.8.4)
|
63
|
+
activesupport (= 7.0.8.4)
|
64
|
+
activestorage (7.0.8.4)
|
65
|
+
actionpack (= 7.0.8.4)
|
66
|
+
activejob (= 7.0.8.4)
|
67
|
+
activerecord (= 7.0.8.4)
|
68
|
+
activesupport (= 7.0.8.4)
|
70
69
|
marcel (~> 1.0)
|
71
70
|
mini_mime (>= 1.1.0)
|
72
|
-
activesupport (7.0.4
|
71
|
+
activesupport (7.0.8.4)
|
73
72
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
74
73
|
i18n (>= 1.6, < 2)
|
75
74
|
minitest (>= 5.1)
|
76
75
|
tzinfo (~> 2.0)
|
77
|
-
addressable (2.8.
|
78
|
-
public_suffix (>= 2.0.2, <
|
79
|
-
appraisal (2.
|
76
|
+
addressable (2.8.7)
|
77
|
+
public_suffix (>= 2.0.2, < 7.0)
|
78
|
+
appraisal (2.5.0)
|
80
79
|
bundler
|
81
80
|
rake
|
82
81
|
thor (>= 0.14.0)
|
83
|
-
|
82
|
+
base64 (0.2.0)
|
83
|
+
builder (3.3.0)
|
84
84
|
byebug (11.1.3)
|
85
|
-
capybara (3.
|
85
|
+
capybara (3.40.0)
|
86
86
|
addressable
|
87
87
|
matrix
|
88
88
|
mini_mime (>= 0.1.3)
|
89
|
-
nokogiri (~> 1.
|
89
|
+
nokogiri (~> 1.11)
|
90
90
|
rack (>= 1.6.0)
|
91
91
|
rack-test (>= 0.6.3)
|
92
92
|
regexp_parser (>= 1.5, < 3.0)
|
93
93
|
xpath (~> 3.2)
|
94
|
-
|
95
|
-
actionpack (>= 3.0)
|
96
|
-
railties (>= 3.0)
|
97
|
-
uber (~> 0.0.8)
|
98
|
-
concurrent-ruby (1.2.2)
|
94
|
+
concurrent-ruby (1.3.4)
|
99
95
|
crass (1.0.6)
|
100
|
-
date (3.3.
|
101
|
-
diff-lcs (1.5.
|
102
|
-
erubi (1.
|
103
|
-
globalid (1.1
|
104
|
-
activesupport (>=
|
105
|
-
i18n (1.
|
96
|
+
date (3.3.4)
|
97
|
+
diff-lcs (1.5.1)
|
98
|
+
erubi (1.13.0)
|
99
|
+
globalid (1.2.1)
|
100
|
+
activesupport (>= 6.1)
|
101
|
+
i18n (1.14.5)
|
106
102
|
concurrent-ruby (~> 1.0)
|
107
|
-
loofah (2.
|
103
|
+
loofah (2.22.0)
|
108
104
|
crass (~> 1.0.2)
|
109
|
-
nokogiri (>= 1.
|
105
|
+
nokogiri (>= 1.12.0)
|
110
106
|
mail (2.8.1)
|
111
107
|
mini_mime (>= 0.1.1)
|
112
108
|
net-imap
|
113
109
|
net-pop
|
114
110
|
net-smtp
|
115
|
-
marcel (1.0.
|
111
|
+
marcel (1.0.4)
|
116
112
|
matrix (0.4.2)
|
117
|
-
method_source (1.
|
118
|
-
mini_mime (1.1.
|
119
|
-
minitest (5.
|
120
|
-
net-imap (0.
|
113
|
+
method_source (1.1.0)
|
114
|
+
mini_mime (1.1.5)
|
115
|
+
minitest (5.25.1)
|
116
|
+
net-imap (0.4.14)
|
121
117
|
date
|
122
118
|
net-protocol
|
123
119
|
net-pop (0.1.2)
|
124
120
|
net-protocol
|
125
|
-
net-protocol (0.2.
|
121
|
+
net-protocol (0.2.2)
|
126
122
|
timeout
|
127
|
-
net-smtp (0.
|
123
|
+
net-smtp (0.5.0)
|
128
124
|
net-protocol
|
129
|
-
nio4r (2.
|
130
|
-
nokogiri (1.
|
125
|
+
nio4r (2.7.3)
|
126
|
+
nokogiri (1.16.7-x86_64-linux)
|
131
127
|
racc (~> 1.4)
|
132
|
-
public_suffix (
|
133
|
-
racc (1.
|
134
|
-
rack (2.2.
|
128
|
+
public_suffix (6.0.1)
|
129
|
+
racc (1.8.1)
|
130
|
+
rack (2.2.9)
|
135
131
|
rack-test (2.1.0)
|
136
132
|
rack (>= 1.3)
|
137
|
-
rails (7.0.4
|
138
|
-
actioncable (= 7.0.4
|
139
|
-
actionmailbox (= 7.0.4
|
140
|
-
actionmailer (= 7.0.4
|
141
|
-
actionpack (= 7.0.4
|
142
|
-
actiontext (= 7.0.4
|
143
|
-
actionview (= 7.0.4
|
144
|
-
activejob (= 7.0.4
|
145
|
-
activemodel (= 7.0.4
|
146
|
-
activerecord (= 7.0.4
|
147
|
-
activestorage (= 7.0.4
|
148
|
-
activesupport (= 7.0.4
|
133
|
+
rails (7.0.8.4)
|
134
|
+
actioncable (= 7.0.8.4)
|
135
|
+
actionmailbox (= 7.0.8.4)
|
136
|
+
actionmailer (= 7.0.8.4)
|
137
|
+
actionpack (= 7.0.8.4)
|
138
|
+
actiontext (= 7.0.8.4)
|
139
|
+
actionview (= 7.0.8.4)
|
140
|
+
activejob (= 7.0.8.4)
|
141
|
+
activemodel (= 7.0.8.4)
|
142
|
+
activerecord (= 7.0.8.4)
|
143
|
+
activestorage (= 7.0.8.4)
|
144
|
+
activesupport (= 7.0.8.4)
|
149
145
|
bundler (>= 1.15.0)
|
150
|
-
railties (= 7.0.4
|
151
|
-
rails-dom-testing (2.0
|
152
|
-
activesupport (>=
|
146
|
+
railties (= 7.0.8.4)
|
147
|
+
rails-dom-testing (2.2.0)
|
148
|
+
activesupport (>= 5.0.0)
|
149
|
+
minitest
|
153
150
|
nokogiri (>= 1.6)
|
154
|
-
rails-html-sanitizer (1.
|
155
|
-
loofah (~> 2.
|
156
|
-
|
157
|
-
|
158
|
-
|
151
|
+
rails-html-sanitizer (1.6.0)
|
152
|
+
loofah (~> 2.21)
|
153
|
+
nokogiri (~> 1.14)
|
154
|
+
railties (7.0.8.4)
|
155
|
+
actionpack (= 7.0.8.4)
|
156
|
+
activesupport (= 7.0.8.4)
|
159
157
|
method_source
|
160
158
|
rake (>= 12.2)
|
161
159
|
thor (~> 1.0)
|
162
160
|
zeitwerk (~> 2.5)
|
163
|
-
rake (13.
|
164
|
-
regexp_parser (2.
|
165
|
-
rspec (3.
|
166
|
-
rspec-core (~> 3.
|
167
|
-
rspec-expectations (~> 3.
|
168
|
-
rspec-mocks (~> 3.
|
169
|
-
rspec-core (3.
|
170
|
-
rspec-support (~> 3.
|
171
|
-
rspec-expectations (3.
|
161
|
+
rake (13.2.1)
|
162
|
+
regexp_parser (2.9.2)
|
163
|
+
rspec (3.13.0)
|
164
|
+
rspec-core (~> 3.13.0)
|
165
|
+
rspec-expectations (~> 3.13.0)
|
166
|
+
rspec-mocks (~> 3.13.0)
|
167
|
+
rspec-core (3.13.0)
|
168
|
+
rspec-support (~> 3.13.0)
|
169
|
+
rspec-expectations (3.13.2)
|
172
170
|
diff-lcs (>= 1.2.0, < 2.0)
|
173
|
-
rspec-support (~> 3.
|
174
|
-
rspec-mocks (3.
|
171
|
+
rspec-support (~> 3.13.0)
|
172
|
+
rspec-mocks (3.13.1)
|
175
173
|
diff-lcs (>= 1.2.0, < 2.0)
|
176
|
-
rspec-support (~> 3.
|
177
|
-
rspec-support (3.
|
178
|
-
sprockets (3.7.
|
174
|
+
rspec-support (~> 3.13.0)
|
175
|
+
rspec-support (3.13.1)
|
176
|
+
sprockets (3.7.3)
|
177
|
+
base64
|
179
178
|
concurrent-ruby (~> 1.0)
|
180
179
|
rack (> 1, < 3)
|
181
|
-
sprockets-rails (3.
|
182
|
-
actionpack (>=
|
183
|
-
activesupport (>=
|
180
|
+
sprockets-rails (3.5.2)
|
181
|
+
actionpack (>= 6.1)
|
182
|
+
activesupport (>= 6.1)
|
184
183
|
sprockets (>= 3.0.0)
|
185
|
-
thor (1.
|
186
|
-
timeout (0.
|
184
|
+
thor (1.3.1)
|
185
|
+
timeout (0.4.1)
|
187
186
|
tzinfo (2.0.6)
|
188
187
|
concurrent-ruby (~> 1.0)
|
189
|
-
|
190
|
-
websocket-driver (0.7.5)
|
188
|
+
websocket-driver (0.7.6)
|
191
189
|
websocket-extensions (>= 0.1.0)
|
192
190
|
websocket-extensions (0.1.5)
|
193
191
|
xpath (3.2.0)
|
194
192
|
nokogiri (~> 1.8)
|
195
|
-
zeitwerk (2.6.
|
193
|
+
zeitwerk (2.6.17)
|
196
194
|
|
197
195
|
PLATFORMS
|
198
196
|
x86_64-linux
|
@@ -0,0 +1,240 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
nacelle (0.5.0)
|
5
|
+
rails
|
6
|
+
sprockets-rails
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (7.1.4)
|
12
|
+
actionpack (= 7.1.4)
|
13
|
+
activesupport (= 7.1.4)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
zeitwerk (~> 2.6)
|
17
|
+
actionmailbox (7.1.4)
|
18
|
+
actionpack (= 7.1.4)
|
19
|
+
activejob (= 7.1.4)
|
20
|
+
activerecord (= 7.1.4)
|
21
|
+
activestorage (= 7.1.4)
|
22
|
+
activesupport (= 7.1.4)
|
23
|
+
mail (>= 2.7.1)
|
24
|
+
net-imap
|
25
|
+
net-pop
|
26
|
+
net-smtp
|
27
|
+
actionmailer (7.1.4)
|
28
|
+
actionpack (= 7.1.4)
|
29
|
+
actionview (= 7.1.4)
|
30
|
+
activejob (= 7.1.4)
|
31
|
+
activesupport (= 7.1.4)
|
32
|
+
mail (~> 2.5, >= 2.5.4)
|
33
|
+
net-imap
|
34
|
+
net-pop
|
35
|
+
net-smtp
|
36
|
+
rails-dom-testing (~> 2.2)
|
37
|
+
actionpack (7.1.4)
|
38
|
+
actionview (= 7.1.4)
|
39
|
+
activesupport (= 7.1.4)
|
40
|
+
nokogiri (>= 1.8.5)
|
41
|
+
racc
|
42
|
+
rack (>= 2.2.4)
|
43
|
+
rack-session (>= 1.0.1)
|
44
|
+
rack-test (>= 0.6.3)
|
45
|
+
rails-dom-testing (~> 2.2)
|
46
|
+
rails-html-sanitizer (~> 1.6)
|
47
|
+
actiontext (7.1.4)
|
48
|
+
actionpack (= 7.1.4)
|
49
|
+
activerecord (= 7.1.4)
|
50
|
+
activestorage (= 7.1.4)
|
51
|
+
activesupport (= 7.1.4)
|
52
|
+
globalid (>= 0.6.0)
|
53
|
+
nokogiri (>= 1.8.5)
|
54
|
+
actionview (7.1.4)
|
55
|
+
activesupport (= 7.1.4)
|
56
|
+
builder (~> 3.1)
|
57
|
+
erubi (~> 1.11)
|
58
|
+
rails-dom-testing (~> 2.2)
|
59
|
+
rails-html-sanitizer (~> 1.6)
|
60
|
+
activejob (7.1.4)
|
61
|
+
activesupport (= 7.1.4)
|
62
|
+
globalid (>= 0.3.6)
|
63
|
+
activemodel (7.1.4)
|
64
|
+
activesupport (= 7.1.4)
|
65
|
+
activerecord (7.1.4)
|
66
|
+
activemodel (= 7.1.4)
|
67
|
+
activesupport (= 7.1.4)
|
68
|
+
timeout (>= 0.4.0)
|
69
|
+
activestorage (7.1.4)
|
70
|
+
actionpack (= 7.1.4)
|
71
|
+
activejob (= 7.1.4)
|
72
|
+
activerecord (= 7.1.4)
|
73
|
+
activesupport (= 7.1.4)
|
74
|
+
marcel (~> 1.0)
|
75
|
+
activesupport (7.1.4)
|
76
|
+
base64
|
77
|
+
bigdecimal
|
78
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
79
|
+
connection_pool (>= 2.2.5)
|
80
|
+
drb
|
81
|
+
i18n (>= 1.6, < 2)
|
82
|
+
minitest (>= 5.1)
|
83
|
+
mutex_m
|
84
|
+
tzinfo (~> 2.0)
|
85
|
+
addressable (2.8.7)
|
86
|
+
public_suffix (>= 2.0.2, < 7.0)
|
87
|
+
appraisal (2.5.0)
|
88
|
+
bundler
|
89
|
+
rake
|
90
|
+
thor (>= 0.14.0)
|
91
|
+
base64 (0.2.0)
|
92
|
+
bigdecimal (3.1.8)
|
93
|
+
builder (3.3.0)
|
94
|
+
byebug (11.1.3)
|
95
|
+
capybara (3.40.0)
|
96
|
+
addressable
|
97
|
+
matrix
|
98
|
+
mini_mime (>= 0.1.3)
|
99
|
+
nokogiri (~> 1.11)
|
100
|
+
rack (>= 1.6.0)
|
101
|
+
rack-test (>= 0.6.3)
|
102
|
+
regexp_parser (>= 1.5, < 3.0)
|
103
|
+
xpath (~> 3.2)
|
104
|
+
concurrent-ruby (1.3.4)
|
105
|
+
connection_pool (2.4.1)
|
106
|
+
crass (1.0.6)
|
107
|
+
date (3.3.4)
|
108
|
+
diff-lcs (1.5.1)
|
109
|
+
drb (2.2.1)
|
110
|
+
erubi (1.13.0)
|
111
|
+
globalid (1.2.1)
|
112
|
+
activesupport (>= 6.1)
|
113
|
+
i18n (1.14.5)
|
114
|
+
concurrent-ruby (~> 1.0)
|
115
|
+
io-console (0.7.2)
|
116
|
+
irb (1.14.0)
|
117
|
+
rdoc (>= 4.0.0)
|
118
|
+
reline (>= 0.4.2)
|
119
|
+
loofah (2.22.0)
|
120
|
+
crass (~> 1.0.2)
|
121
|
+
nokogiri (>= 1.12.0)
|
122
|
+
mail (2.8.1)
|
123
|
+
mini_mime (>= 0.1.1)
|
124
|
+
net-imap
|
125
|
+
net-pop
|
126
|
+
net-smtp
|
127
|
+
marcel (1.0.4)
|
128
|
+
matrix (0.4.2)
|
129
|
+
mini_mime (1.1.5)
|
130
|
+
minitest (5.25.1)
|
131
|
+
mutex_m (0.2.0)
|
132
|
+
net-imap (0.4.14)
|
133
|
+
date
|
134
|
+
net-protocol
|
135
|
+
net-pop (0.1.2)
|
136
|
+
net-protocol
|
137
|
+
net-protocol (0.2.2)
|
138
|
+
timeout
|
139
|
+
net-smtp (0.5.0)
|
140
|
+
net-protocol
|
141
|
+
nio4r (2.7.3)
|
142
|
+
nokogiri (1.16.7-x86_64-linux)
|
143
|
+
racc (~> 1.4)
|
144
|
+
psych (5.1.2)
|
145
|
+
stringio
|
146
|
+
public_suffix (6.0.1)
|
147
|
+
racc (1.8.1)
|
148
|
+
rack (2.2.9)
|
149
|
+
rack-session (1.0.2)
|
150
|
+
rack (< 3)
|
151
|
+
rack-test (2.1.0)
|
152
|
+
rack (>= 1.3)
|
153
|
+
rackup (1.0.0)
|
154
|
+
rack (< 3)
|
155
|
+
webrick
|
156
|
+
rails (7.1.4)
|
157
|
+
actioncable (= 7.1.4)
|
158
|
+
actionmailbox (= 7.1.4)
|
159
|
+
actionmailer (= 7.1.4)
|
160
|
+
actionpack (= 7.1.4)
|
161
|
+
actiontext (= 7.1.4)
|
162
|
+
actionview (= 7.1.4)
|
163
|
+
activejob (= 7.1.4)
|
164
|
+
activemodel (= 7.1.4)
|
165
|
+
activerecord (= 7.1.4)
|
166
|
+
activestorage (= 7.1.4)
|
167
|
+
activesupport (= 7.1.4)
|
168
|
+
bundler (>= 1.15.0)
|
169
|
+
railties (= 7.1.4)
|
170
|
+
rails-dom-testing (2.2.0)
|
171
|
+
activesupport (>= 5.0.0)
|
172
|
+
minitest
|
173
|
+
nokogiri (>= 1.6)
|
174
|
+
rails-html-sanitizer (1.6.0)
|
175
|
+
loofah (~> 2.21)
|
176
|
+
nokogiri (~> 1.14)
|
177
|
+
railties (7.1.4)
|
178
|
+
actionpack (= 7.1.4)
|
179
|
+
activesupport (= 7.1.4)
|
180
|
+
irb
|
181
|
+
rackup (>= 1.0.0)
|
182
|
+
rake (>= 12.2)
|
183
|
+
thor (~> 1.0, >= 1.2.2)
|
184
|
+
zeitwerk (~> 2.6)
|
185
|
+
rake (13.2.1)
|
186
|
+
rdoc (6.7.0)
|
187
|
+
psych (>= 4.0.0)
|
188
|
+
regexp_parser (2.9.2)
|
189
|
+
reline (0.5.9)
|
190
|
+
io-console (~> 0.5)
|
191
|
+
rspec (3.13.0)
|
192
|
+
rspec-core (~> 3.13.0)
|
193
|
+
rspec-expectations (~> 3.13.0)
|
194
|
+
rspec-mocks (~> 3.13.0)
|
195
|
+
rspec-core (3.13.0)
|
196
|
+
rspec-support (~> 3.13.0)
|
197
|
+
rspec-expectations (3.13.2)
|
198
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
199
|
+
rspec-support (~> 3.13.0)
|
200
|
+
rspec-mocks (3.13.1)
|
201
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
202
|
+
rspec-support (~> 3.13.0)
|
203
|
+
rspec-support (3.13.1)
|
204
|
+
sprockets (3.7.3)
|
205
|
+
base64
|
206
|
+
concurrent-ruby (~> 1.0)
|
207
|
+
rack (> 1, < 3)
|
208
|
+
sprockets-rails (3.5.2)
|
209
|
+
actionpack (>= 6.1)
|
210
|
+
activesupport (>= 6.1)
|
211
|
+
sprockets (>= 3.0.0)
|
212
|
+
stringio (3.1.1)
|
213
|
+
thor (1.3.1)
|
214
|
+
timeout (0.4.1)
|
215
|
+
tzinfo (2.0.6)
|
216
|
+
concurrent-ruby (~> 1.0)
|
217
|
+
webrick (1.8.1)
|
218
|
+
websocket-driver (0.7.6)
|
219
|
+
websocket-extensions (>= 0.1.0)
|
220
|
+
websocket-extensions (0.1.5)
|
221
|
+
xpath (3.2.0)
|
222
|
+
nokogiri (~> 1.8)
|
223
|
+
zeitwerk (2.6.17)
|
224
|
+
|
225
|
+
PLATFORMS
|
226
|
+
x86_64-linux
|
227
|
+
|
228
|
+
DEPENDENCIES
|
229
|
+
appraisal
|
230
|
+
bundler
|
231
|
+
byebug
|
232
|
+
capybara
|
233
|
+
nacelle!
|
234
|
+
rails (~> 7.1.0)
|
235
|
+
rake
|
236
|
+
rspec
|
237
|
+
sprockets (~> 3.0)
|
238
|
+
|
239
|
+
BUNDLED WITH
|
240
|
+
2.4.19
|