rbexy 2.0.0.beta8 → 2.0.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +20 -0
- data/.gitignore +1 -0
- data/.rspec +1 -0
- data/.travis.yml +2 -0
- data/Appraisals +12 -0
- data/Dockerfile +3 -2
- data/Gemfile.lock +96 -80
- data/README.md +139 -184
- data/bin/test +43 -0
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_6_1.gemfile +8 -0
- data/gemfiles/rails_6_1.gemfile.lock +235 -0
- data/gemfiles/rails_7_0.gemfile +7 -0
- data/gemfiles/rails_7_0.gemfile.lock +249 -0
- data/gemfiles/rails_master.gemfile +7 -0
- data/gemfiles/rails_master.gemfile.lock +255 -0
- data/lib/rbexy/component.rb +14 -2
- data/lib/rbexy/nodes/abstract_node.rb +2 -0
- data/lib/rbexy/nodes/html_element.rb +5 -1
- data/lib/rbexy/nodes/util.rb +1 -1
- data/lib/rbexy/rails/component_template_resolver.rb +15 -3
- data/lib/rbexy/version.rb +1 -1
- data/lib/rbexy.rb +1 -0
- data/rbexy.gemspec +7 -4
- metadata +74 -16
@@ -0,0 +1,235 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rbexy (2.0.0.rc2)
|
5
|
+
actionview (>= 6, < 7.1)
|
6
|
+
activesupport (>= 6, < 7.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (6.1.4.6)
|
12
|
+
actionpack (= 6.1.4.6)
|
13
|
+
activesupport (= 6.1.4.6)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailbox (6.1.4.6)
|
17
|
+
actionpack (= 6.1.4.6)
|
18
|
+
activejob (= 6.1.4.6)
|
19
|
+
activerecord (= 6.1.4.6)
|
20
|
+
activestorage (= 6.1.4.6)
|
21
|
+
activesupport (= 6.1.4.6)
|
22
|
+
mail (>= 2.7.1)
|
23
|
+
actionmailer (6.1.4.6)
|
24
|
+
actionpack (= 6.1.4.6)
|
25
|
+
actionview (= 6.1.4.6)
|
26
|
+
activejob (= 6.1.4.6)
|
27
|
+
activesupport (= 6.1.4.6)
|
28
|
+
mail (~> 2.5, >= 2.5.4)
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (6.1.4.6)
|
31
|
+
actionview (= 6.1.4.6)
|
32
|
+
activesupport (= 6.1.4.6)
|
33
|
+
rack (~> 2.0, >= 2.0.9)
|
34
|
+
rack-test (>= 0.6.3)
|
35
|
+
rails-dom-testing (~> 2.0)
|
36
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
+
actiontext (6.1.4.6)
|
38
|
+
actionpack (= 6.1.4.6)
|
39
|
+
activerecord (= 6.1.4.6)
|
40
|
+
activestorage (= 6.1.4.6)
|
41
|
+
activesupport (= 6.1.4.6)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.1.4.6)
|
44
|
+
activesupport (= 6.1.4.6)
|
45
|
+
builder (~> 3.1)
|
46
|
+
erubi (~> 1.4)
|
47
|
+
rails-dom-testing (~> 2.0)
|
48
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
+
activejob (6.1.4.6)
|
50
|
+
activesupport (= 6.1.4.6)
|
51
|
+
globalid (>= 0.3.6)
|
52
|
+
activemodel (6.1.4.6)
|
53
|
+
activesupport (= 6.1.4.6)
|
54
|
+
activerecord (6.1.4.6)
|
55
|
+
activemodel (= 6.1.4.6)
|
56
|
+
activesupport (= 6.1.4.6)
|
57
|
+
activestorage (6.1.4.6)
|
58
|
+
actionpack (= 6.1.4.6)
|
59
|
+
activejob (= 6.1.4.6)
|
60
|
+
activerecord (= 6.1.4.6)
|
61
|
+
activesupport (= 6.1.4.6)
|
62
|
+
marcel (~> 1.0.0)
|
63
|
+
mini_mime (>= 1.1.0)
|
64
|
+
activesupport (6.1.4.6)
|
65
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
66
|
+
i18n (>= 1.6, < 2)
|
67
|
+
minitest (>= 5.1)
|
68
|
+
tzinfo (~> 2.0)
|
69
|
+
zeitwerk (~> 2.3)
|
70
|
+
appraisal (2.4.1)
|
71
|
+
bundler
|
72
|
+
rake
|
73
|
+
thor (>= 0.14.0)
|
74
|
+
builder (3.2.4)
|
75
|
+
byebug (11.1.3)
|
76
|
+
coderay (1.1.3)
|
77
|
+
concurrent-ruby (1.1.9)
|
78
|
+
crass (1.0.6)
|
79
|
+
diff-lcs (1.5.0)
|
80
|
+
digest (3.1.0)
|
81
|
+
erubi (1.10.0)
|
82
|
+
ffi (1.15.5)
|
83
|
+
formatador (1.1.0)
|
84
|
+
globalid (1.0.0)
|
85
|
+
activesupport (>= 5.0)
|
86
|
+
guard (2.18.0)
|
87
|
+
formatador (>= 0.2.4)
|
88
|
+
listen (>= 2.7, < 4.0)
|
89
|
+
lumberjack (>= 1.0.12, < 2.0)
|
90
|
+
nenv (~> 0.1)
|
91
|
+
notiffany (~> 0.0)
|
92
|
+
pry (>= 0.13.0)
|
93
|
+
shellany (~> 0.0)
|
94
|
+
thor (>= 0.18.1)
|
95
|
+
guard-compat (1.2.1)
|
96
|
+
guard-rspec (4.7.3)
|
97
|
+
guard (~> 2.1)
|
98
|
+
guard-compat (~> 1.1)
|
99
|
+
rspec (>= 2.99.0, < 4.0)
|
100
|
+
i18n (1.10.0)
|
101
|
+
concurrent-ruby (~> 1.0)
|
102
|
+
io-wait (0.2.1)
|
103
|
+
listen (3.7.1)
|
104
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
105
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
106
|
+
loofah (2.14.0)
|
107
|
+
crass (~> 1.0.2)
|
108
|
+
nokogiri (>= 1.5.9)
|
109
|
+
lumberjack (1.2.8)
|
110
|
+
mail (2.7.1)
|
111
|
+
mini_mime (>= 0.1.1)
|
112
|
+
marcel (1.0.2)
|
113
|
+
memory_profiler (0.9.14)
|
114
|
+
method_source (1.0.0)
|
115
|
+
mini_mime (1.1.2)
|
116
|
+
minitest (5.15.0)
|
117
|
+
nenv (0.3.0)
|
118
|
+
net-protocol (0.1.2)
|
119
|
+
io-wait
|
120
|
+
timeout
|
121
|
+
net-smtp (0.3.1)
|
122
|
+
digest
|
123
|
+
net-protocol
|
124
|
+
timeout
|
125
|
+
nio4r (2.5.8)
|
126
|
+
nokogiri (1.13.3-x86_64-linux)
|
127
|
+
racc (~> 1.4)
|
128
|
+
notiffany (0.1.3)
|
129
|
+
nenv (~> 0.1)
|
130
|
+
shellany (~> 0.0)
|
131
|
+
pry (0.13.1)
|
132
|
+
coderay (~> 1.1)
|
133
|
+
method_source (~> 1.0)
|
134
|
+
pry-byebug (3.9.0)
|
135
|
+
byebug (~> 11.0)
|
136
|
+
pry (~> 0.13.0)
|
137
|
+
puma (5.6.2)
|
138
|
+
nio4r (~> 2.0)
|
139
|
+
racc (1.6.0)
|
140
|
+
rack (2.2.3)
|
141
|
+
rack-test (1.1.0)
|
142
|
+
rack (>= 1.0, < 3)
|
143
|
+
rails (6.1.4.6)
|
144
|
+
actioncable (= 6.1.4.6)
|
145
|
+
actionmailbox (= 6.1.4.6)
|
146
|
+
actionmailer (= 6.1.4.6)
|
147
|
+
actionpack (= 6.1.4.6)
|
148
|
+
actiontext (= 6.1.4.6)
|
149
|
+
actionview (= 6.1.4.6)
|
150
|
+
activejob (= 6.1.4.6)
|
151
|
+
activemodel (= 6.1.4.6)
|
152
|
+
activerecord (= 6.1.4.6)
|
153
|
+
activestorage (= 6.1.4.6)
|
154
|
+
activesupport (= 6.1.4.6)
|
155
|
+
bundler (>= 1.15.0)
|
156
|
+
railties (= 6.1.4.6)
|
157
|
+
sprockets-rails (>= 2.0.0)
|
158
|
+
rails-dom-testing (2.0.3)
|
159
|
+
activesupport (>= 4.2.0)
|
160
|
+
nokogiri (>= 1.6)
|
161
|
+
rails-html-sanitizer (1.4.2)
|
162
|
+
loofah (~> 2.3)
|
163
|
+
railties (6.1.4.6)
|
164
|
+
actionpack (= 6.1.4.6)
|
165
|
+
activesupport (= 6.1.4.6)
|
166
|
+
method_source
|
167
|
+
rake (>= 0.13)
|
168
|
+
thor (~> 1.0)
|
169
|
+
rake (13.0.6)
|
170
|
+
rb-fsevent (0.11.1)
|
171
|
+
rb-inotify (0.10.1)
|
172
|
+
ffi (~> 1.0)
|
173
|
+
rspec (3.11.0)
|
174
|
+
rspec-core (~> 3.11.0)
|
175
|
+
rspec-expectations (~> 3.11.0)
|
176
|
+
rspec-mocks (~> 3.11.0)
|
177
|
+
rspec-core (3.11.0)
|
178
|
+
rspec-support (~> 3.11.0)
|
179
|
+
rspec-expectations (3.11.0)
|
180
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
181
|
+
rspec-support (~> 3.11.0)
|
182
|
+
rspec-html-matchers (0.9.4)
|
183
|
+
nokogiri (~> 1)
|
184
|
+
rspec (>= 3.0.0.a, < 4)
|
185
|
+
rspec-mocks (3.11.0)
|
186
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
187
|
+
rspec-support (~> 3.11.0)
|
188
|
+
rspec-rails (4.1.2)
|
189
|
+
actionpack (>= 4.2)
|
190
|
+
activesupport (>= 4.2)
|
191
|
+
railties (>= 4.2)
|
192
|
+
rspec-core (~> 3.10)
|
193
|
+
rspec-expectations (~> 3.10)
|
194
|
+
rspec-mocks (~> 3.10)
|
195
|
+
rspec-support (~> 3.10)
|
196
|
+
rspec-support (3.11.0)
|
197
|
+
shellany (0.0.1)
|
198
|
+
sprockets (4.0.3)
|
199
|
+
concurrent-ruby (~> 1.0)
|
200
|
+
rack (> 1, < 3)
|
201
|
+
sprockets-rails (3.4.2)
|
202
|
+
actionpack (>= 5.2)
|
203
|
+
activesupport (>= 5.2)
|
204
|
+
sprockets (>= 3.0.0)
|
205
|
+
sqlite3 (1.4.2)
|
206
|
+
thor (1.2.1)
|
207
|
+
timeout (0.2.0)
|
208
|
+
tzinfo (2.0.4)
|
209
|
+
concurrent-ruby (~> 1.0)
|
210
|
+
websocket-driver (0.7.5)
|
211
|
+
websocket-extensions (>= 0.1.0)
|
212
|
+
websocket-extensions (0.1.5)
|
213
|
+
zeitwerk (2.5.4)
|
214
|
+
|
215
|
+
PLATFORMS
|
216
|
+
x86_64-linux
|
217
|
+
|
218
|
+
DEPENDENCIES
|
219
|
+
appraisal (~> 2.2)
|
220
|
+
guard-rspec (~> 4.7, >= 4.7.3)
|
221
|
+
memory_profiler (~> 0.9.14)
|
222
|
+
net-smtp
|
223
|
+
pry-byebug
|
224
|
+
puma
|
225
|
+
rails (~> 6.1.4)
|
226
|
+
rake
|
227
|
+
rbexy!
|
228
|
+
rspec (~> 3.9)
|
229
|
+
rspec-html-matchers (~> 0.9.3)
|
230
|
+
rspec-rails (~> 4.0, >= 4.0.1)
|
231
|
+
sprockets-rails (>= 2, < 4)
|
232
|
+
sqlite3
|
233
|
+
|
234
|
+
BUNDLED WITH
|
235
|
+
2.2.3
|
@@ -0,0 +1,249 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rbexy (2.0.0.rc2)
|
5
|
+
actionview (>= 6, < 7.1)
|
6
|
+
activesupport (>= 6, < 7.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (7.0.2.2)
|
12
|
+
actionpack (= 7.0.2.2)
|
13
|
+
activesupport (= 7.0.2.2)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailbox (7.0.2.2)
|
17
|
+
actionpack (= 7.0.2.2)
|
18
|
+
activejob (= 7.0.2.2)
|
19
|
+
activerecord (= 7.0.2.2)
|
20
|
+
activestorage (= 7.0.2.2)
|
21
|
+
activesupport (= 7.0.2.2)
|
22
|
+
mail (>= 2.7.1)
|
23
|
+
net-imap
|
24
|
+
net-pop
|
25
|
+
net-smtp
|
26
|
+
actionmailer (7.0.2.2)
|
27
|
+
actionpack (= 7.0.2.2)
|
28
|
+
actionview (= 7.0.2.2)
|
29
|
+
activejob (= 7.0.2.2)
|
30
|
+
activesupport (= 7.0.2.2)
|
31
|
+
mail (~> 2.5, >= 2.5.4)
|
32
|
+
net-imap
|
33
|
+
net-pop
|
34
|
+
net-smtp
|
35
|
+
rails-dom-testing (~> 2.0)
|
36
|
+
actionpack (7.0.2.2)
|
37
|
+
actionview (= 7.0.2.2)
|
38
|
+
activesupport (= 7.0.2.2)
|
39
|
+
rack (~> 2.0, >= 2.2.0)
|
40
|
+
rack-test (>= 0.6.3)
|
41
|
+
rails-dom-testing (~> 2.0)
|
42
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
43
|
+
actiontext (7.0.2.2)
|
44
|
+
actionpack (= 7.0.2.2)
|
45
|
+
activerecord (= 7.0.2.2)
|
46
|
+
activestorage (= 7.0.2.2)
|
47
|
+
activesupport (= 7.0.2.2)
|
48
|
+
globalid (>= 0.6.0)
|
49
|
+
nokogiri (>= 1.8.5)
|
50
|
+
actionview (7.0.2.2)
|
51
|
+
activesupport (= 7.0.2.2)
|
52
|
+
builder (~> 3.1)
|
53
|
+
erubi (~> 1.4)
|
54
|
+
rails-dom-testing (~> 2.0)
|
55
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
56
|
+
activejob (7.0.2.2)
|
57
|
+
activesupport (= 7.0.2.2)
|
58
|
+
globalid (>= 0.3.6)
|
59
|
+
activemodel (7.0.2.2)
|
60
|
+
activesupport (= 7.0.2.2)
|
61
|
+
activerecord (7.0.2.2)
|
62
|
+
activemodel (= 7.0.2.2)
|
63
|
+
activesupport (= 7.0.2.2)
|
64
|
+
activestorage (7.0.2.2)
|
65
|
+
actionpack (= 7.0.2.2)
|
66
|
+
activejob (= 7.0.2.2)
|
67
|
+
activerecord (= 7.0.2.2)
|
68
|
+
activesupport (= 7.0.2.2)
|
69
|
+
marcel (~> 1.0)
|
70
|
+
mini_mime (>= 1.1.0)
|
71
|
+
activesupport (7.0.2.2)
|
72
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
73
|
+
i18n (>= 1.6, < 2)
|
74
|
+
minitest (>= 5.1)
|
75
|
+
tzinfo (~> 2.0)
|
76
|
+
appraisal (2.4.1)
|
77
|
+
bundler
|
78
|
+
rake
|
79
|
+
thor (>= 0.14.0)
|
80
|
+
builder (3.2.4)
|
81
|
+
byebug (11.1.3)
|
82
|
+
coderay (1.1.3)
|
83
|
+
concurrent-ruby (1.1.9)
|
84
|
+
crass (1.0.6)
|
85
|
+
diff-lcs (1.5.0)
|
86
|
+
digest (3.1.0)
|
87
|
+
erubi (1.10.0)
|
88
|
+
ffi (1.15.5)
|
89
|
+
formatador (1.1.0)
|
90
|
+
globalid (1.0.0)
|
91
|
+
activesupport (>= 5.0)
|
92
|
+
guard (2.18.0)
|
93
|
+
formatador (>= 0.2.4)
|
94
|
+
listen (>= 2.7, < 4.0)
|
95
|
+
lumberjack (>= 1.0.12, < 2.0)
|
96
|
+
nenv (~> 0.1)
|
97
|
+
notiffany (~> 0.0)
|
98
|
+
pry (>= 0.13.0)
|
99
|
+
shellany (~> 0.0)
|
100
|
+
thor (>= 0.18.1)
|
101
|
+
guard-compat (1.2.1)
|
102
|
+
guard-rspec (4.7.3)
|
103
|
+
guard (~> 2.1)
|
104
|
+
guard-compat (~> 1.1)
|
105
|
+
rspec (>= 2.99.0, < 4.0)
|
106
|
+
i18n (1.10.0)
|
107
|
+
concurrent-ruby (~> 1.0)
|
108
|
+
io-wait (0.2.1)
|
109
|
+
listen (3.7.1)
|
110
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
111
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
112
|
+
loofah (2.14.0)
|
113
|
+
crass (~> 1.0.2)
|
114
|
+
nokogiri (>= 1.5.9)
|
115
|
+
lumberjack (1.2.8)
|
116
|
+
mail (2.7.1)
|
117
|
+
mini_mime (>= 0.1.1)
|
118
|
+
marcel (1.0.2)
|
119
|
+
memory_profiler (0.9.14)
|
120
|
+
method_source (1.0.0)
|
121
|
+
mini_mime (1.1.2)
|
122
|
+
minitest (5.15.0)
|
123
|
+
nenv (0.3.0)
|
124
|
+
net-imap (0.2.3)
|
125
|
+
digest
|
126
|
+
net-protocol
|
127
|
+
strscan
|
128
|
+
net-pop (0.1.1)
|
129
|
+
digest
|
130
|
+
net-protocol
|
131
|
+
timeout
|
132
|
+
net-protocol (0.1.2)
|
133
|
+
io-wait
|
134
|
+
timeout
|
135
|
+
net-smtp (0.3.1)
|
136
|
+
digest
|
137
|
+
net-protocol
|
138
|
+
timeout
|
139
|
+
nio4r (2.5.8)
|
140
|
+
nokogiri (1.13.3-x86_64-linux)
|
141
|
+
racc (~> 1.4)
|
142
|
+
notiffany (0.1.3)
|
143
|
+
nenv (~> 0.1)
|
144
|
+
shellany (~> 0.0)
|
145
|
+
pry (0.13.1)
|
146
|
+
coderay (~> 1.1)
|
147
|
+
method_source (~> 1.0)
|
148
|
+
pry-byebug (3.9.0)
|
149
|
+
byebug (~> 11.0)
|
150
|
+
pry (~> 0.13.0)
|
151
|
+
puma (5.6.2)
|
152
|
+
nio4r (~> 2.0)
|
153
|
+
racc (1.6.0)
|
154
|
+
rack (2.2.3)
|
155
|
+
rack-test (1.1.0)
|
156
|
+
rack (>= 1.0, < 3)
|
157
|
+
rails (7.0.2.2)
|
158
|
+
actioncable (= 7.0.2.2)
|
159
|
+
actionmailbox (= 7.0.2.2)
|
160
|
+
actionmailer (= 7.0.2.2)
|
161
|
+
actionpack (= 7.0.2.2)
|
162
|
+
actiontext (= 7.0.2.2)
|
163
|
+
actionview (= 7.0.2.2)
|
164
|
+
activejob (= 7.0.2.2)
|
165
|
+
activemodel (= 7.0.2.2)
|
166
|
+
activerecord (= 7.0.2.2)
|
167
|
+
activestorage (= 7.0.2.2)
|
168
|
+
activesupport (= 7.0.2.2)
|
169
|
+
bundler (>= 1.15.0)
|
170
|
+
railties (= 7.0.2.2)
|
171
|
+
rails-dom-testing (2.0.3)
|
172
|
+
activesupport (>= 4.2.0)
|
173
|
+
nokogiri (>= 1.6)
|
174
|
+
rails-html-sanitizer (1.4.2)
|
175
|
+
loofah (~> 2.3)
|
176
|
+
railties (7.0.2.2)
|
177
|
+
actionpack (= 7.0.2.2)
|
178
|
+
activesupport (= 7.0.2.2)
|
179
|
+
method_source
|
180
|
+
rake (>= 12.2)
|
181
|
+
thor (~> 1.0)
|
182
|
+
zeitwerk (~> 2.5)
|
183
|
+
rake (13.0.6)
|
184
|
+
rb-fsevent (0.11.1)
|
185
|
+
rb-inotify (0.10.1)
|
186
|
+
ffi (~> 1.0)
|
187
|
+
rspec (3.11.0)
|
188
|
+
rspec-core (~> 3.11.0)
|
189
|
+
rspec-expectations (~> 3.11.0)
|
190
|
+
rspec-mocks (~> 3.11.0)
|
191
|
+
rspec-core (3.11.0)
|
192
|
+
rspec-support (~> 3.11.0)
|
193
|
+
rspec-expectations (3.11.0)
|
194
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
195
|
+
rspec-support (~> 3.11.0)
|
196
|
+
rspec-html-matchers (0.9.4)
|
197
|
+
nokogiri (~> 1)
|
198
|
+
rspec (>= 3.0.0.a, < 4)
|
199
|
+
rspec-mocks (3.11.0)
|
200
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
201
|
+
rspec-support (~> 3.11.0)
|
202
|
+
rspec-rails (4.1.2)
|
203
|
+
actionpack (>= 4.2)
|
204
|
+
activesupport (>= 4.2)
|
205
|
+
railties (>= 4.2)
|
206
|
+
rspec-core (~> 3.10)
|
207
|
+
rspec-expectations (~> 3.10)
|
208
|
+
rspec-mocks (~> 3.10)
|
209
|
+
rspec-support (~> 3.10)
|
210
|
+
rspec-support (3.11.0)
|
211
|
+
shellany (0.0.1)
|
212
|
+
sprockets (4.0.3)
|
213
|
+
concurrent-ruby (~> 1.0)
|
214
|
+
rack (> 1, < 3)
|
215
|
+
sprockets-rails (3.4.2)
|
216
|
+
actionpack (>= 5.2)
|
217
|
+
activesupport (>= 5.2)
|
218
|
+
sprockets (>= 3.0.0)
|
219
|
+
sqlite3 (1.4.2)
|
220
|
+
strscan (3.0.1)
|
221
|
+
thor (1.2.1)
|
222
|
+
timeout (0.2.0)
|
223
|
+
tzinfo (2.0.4)
|
224
|
+
concurrent-ruby (~> 1.0)
|
225
|
+
websocket-driver (0.7.5)
|
226
|
+
websocket-extensions (>= 0.1.0)
|
227
|
+
websocket-extensions (0.1.5)
|
228
|
+
zeitwerk (2.5.4)
|
229
|
+
|
230
|
+
PLATFORMS
|
231
|
+
x86_64-linux
|
232
|
+
|
233
|
+
DEPENDENCIES
|
234
|
+
appraisal (~> 2.2)
|
235
|
+
guard-rspec (~> 4.7, >= 4.7.3)
|
236
|
+
memory_profiler (~> 0.9.14)
|
237
|
+
pry-byebug
|
238
|
+
puma
|
239
|
+
rails (~> 7.0.0)
|
240
|
+
rake
|
241
|
+
rbexy!
|
242
|
+
rspec (~> 3.9)
|
243
|
+
rspec-html-matchers (~> 0.9.3)
|
244
|
+
rspec-rails (~> 4.0, >= 4.0.1)
|
245
|
+
sprockets-rails (>= 2, < 4)
|
246
|
+
sqlite3
|
247
|
+
|
248
|
+
BUNDLED WITH
|
249
|
+
2.2.3
|