nacelle 0.4.2 → 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 -21
- data/Gemfile +1 -2
- data/app/assets/config/manifest.js +1 -0
- data/gemfiles/rails_7.0.gemfile.lock +131 -113
- data/gemfiles/{rails_6.0.gemfile → rails_7.1.gemfile} +1 -2
- data/gemfiles/rails_7.1.gemfile.lock +240 -0
- data/gemfiles/{rails_6.1.gemfile → rails_7.2.gemfile} +1 -2
- data/gemfiles/rails_7.2.gemfile.lock +238 -0
- data/lib/nacelle/after_filter.rb +49 -0
- data/lib/nacelle/cell.rb +59 -14
- data/lib/nacelle/cells_serializer.rb +1 -1
- data/lib/nacelle/has_cells.rb +17 -0
- data/lib/nacelle/version.rb +1 -1
- data/lib/nacelle.rb +4 -2
- data/nacelle.gemspec +0 -1
- metadata +10 -22
- data/gemfiles/rails_6.0.gemfile.lock +0 -189
- data/gemfiles/rails_6.1.gemfile.lock +0 -192
- data/lib/nacelle/middleware.rb +0 -53
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,27 +1,12 @@
|
|
1
|
-
appraise "rails-
|
2
|
-
gem "rails", "~>
|
3
|
-
gem "sprockets", "~>3.0"
|
4
|
-
end
|
5
|
-
|
6
|
-
appraise "rails-5.2" do
|
7
|
-
gem "rails", "~>5.2.0"
|
8
|
-
gem "sprockets", "~>3.0"
|
9
|
-
end
|
10
|
-
|
11
|
-
appraise "rails-6.0" do
|
12
|
-
gem "rails", "~>6.0.0"
|
13
|
-
gem "sprockets", "~>3.0"
|
14
|
-
gem "capybara", "~>3.35.0" # 3.36 requires ruby 2.6+
|
1
|
+
appraise "rails-7.0" do
|
2
|
+
gem "rails", "~>7.0.0"
|
15
3
|
end
|
16
4
|
|
17
|
-
appraise "rails-
|
18
|
-
gem "rails", "~>
|
19
|
-
gem "sprockets", "~>3.0"
|
20
|
-
gem "capybara", "~>3.35.0" # 3.36 requires ruby 2.6+
|
5
|
+
appraise "rails-7.1" do
|
6
|
+
gem "rails", "~>7.1.0"
|
21
7
|
end
|
22
8
|
|
23
|
-
appraise "rails-7.
|
24
|
-
gem "rails", "~>7.
|
25
|
-
gem "sprockets", "~>3.0"
|
9
|
+
appraise "rails-7.2" do
|
10
|
+
gem "rails", "~>7.2.0"
|
26
11
|
end
|
27
12
|
|
data/Gemfile
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
//= link_tree ../javascripts .js
|
@@ -1,178 +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.
|
13
|
-
actionpack (= 7.0.
|
14
|
-
activesupport (= 7.0.
|
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.
|
18
|
-
actionpack (= 7.0.
|
19
|
-
activejob (= 7.0.
|
20
|
-
activerecord (= 7.0.
|
21
|
-
activestorage (= 7.0.
|
22
|
-
activesupport (= 7.0.
|
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
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
23
|
+
net-imap
|
24
|
+
net-pop
|
25
|
+
net-smtp
|
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)
|
29
31
|
mail (~> 2.5, >= 2.5.4)
|
32
|
+
net-imap
|
33
|
+
net-pop
|
34
|
+
net-smtp
|
30
35
|
rails-dom-testing (~> 2.0)
|
31
|
-
actionpack (7.0.
|
32
|
-
actionview (= 7.0.
|
33
|
-
activesupport (= 7.0.
|
34
|
-
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)
|
35
40
|
rack-test (>= 0.6.3)
|
36
41
|
rails-dom-testing (~> 2.0)
|
37
42
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
38
|
-
actiontext (7.0.
|
39
|
-
actionpack (= 7.0.
|
40
|
-
activerecord (= 7.0.
|
41
|
-
activestorage (= 7.0.
|
42
|
-
activesupport (= 7.0.
|
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)
|
43
48
|
globalid (>= 0.6.0)
|
44
49
|
nokogiri (>= 1.8.5)
|
45
|
-
actionview (7.0.
|
46
|
-
activesupport (= 7.0.
|
50
|
+
actionview (7.0.8.4)
|
51
|
+
activesupport (= 7.0.8.4)
|
47
52
|
builder (~> 3.1)
|
48
53
|
erubi (~> 1.4)
|
49
54
|
rails-dom-testing (~> 2.0)
|
50
55
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
51
|
-
activejob (7.0.
|
52
|
-
activesupport (= 7.0.
|
56
|
+
activejob (7.0.8.4)
|
57
|
+
activesupport (= 7.0.8.4)
|
53
58
|
globalid (>= 0.3.6)
|
54
|
-
activemodel (7.0.
|
55
|
-
activesupport (= 7.0.
|
56
|
-
activerecord (7.0.
|
57
|
-
activemodel (= 7.0.
|
58
|
-
activesupport (= 7.0.
|
59
|
-
activestorage (7.0.
|
60
|
-
actionpack (= 7.0.
|
61
|
-
activejob (= 7.0.
|
62
|
-
activerecord (= 7.0.
|
63
|
-
activesupport (= 7.0.
|
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)
|
64
69
|
marcel (~> 1.0)
|
65
70
|
mini_mime (>= 1.1.0)
|
66
|
-
activesupport (7.0.
|
71
|
+
activesupport (7.0.8.4)
|
67
72
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
68
73
|
i18n (>= 1.6, < 2)
|
69
74
|
minitest (>= 5.1)
|
70
75
|
tzinfo (~> 2.0)
|
71
|
-
addressable (2.8.
|
72
|
-
public_suffix (>= 2.0.2, <
|
73
|
-
appraisal (2.
|
76
|
+
addressable (2.8.7)
|
77
|
+
public_suffix (>= 2.0.2, < 7.0)
|
78
|
+
appraisal (2.5.0)
|
74
79
|
bundler
|
75
80
|
rake
|
76
81
|
thor (>= 0.14.0)
|
77
|
-
|
82
|
+
base64 (0.2.0)
|
83
|
+
builder (3.3.0)
|
78
84
|
byebug (11.1.3)
|
79
|
-
capybara (3.
|
85
|
+
capybara (3.40.0)
|
80
86
|
addressable
|
81
87
|
matrix
|
82
88
|
mini_mime (>= 0.1.3)
|
83
|
-
nokogiri (~> 1.
|
89
|
+
nokogiri (~> 1.11)
|
84
90
|
rack (>= 1.6.0)
|
85
91
|
rack-test (>= 0.6.3)
|
86
92
|
regexp_parser (>= 1.5, < 3.0)
|
87
93
|
xpath (~> 3.2)
|
88
|
-
|
89
|
-
actionpack (>= 3.0)
|
90
|
-
railties (>= 3.0)
|
91
|
-
uber (~> 0.0.8)
|
92
|
-
concurrent-ruby (1.1.9)
|
94
|
+
concurrent-ruby (1.3.4)
|
93
95
|
crass (1.0.6)
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
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)
|
99
102
|
concurrent-ruby (~> 1.0)
|
100
|
-
loofah (2.
|
103
|
+
loofah (2.22.0)
|
101
104
|
crass (~> 1.0.2)
|
102
|
-
nokogiri (>= 1.
|
103
|
-
mail (2.
|
105
|
+
nokogiri (>= 1.12.0)
|
106
|
+
mail (2.8.1)
|
104
107
|
mini_mime (>= 0.1.1)
|
105
|
-
|
108
|
+
net-imap
|
109
|
+
net-pop
|
110
|
+
net-smtp
|
111
|
+
marcel (1.0.4)
|
106
112
|
matrix (0.4.2)
|
107
|
-
method_source (1.
|
108
|
-
mini_mime (1.1.
|
109
|
-
minitest (5.
|
110
|
-
|
111
|
-
|
113
|
+
method_source (1.1.0)
|
114
|
+
mini_mime (1.1.5)
|
115
|
+
minitest (5.25.1)
|
116
|
+
net-imap (0.4.14)
|
117
|
+
date
|
118
|
+
net-protocol
|
119
|
+
net-pop (0.1.2)
|
120
|
+
net-protocol
|
121
|
+
net-protocol (0.2.2)
|
122
|
+
timeout
|
123
|
+
net-smtp (0.5.0)
|
124
|
+
net-protocol
|
125
|
+
nio4r (2.7.3)
|
126
|
+
nokogiri (1.16.7-x86_64-linux)
|
112
127
|
racc (~> 1.4)
|
113
|
-
public_suffix (
|
114
|
-
racc (1.
|
115
|
-
rack (2.2.
|
116
|
-
rack-test (
|
117
|
-
rack (>= 1.
|
118
|
-
rails (7.0.
|
119
|
-
actioncable (= 7.0.
|
120
|
-
actionmailbox (= 7.0.
|
121
|
-
actionmailer (= 7.0.
|
122
|
-
actionpack (= 7.0.
|
123
|
-
actiontext (= 7.0.
|
124
|
-
actionview (= 7.0.
|
125
|
-
activejob (= 7.0.
|
126
|
-
activemodel (= 7.0.
|
127
|
-
activerecord (= 7.0.
|
128
|
-
activestorage (= 7.0.
|
129
|
-
activesupport (= 7.0.
|
128
|
+
public_suffix (6.0.1)
|
129
|
+
racc (1.8.1)
|
130
|
+
rack (2.2.9)
|
131
|
+
rack-test (2.1.0)
|
132
|
+
rack (>= 1.3)
|
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)
|
130
145
|
bundler (>= 1.15.0)
|
131
|
-
railties (= 7.0.
|
132
|
-
rails-dom-testing (2.0
|
133
|
-
activesupport (>=
|
146
|
+
railties (= 7.0.8.4)
|
147
|
+
rails-dom-testing (2.2.0)
|
148
|
+
activesupport (>= 5.0.0)
|
149
|
+
minitest
|
134
150
|
nokogiri (>= 1.6)
|
135
|
-
rails-html-sanitizer (1.
|
136
|
-
loofah (~> 2.
|
137
|
-
|
138
|
-
|
139
|
-
|
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)
|
140
157
|
method_source
|
141
158
|
rake (>= 12.2)
|
142
159
|
thor (~> 1.0)
|
143
160
|
zeitwerk (~> 2.5)
|
144
|
-
rake (13.
|
145
|
-
regexp_parser (2.2
|
146
|
-
rspec (3.
|
147
|
-
rspec-core (~> 3.
|
148
|
-
rspec-expectations (~> 3.
|
149
|
-
rspec-mocks (~> 3.
|
150
|
-
rspec-core (3.
|
151
|
-
rspec-support (~> 3.
|
152
|
-
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)
|
153
170
|
diff-lcs (>= 1.2.0, < 2.0)
|
154
|
-
rspec-support (~> 3.
|
155
|
-
rspec-mocks (3.
|
171
|
+
rspec-support (~> 3.13.0)
|
172
|
+
rspec-mocks (3.13.1)
|
156
173
|
diff-lcs (>= 1.2.0, < 2.0)
|
157
|
-
rspec-support (~> 3.
|
158
|
-
rspec-support (3.
|
159
|
-
sprockets (3.7.
|
174
|
+
rspec-support (~> 3.13.0)
|
175
|
+
rspec-support (3.13.1)
|
176
|
+
sprockets (3.7.3)
|
177
|
+
base64
|
160
178
|
concurrent-ruby (~> 1.0)
|
161
179
|
rack (> 1, < 3)
|
162
|
-
sprockets-rails (3.
|
163
|
-
actionpack (>=
|
164
|
-
activesupport (>=
|
180
|
+
sprockets-rails (3.5.2)
|
181
|
+
actionpack (>= 6.1)
|
182
|
+
activesupport (>= 6.1)
|
165
183
|
sprockets (>= 3.0.0)
|
166
|
-
thor (1.1
|
167
|
-
|
184
|
+
thor (1.3.1)
|
185
|
+
timeout (0.4.1)
|
186
|
+
tzinfo (2.0.6)
|
168
187
|
concurrent-ruby (~> 1.0)
|
169
|
-
|
170
|
-
websocket-driver (0.7.5)
|
188
|
+
websocket-driver (0.7.6)
|
171
189
|
websocket-extensions (>= 0.1.0)
|
172
190
|
websocket-extensions (0.1.5)
|
173
191
|
xpath (3.2.0)
|
174
192
|
nokogiri (~> 1.8)
|
175
|
-
zeitwerk (2.
|
193
|
+
zeitwerk (2.6.17)
|
176
194
|
|
177
195
|
PLATFORMS
|
178
196
|
x86_64-linux
|
@@ -189,4 +207,4 @@ DEPENDENCIES
|
|
189
207
|
sprockets (~> 3.0)
|
190
208
|
|
191
209
|
BUNDLED WITH
|
192
|
-
2.
|
210
|
+
2.4.10
|
@@ -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
|