rbexy 2.0.0.rc5 → 2.0.0.rc6
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/.github/workflows/main.yml +2 -2
- data/Appraisals +7 -7
- data/Gemfile.lock +7 -4
- data/gemfiles/rails_7_0.gemfile +1 -0
- data/gemfiles/rails_7_0.gemfile.lock +189 -116
- data/gemfiles/rails_7_1.gemfile.lock +208 -133
- data/gemfiles/rails_7_2.gemfile.lock +204 -129
- data/gemfiles/{rails_6_1.gemfile → rails_8_0.gemfile} +1 -2
- data/gemfiles/rails_8_0.gemfile.lock +350 -0
- data/gemfiles/{rails_master.gemfile → rails_8_1.gemfile} +1 -1
- data/gemfiles/rails_8_1.gemfile.lock +353 -0
- data/lib/rbexy/component/backtrace_cleaner.rb +2 -1
- data/lib/rbexy/rails/component_template_resolver.rb +13 -36
- data/lib/rbexy/rails/rbx_dependency_tracker.rb +16 -17
- data/lib/rbexy/runtime.rb +1 -3
- data/lib/rbexy/version.rb +1 -1
- data/lib/rbexy.rb +1 -0
- data/rbexy.gemspec +4 -4
- metadata +24 -24
- data/gemfiles/rails_6_1.gemfile.lock +0 -245
- data/gemfiles/rails_master.gemfile.lock +0 -284
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6ec0bdcd23bf0056c35d870e182e83a88f73d2fa2b32dd325f8339300b5018d
|
|
4
|
+
data.tar.gz: 48d86d9779e1d628d320e6c3542063620658099f74a1be1cfa29632df581342e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a4083b44c19053b0d92d5b57ea53ae24ff54982ddeb6c6739fe87534f7101ce5382738b196ea781b5db3866691e9ba33b5b28a999140ef51c72602b28d2c48c
|
|
7
|
+
data.tar.gz: 5dc98896aeec586df60c021274b0befee254d71b9c20363aad1167901fc33c0e4a362671d1c3a3a5e4e6d94d58d622f199f7d904348cad3627f3fbde5f894a15
|
data/.github/workflows/main.yml
CHANGED
|
@@ -5,9 +5,9 @@ jobs:
|
|
|
5
5
|
strategy:
|
|
6
6
|
fail-fast: false
|
|
7
7
|
matrix:
|
|
8
|
-
gemfile: [
|
|
8
|
+
gemfile: [rails_7_0, rails_7_1, rails_7_2, rails_8_0, rails_8_1]
|
|
9
9
|
# quote version numbers, they are not "numbers"
|
|
10
|
-
ruby: ['3.
|
|
10
|
+
ruby: ['3.3']
|
|
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
|
|
13
13
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
|
data/Appraisals
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
appraise "rails-6-1" do
|
|
2
|
-
gem "rails", "~> 6.1.4"
|
|
3
|
-
gem "net-smtp", require: false
|
|
4
|
-
end
|
|
5
|
-
|
|
6
1
|
appraise "rails-7-0" do
|
|
7
2
|
gem "rails", "~> 7.0.0"
|
|
3
|
+
gem "sqlite3", "~> 1.4"
|
|
8
4
|
end
|
|
9
5
|
|
|
10
6
|
appraise "rails-7-1" do
|
|
@@ -15,6 +11,10 @@ appraise "rails-7-2" do
|
|
|
15
11
|
gem "rails", "~> 7.2.0"
|
|
16
12
|
end
|
|
17
13
|
|
|
18
|
-
appraise "rails-
|
|
19
|
-
gem "rails",
|
|
14
|
+
appraise "rails-8-0" do
|
|
15
|
+
gem "rails", "~> 8.0.0"
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
appraise "rails-8-1" do
|
|
19
|
+
gem "rails", "~> 8.1.0"
|
|
20
20
|
end
|
data/Gemfile.lock
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rbexy (2.0.0.
|
|
5
|
-
actionview (>=
|
|
6
|
-
activesupport (>=
|
|
4
|
+
rbexy (2.0.0.rc6)
|
|
5
|
+
actionview (>= 7.0, < 8.2)
|
|
6
|
+
activesupport (>= 7.0, < 8.2)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
@@ -151,6 +151,8 @@ GEM
|
|
|
151
151
|
nokogiri (1.16.7)
|
|
152
152
|
mini_portile2 (~> 2.8.2)
|
|
153
153
|
racc (~> 1.4)
|
|
154
|
+
nokogiri (1.16.7-x86_64-linux)
|
|
155
|
+
racc (~> 1.4)
|
|
154
156
|
notiffany (0.1.3)
|
|
155
157
|
nenv (~> 0.1)
|
|
156
158
|
shellany (~> 0.0)
|
|
@@ -258,6 +260,7 @@ GEM
|
|
|
258
260
|
|
|
259
261
|
PLATFORMS
|
|
260
262
|
ruby
|
|
263
|
+
x86_64-linux
|
|
261
264
|
|
|
262
265
|
DEPENDENCIES
|
|
263
266
|
appraisal (~> 2.2)
|
|
@@ -265,7 +268,7 @@ DEPENDENCIES
|
|
|
265
268
|
memory_profiler (~> 0.9.14)
|
|
266
269
|
pry-byebug
|
|
267
270
|
puma
|
|
268
|
-
rails (>=
|
|
271
|
+
rails (>= 7.0, < 8.2)
|
|
269
272
|
rake
|
|
270
273
|
rbexy!
|
|
271
274
|
rspec (~> 3.12)
|
data/gemfiles/rails_7_0.gemfile
CHANGED
|
@@ -1,97 +1,122 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
rbexy (2.0.0.
|
|
5
|
-
actionview (>=
|
|
6
|
-
activesupport (>=
|
|
4
|
+
rbexy (2.0.0.rc6)
|
|
5
|
+
actionview (>= 7.0, < 8.2)
|
|
6
|
+
activesupport (>= 7.0, < 8.2)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
actioncable (7.0.
|
|
12
|
-
actionpack (= 7.0.
|
|
13
|
-
activesupport (= 7.0.
|
|
11
|
+
actioncable (7.0.10)
|
|
12
|
+
actionpack (= 7.0.10)
|
|
13
|
+
activesupport (= 7.0.10)
|
|
14
14
|
nio4r (~> 2.0)
|
|
15
15
|
websocket-driver (>= 0.6.1)
|
|
16
|
-
actionmailbox (7.0.
|
|
17
|
-
actionpack (= 7.0.
|
|
18
|
-
activejob (= 7.0.
|
|
19
|
-
activerecord (= 7.0.
|
|
20
|
-
activestorage (= 7.0.
|
|
21
|
-
activesupport (= 7.0.
|
|
16
|
+
actionmailbox (7.0.10)
|
|
17
|
+
actionpack (= 7.0.10)
|
|
18
|
+
activejob (= 7.0.10)
|
|
19
|
+
activerecord (= 7.0.10)
|
|
20
|
+
activestorage (= 7.0.10)
|
|
21
|
+
activesupport (= 7.0.10)
|
|
22
22
|
mail (>= 2.7.1)
|
|
23
23
|
net-imap
|
|
24
24
|
net-pop
|
|
25
25
|
net-smtp
|
|
26
|
-
actionmailer (7.0.
|
|
27
|
-
actionpack (= 7.0.
|
|
28
|
-
actionview (= 7.0.
|
|
29
|
-
activejob (= 7.0.
|
|
30
|
-
activesupport (= 7.0.
|
|
26
|
+
actionmailer (7.0.10)
|
|
27
|
+
actionpack (= 7.0.10)
|
|
28
|
+
actionview (= 7.0.10)
|
|
29
|
+
activejob (= 7.0.10)
|
|
30
|
+
activesupport (= 7.0.10)
|
|
31
31
|
mail (~> 2.5, >= 2.5.4)
|
|
32
32
|
net-imap
|
|
33
33
|
net-pop
|
|
34
34
|
net-smtp
|
|
35
35
|
rails-dom-testing (~> 2.0)
|
|
36
|
-
actionpack (7.0.
|
|
37
|
-
actionview (= 7.0.
|
|
38
|
-
activesupport (= 7.0.
|
|
36
|
+
actionpack (7.0.10)
|
|
37
|
+
actionview (= 7.0.10)
|
|
38
|
+
activesupport (= 7.0.10)
|
|
39
|
+
racc
|
|
39
40
|
rack (~> 2.0, >= 2.2.4)
|
|
40
41
|
rack-test (>= 0.6.3)
|
|
41
42
|
rails-dom-testing (~> 2.0)
|
|
42
43
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
43
|
-
actiontext (7.0.
|
|
44
|
-
actionpack (= 7.0.
|
|
45
|
-
activerecord (= 7.0.
|
|
46
|
-
activestorage (= 7.0.
|
|
47
|
-
activesupport (= 7.0.
|
|
44
|
+
actiontext (7.0.10)
|
|
45
|
+
actionpack (= 7.0.10)
|
|
46
|
+
activerecord (= 7.0.10)
|
|
47
|
+
activestorage (= 7.0.10)
|
|
48
|
+
activesupport (= 7.0.10)
|
|
48
49
|
globalid (>= 0.6.0)
|
|
49
50
|
nokogiri (>= 1.8.5)
|
|
50
|
-
actionview (7.0.
|
|
51
|
-
activesupport (= 7.0.
|
|
51
|
+
actionview (7.0.10)
|
|
52
|
+
activesupport (= 7.0.10)
|
|
52
53
|
builder (~> 3.1)
|
|
53
54
|
erubi (~> 1.4)
|
|
54
55
|
rails-dom-testing (~> 2.0)
|
|
55
56
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
56
|
-
activejob (7.0.
|
|
57
|
-
activesupport (= 7.0.
|
|
57
|
+
activejob (7.0.10)
|
|
58
|
+
activesupport (= 7.0.10)
|
|
58
59
|
globalid (>= 0.3.6)
|
|
59
|
-
activemodel (7.0.
|
|
60
|
-
activesupport (= 7.0.
|
|
61
|
-
activerecord (7.0.
|
|
62
|
-
activemodel (= 7.0.
|
|
63
|
-
activesupport (= 7.0.
|
|
64
|
-
activestorage (7.0.
|
|
65
|
-
actionpack (= 7.0.
|
|
66
|
-
activejob (= 7.0.
|
|
67
|
-
activerecord (= 7.0.
|
|
68
|
-
activesupport (= 7.0.
|
|
60
|
+
activemodel (7.0.10)
|
|
61
|
+
activesupport (= 7.0.10)
|
|
62
|
+
activerecord (7.0.10)
|
|
63
|
+
activemodel (= 7.0.10)
|
|
64
|
+
activesupport (= 7.0.10)
|
|
65
|
+
activestorage (7.0.10)
|
|
66
|
+
actionpack (= 7.0.10)
|
|
67
|
+
activejob (= 7.0.10)
|
|
68
|
+
activerecord (= 7.0.10)
|
|
69
|
+
activesupport (= 7.0.10)
|
|
69
70
|
marcel (~> 1.0)
|
|
70
71
|
mini_mime (>= 1.1.0)
|
|
71
|
-
activesupport (7.0.
|
|
72
|
+
activesupport (7.0.10)
|
|
73
|
+
base64
|
|
74
|
+
benchmark (>= 0.3)
|
|
75
|
+
bigdecimal
|
|
72
76
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
77
|
+
drb
|
|
73
78
|
i18n (>= 1.6, < 2)
|
|
79
|
+
logger (>= 1.4.2)
|
|
74
80
|
minitest (>= 5.1)
|
|
81
|
+
mutex_m
|
|
82
|
+
securerandom (>= 0.3)
|
|
75
83
|
tzinfo (~> 2.0)
|
|
76
84
|
appraisal (2.5.0)
|
|
77
85
|
bundler
|
|
78
86
|
rake
|
|
79
87
|
thor (>= 0.14.0)
|
|
80
|
-
|
|
81
|
-
|
|
88
|
+
base64 (0.3.0)
|
|
89
|
+
benchmark (0.5.0)
|
|
90
|
+
bigdecimal (4.1.1)
|
|
91
|
+
builder (3.3.0)
|
|
92
|
+
byebug (13.0.0)
|
|
93
|
+
reline (>= 0.6.0)
|
|
82
94
|
coderay (1.1.3)
|
|
83
|
-
concurrent-ruby (1.
|
|
95
|
+
concurrent-ruby (1.3.6)
|
|
84
96
|
crass (1.0.6)
|
|
85
|
-
date (3.
|
|
86
|
-
diff-lcs (1.
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
97
|
+
date (3.5.1)
|
|
98
|
+
diff-lcs (1.6.2)
|
|
99
|
+
drb (2.2.3)
|
|
100
|
+
erubi (1.13.1)
|
|
101
|
+
ffi (1.17.4)
|
|
102
|
+
ffi (1.17.4-aarch64-linux-gnu)
|
|
103
|
+
ffi (1.17.4-aarch64-linux-musl)
|
|
104
|
+
ffi (1.17.4-arm-linux-gnu)
|
|
105
|
+
ffi (1.17.4-arm-linux-musl)
|
|
106
|
+
ffi (1.17.4-arm64-darwin)
|
|
107
|
+
ffi (1.17.4-x86-linux-gnu)
|
|
108
|
+
ffi (1.17.4-x86-linux-musl)
|
|
109
|
+
ffi (1.17.4-x86_64-darwin)
|
|
110
|
+
ffi (1.17.4-x86_64-linux-gnu)
|
|
111
|
+
ffi (1.17.4-x86_64-linux-musl)
|
|
112
|
+
formatador (1.2.3)
|
|
113
|
+
reline
|
|
114
|
+
globalid (1.3.0)
|
|
91
115
|
activesupport (>= 6.1)
|
|
92
|
-
guard (2.
|
|
116
|
+
guard (2.20.1)
|
|
93
117
|
formatador (>= 0.2.4)
|
|
94
118
|
listen (>= 2.7, < 4.0)
|
|
119
|
+
logger (~> 1.6)
|
|
95
120
|
lumberjack (>= 1.0.12, < 2.0)
|
|
96
121
|
nenv (~> 0.1)
|
|
97
122
|
notiffany (~> 0.0)
|
|
@@ -103,133 +128,181 @@ GEM
|
|
|
103
128
|
guard (~> 2.1)
|
|
104
129
|
guard-compat (~> 1.1)
|
|
105
130
|
rspec (>= 2.99.0, < 4.0)
|
|
106
|
-
i18n (1.14.
|
|
131
|
+
i18n (1.14.8)
|
|
107
132
|
concurrent-ruby (~> 1.0)
|
|
108
|
-
|
|
133
|
+
io-console (0.8.2)
|
|
134
|
+
listen (3.10.0)
|
|
135
|
+
logger
|
|
109
136
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
110
137
|
rb-inotify (~> 0.9, >= 0.9.10)
|
|
111
|
-
|
|
138
|
+
logger (1.7.0)
|
|
139
|
+
loofah (2.25.1)
|
|
112
140
|
crass (~> 1.0.2)
|
|
113
141
|
nokogiri (>= 1.12.0)
|
|
114
|
-
lumberjack (1.2
|
|
115
|
-
mail (2.
|
|
142
|
+
lumberjack (1.4.2)
|
|
143
|
+
mail (2.9.0)
|
|
144
|
+
logger
|
|
116
145
|
mini_mime (>= 0.1.1)
|
|
117
146
|
net-imap
|
|
118
147
|
net-pop
|
|
119
148
|
net-smtp
|
|
120
|
-
marcel (1.0
|
|
149
|
+
marcel (1.1.0)
|
|
121
150
|
memory_profiler (0.9.14)
|
|
122
|
-
method_source (1.
|
|
151
|
+
method_source (1.1.0)
|
|
123
152
|
mini_mime (1.1.5)
|
|
124
|
-
|
|
153
|
+
mini_portile2 (2.8.9)
|
|
154
|
+
minitest (6.0.3)
|
|
155
|
+
drb (~> 2.0)
|
|
156
|
+
prism (~> 1.5)
|
|
157
|
+
mutex_m (0.3.0)
|
|
125
158
|
nenv (0.3.0)
|
|
126
|
-
net-imap (0.
|
|
159
|
+
net-imap (0.6.3)
|
|
127
160
|
date
|
|
128
161
|
net-protocol
|
|
129
162
|
net-pop (0.1.2)
|
|
130
163
|
net-protocol
|
|
131
164
|
net-protocol (0.2.2)
|
|
132
165
|
timeout
|
|
133
|
-
net-smtp (0.
|
|
166
|
+
net-smtp (0.5.1)
|
|
134
167
|
net-protocol
|
|
135
|
-
nio4r (2.7.
|
|
136
|
-
nokogiri (1.
|
|
168
|
+
nio4r (2.7.5)
|
|
169
|
+
nokogiri (1.19.2)
|
|
170
|
+
mini_portile2 (~> 2.8.2)
|
|
137
171
|
racc (~> 1.4)
|
|
138
|
-
nokogiri (1.
|
|
172
|
+
nokogiri (1.19.2-aarch64-linux-gnu)
|
|
173
|
+
racc (~> 1.4)
|
|
174
|
+
nokogiri (1.19.2-aarch64-linux-musl)
|
|
175
|
+
racc (~> 1.4)
|
|
176
|
+
nokogiri (1.19.2-arm-linux-gnu)
|
|
177
|
+
racc (~> 1.4)
|
|
178
|
+
nokogiri (1.19.2-arm-linux-musl)
|
|
179
|
+
racc (~> 1.4)
|
|
180
|
+
nokogiri (1.19.2-arm64-darwin)
|
|
181
|
+
racc (~> 1.4)
|
|
182
|
+
nokogiri (1.19.2-x86_64-darwin)
|
|
183
|
+
racc (~> 1.4)
|
|
184
|
+
nokogiri (1.19.2-x86_64-linux-gnu)
|
|
185
|
+
racc (~> 1.4)
|
|
186
|
+
nokogiri (1.19.2-x86_64-linux-musl)
|
|
139
187
|
racc (~> 1.4)
|
|
140
188
|
notiffany (0.1.3)
|
|
141
189
|
nenv (~> 0.1)
|
|
142
190
|
shellany (~> 0.0)
|
|
143
|
-
|
|
191
|
+
prism (1.9.0)
|
|
192
|
+
pry (0.16.0)
|
|
144
193
|
coderay (~> 1.1)
|
|
145
194
|
method_source (~> 1.0)
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
195
|
+
reline (>= 0.6.0)
|
|
196
|
+
pry-byebug (3.12.0)
|
|
197
|
+
byebug (~> 13.0)
|
|
198
|
+
pry (>= 0.13, < 0.17)
|
|
199
|
+
puma (7.2.0)
|
|
150
200
|
nio4r (~> 2.0)
|
|
151
|
-
racc (1.
|
|
152
|
-
rack (2.2.
|
|
153
|
-
rack-test (2.
|
|
201
|
+
racc (1.8.1)
|
|
202
|
+
rack (2.2.23)
|
|
203
|
+
rack-test (2.2.0)
|
|
154
204
|
rack (>= 1.3)
|
|
155
|
-
rails (7.0.
|
|
156
|
-
actioncable (= 7.0.
|
|
157
|
-
actionmailbox (= 7.0.
|
|
158
|
-
actionmailer (= 7.0.
|
|
159
|
-
actionpack (= 7.0.
|
|
160
|
-
actiontext (= 7.0.
|
|
161
|
-
actionview (= 7.0.
|
|
162
|
-
activejob (= 7.0.
|
|
163
|
-
activemodel (= 7.0.
|
|
164
|
-
activerecord (= 7.0.
|
|
165
|
-
activestorage (= 7.0.
|
|
166
|
-
activesupport (= 7.0.
|
|
205
|
+
rails (7.0.10)
|
|
206
|
+
actioncable (= 7.0.10)
|
|
207
|
+
actionmailbox (= 7.0.10)
|
|
208
|
+
actionmailer (= 7.0.10)
|
|
209
|
+
actionpack (= 7.0.10)
|
|
210
|
+
actiontext (= 7.0.10)
|
|
211
|
+
actionview (= 7.0.10)
|
|
212
|
+
activejob (= 7.0.10)
|
|
213
|
+
activemodel (= 7.0.10)
|
|
214
|
+
activerecord (= 7.0.10)
|
|
215
|
+
activestorage (= 7.0.10)
|
|
216
|
+
activesupport (= 7.0.10)
|
|
167
217
|
bundler (>= 1.15.0)
|
|
168
|
-
railties (= 7.0.
|
|
169
|
-
rails-dom-testing (2.
|
|
218
|
+
railties (= 7.0.10)
|
|
219
|
+
rails-dom-testing (2.3.0)
|
|
170
220
|
activesupport (>= 5.0.0)
|
|
171
221
|
minitest
|
|
172
222
|
nokogiri (>= 1.6)
|
|
173
|
-
rails-html-sanitizer (1.
|
|
174
|
-
loofah (~> 2.
|
|
175
|
-
nokogiri (
|
|
176
|
-
railties (7.0.
|
|
177
|
-
actionpack (= 7.0.
|
|
178
|
-
activesupport (= 7.0.
|
|
223
|
+
rails-html-sanitizer (1.7.0)
|
|
224
|
+
loofah (~> 2.25)
|
|
225
|
+
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)
|
|
226
|
+
railties (7.0.10)
|
|
227
|
+
actionpack (= 7.0.10)
|
|
228
|
+
activesupport (= 7.0.10)
|
|
179
229
|
method_source
|
|
180
230
|
rake (>= 12.2)
|
|
181
231
|
thor (~> 1.0)
|
|
182
232
|
zeitwerk (~> 2.5)
|
|
183
|
-
rake (13.1
|
|
233
|
+
rake (13.3.1)
|
|
184
234
|
rb-fsevent (0.11.2)
|
|
185
|
-
rb-inotify (0.
|
|
235
|
+
rb-inotify (0.11.1)
|
|
186
236
|
ffi (~> 1.0)
|
|
187
|
-
|
|
237
|
+
reline (0.6.3)
|
|
238
|
+
io-console (~> 0.5)
|
|
239
|
+
rspec (3.13.2)
|
|
188
240
|
rspec-core (~> 3.13.0)
|
|
189
241
|
rspec-expectations (~> 3.13.0)
|
|
190
242
|
rspec-mocks (~> 3.13.0)
|
|
191
|
-
rspec-core (3.13.
|
|
243
|
+
rspec-core (3.13.6)
|
|
192
244
|
rspec-support (~> 3.13.0)
|
|
193
|
-
rspec-expectations (3.13.
|
|
245
|
+
rspec-expectations (3.13.5)
|
|
194
246
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
195
247
|
rspec-support (~> 3.13.0)
|
|
196
248
|
rspec-html-matchers (0.9.4)
|
|
197
249
|
nokogiri (~> 1)
|
|
198
250
|
rspec (>= 3.0.0.a, < 4)
|
|
199
|
-
rspec-mocks (3.13.
|
|
251
|
+
rspec-mocks (3.13.8)
|
|
200
252
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
201
253
|
rspec-support (~> 3.13.0)
|
|
202
|
-
rspec-rails (6.1.
|
|
254
|
+
rspec-rails (6.1.5)
|
|
203
255
|
actionpack (>= 6.1)
|
|
204
256
|
activesupport (>= 6.1)
|
|
205
257
|
railties (>= 6.1)
|
|
206
|
-
rspec-core (~> 3.
|
|
207
|
-
rspec-expectations (~> 3.
|
|
208
|
-
rspec-mocks (~> 3.
|
|
209
|
-
rspec-support (~> 3.
|
|
210
|
-
rspec-support (3.13.
|
|
258
|
+
rspec-core (~> 3.13)
|
|
259
|
+
rspec-expectations (~> 3.13)
|
|
260
|
+
rspec-mocks (~> 3.13)
|
|
261
|
+
rspec-support (~> 3.13)
|
|
262
|
+
rspec-support (3.13.7)
|
|
263
|
+
securerandom (0.4.1)
|
|
211
264
|
shellany (0.0.1)
|
|
212
|
-
sprockets (4.2.
|
|
265
|
+
sprockets (4.2.2)
|
|
213
266
|
concurrent-ruby (~> 1.0)
|
|
267
|
+
logger
|
|
214
268
|
rack (>= 2.2.4, < 4)
|
|
215
|
-
sprockets-rails (3.
|
|
216
|
-
actionpack (>=
|
|
217
|
-
activesupport (>=
|
|
269
|
+
sprockets-rails (3.5.2)
|
|
270
|
+
actionpack (>= 6.1)
|
|
271
|
+
activesupport (>= 6.1)
|
|
218
272
|
sprockets (>= 3.0.0)
|
|
219
|
-
sqlite3 (1.7.
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
273
|
+
sqlite3 (1.7.3)
|
|
274
|
+
mini_portile2 (~> 2.8.0)
|
|
275
|
+
sqlite3 (1.7.3-aarch64-linux)
|
|
276
|
+
sqlite3 (1.7.3-arm-linux)
|
|
277
|
+
sqlite3 (1.7.3-arm64-darwin)
|
|
278
|
+
sqlite3 (1.7.3-x86-linux)
|
|
279
|
+
sqlite3 (1.7.3-x86_64-darwin)
|
|
280
|
+
sqlite3 (1.7.3-x86_64-linux)
|
|
281
|
+
thor (1.5.0)
|
|
282
|
+
timeout (0.6.1)
|
|
223
283
|
tzinfo (2.0.6)
|
|
224
284
|
concurrent-ruby (~> 1.0)
|
|
225
|
-
websocket-driver (0.
|
|
285
|
+
websocket-driver (0.8.0)
|
|
286
|
+
base64
|
|
226
287
|
websocket-extensions (>= 0.1.0)
|
|
227
288
|
websocket-extensions (0.1.5)
|
|
228
|
-
zeitwerk (2.
|
|
289
|
+
zeitwerk (2.7.5)
|
|
229
290
|
|
|
230
291
|
PLATFORMS
|
|
231
|
-
|
|
292
|
+
aarch64-linux-gnu
|
|
293
|
+
aarch64-linux-musl
|
|
294
|
+
arm-linux
|
|
295
|
+
arm-linux-gnu
|
|
296
|
+
arm-linux-musl
|
|
297
|
+
arm64-darwin
|
|
298
|
+
ruby
|
|
299
|
+
x86-linux
|
|
300
|
+
x86-linux-gnu
|
|
301
|
+
x86-linux-musl
|
|
302
|
+
x86_64-darwin
|
|
232
303
|
x86_64-linux
|
|
304
|
+
x86_64-linux-gnu
|
|
305
|
+
x86_64-linux-musl
|
|
233
306
|
|
|
234
307
|
DEPENDENCIES
|
|
235
308
|
appraisal (~> 2.2)
|
|
@@ -244,7 +317,7 @@ DEPENDENCIES
|
|
|
244
317
|
rspec-html-matchers (~> 0.9.3)
|
|
245
318
|
rspec-rails (~> 6.0, >= 6.0.3)
|
|
246
319
|
sprockets-rails (>= 2, < 4)
|
|
247
|
-
sqlite3
|
|
320
|
+
sqlite3 (~> 1.4)
|
|
248
321
|
|
|
249
322
|
BUNDLED WITH
|
|
250
|
-
2.5.
|
|
323
|
+
2.5.16
|