grsx 0.1.0

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.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/main.yml +20 -0
  3. data/.gitignore +5 -0
  4. data/.rspec +2 -0
  5. data/.travis.yml +6 -0
  6. data/Appraisals +17 -0
  7. data/CODE_OF_CONDUCT.md +74 -0
  8. data/Dockerfile +8 -0
  9. data/Gemfile +7 -0
  10. data/Gemfile.lock +274 -0
  11. data/Guardfile +70 -0
  12. data/LICENSE.txt +21 -0
  13. data/README.md +437 -0
  14. data/Rakefile +6 -0
  15. data/bin/console +14 -0
  16. data/bin/setup +8 -0
  17. data/bin/test +43 -0
  18. data/docker-compose.yml +29 -0
  19. data/gemfiles/.bundle/config +2 -0
  20. data/gemfiles/rails_6_1.gemfile +8 -0
  21. data/gemfiles/rails_6_1.gemfile.lock +260 -0
  22. data/gemfiles/rails_7_0.gemfile +7 -0
  23. data/gemfiles/rails_7_0.gemfile.lock +265 -0
  24. data/gemfiles/rails_7_1.gemfile +7 -0
  25. data/gemfiles/rails_7_1.gemfile.lock +295 -0
  26. data/gemfiles/rails_7_2.gemfile +7 -0
  27. data/gemfiles/rails_7_2.gemfile.lock +290 -0
  28. data/gemfiles/rails_8_0.gemfile +8 -0
  29. data/gemfiles/rails_8_0.gemfile.lock +344 -0
  30. data/gemfiles/rails_8_1.gemfile +8 -0
  31. data/gemfiles/rails_8_1.gemfile.lock +313 -0
  32. data/gemfiles/rails_master.gemfile +7 -0
  33. data/gemfiles/rails_master.gemfile.lock +296 -0
  34. data/grsx.gemspec +43 -0
  35. data/lib/generators/grsx/phlex_component/phlex_component_generator.rb +40 -0
  36. data/lib/generators/grsx/phlex_component/templates/component.rb.tt +12 -0
  37. data/lib/generators/grsx/phlex_component/templates/component.rbx.tt +6 -0
  38. data/lib/grsx/component_resolver.rb +64 -0
  39. data/lib/grsx/configuration.rb +14 -0
  40. data/lib/grsx/lexer.rb +325 -0
  41. data/lib/grsx/nodes/abstract_attr.rb +12 -0
  42. data/lib/grsx/nodes/abstract_element.rb +13 -0
  43. data/lib/grsx/nodes/abstract_node.rb +31 -0
  44. data/lib/grsx/nodes/component_element.rb +69 -0
  45. data/lib/grsx/nodes/component_prop.rb +29 -0
  46. data/lib/grsx/nodes/declaration.rb +15 -0
  47. data/lib/grsx/nodes/expression.rb +15 -0
  48. data/lib/grsx/nodes/expression_group.rb +15 -0
  49. data/lib/grsx/nodes/fragment.rb +30 -0
  50. data/lib/grsx/nodes/html_attr.rb +13 -0
  51. data/lib/grsx/nodes/html_element.rb +49 -0
  52. data/lib/grsx/nodes/newline.rb +9 -0
  53. data/lib/grsx/nodes/raw.rb +23 -0
  54. data/lib/grsx/nodes/root.rb +19 -0
  55. data/lib/grsx/nodes/text.rb +15 -0
  56. data/lib/grsx/nodes/util.rb +9 -0
  57. data/lib/grsx/nodes.rb +20 -0
  58. data/lib/grsx/parser.rb +238 -0
  59. data/lib/grsx/phlex_compiler.rb +223 -0
  60. data/lib/grsx/phlex_component.rb +361 -0
  61. data/lib/grsx/phlex_runtime.rb +70 -0
  62. data/lib/grsx/prop_inspector.rb +52 -0
  63. data/lib/grsx/rails/engine.rb +24 -0
  64. data/lib/grsx/rails/phlex_reloader.rb +25 -0
  65. data/lib/grsx/template.rb +12 -0
  66. data/lib/grsx/version.rb +3 -0
  67. data/lib/grsx.rb +35 -0
  68. metadata +324 -0
@@ -0,0 +1,344 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ rbexy (2.0.0.rc5)
5
+ actionview (>= 6, < 8.2)
6
+ activesupport (>= 6, < 8.2)
7
+ ostruct
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (8.0.4)
13
+ actionpack (= 8.0.4)
14
+ activesupport (= 8.0.4)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ zeitwerk (~> 2.6)
18
+ actionmailbox (8.0.4)
19
+ actionpack (= 8.0.4)
20
+ activejob (= 8.0.4)
21
+ activerecord (= 8.0.4)
22
+ activestorage (= 8.0.4)
23
+ activesupport (= 8.0.4)
24
+ mail (>= 2.8.0)
25
+ actionmailer (8.0.4)
26
+ actionpack (= 8.0.4)
27
+ actionview (= 8.0.4)
28
+ activejob (= 8.0.4)
29
+ activesupport (= 8.0.4)
30
+ mail (>= 2.8.0)
31
+ rails-dom-testing (~> 2.2)
32
+ actionpack (8.0.4)
33
+ actionview (= 8.0.4)
34
+ activesupport (= 8.0.4)
35
+ nokogiri (>= 1.8.5)
36
+ rack (>= 2.2.4)
37
+ rack-session (>= 1.0.1)
38
+ rack-test (>= 0.6.3)
39
+ rails-dom-testing (~> 2.2)
40
+ rails-html-sanitizer (~> 1.6)
41
+ useragent (~> 0.16)
42
+ actiontext (8.0.4)
43
+ actionpack (= 8.0.4)
44
+ activerecord (= 8.0.4)
45
+ activestorage (= 8.0.4)
46
+ activesupport (= 8.0.4)
47
+ globalid (>= 0.6.0)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (8.0.4)
50
+ activesupport (= 8.0.4)
51
+ builder (~> 3.1)
52
+ erubi (~> 1.11)
53
+ rails-dom-testing (~> 2.2)
54
+ rails-html-sanitizer (~> 1.6)
55
+ activejob (8.0.4)
56
+ activesupport (= 8.0.4)
57
+ globalid (>= 0.3.6)
58
+ activemodel (8.0.4)
59
+ activesupport (= 8.0.4)
60
+ activerecord (8.0.4)
61
+ activemodel (= 8.0.4)
62
+ activesupport (= 8.0.4)
63
+ timeout (>= 0.4.0)
64
+ activestorage (8.0.4)
65
+ actionpack (= 8.0.4)
66
+ activejob (= 8.0.4)
67
+ activerecord (= 8.0.4)
68
+ activesupport (= 8.0.4)
69
+ marcel (~> 1.0)
70
+ activesupport (8.0.4)
71
+ base64
72
+ benchmark (>= 0.3)
73
+ bigdecimal
74
+ concurrent-ruby (~> 1.0, >= 1.3.1)
75
+ connection_pool (>= 2.2.5)
76
+ drb
77
+ i18n (>= 1.6, < 2)
78
+ logger (>= 1.4.2)
79
+ minitest (>= 5.1)
80
+ securerandom (>= 0.3)
81
+ tzinfo (~> 2.0, >= 2.0.5)
82
+ uri (>= 0.13.1)
83
+ appraisal (2.5.0)
84
+ bundler
85
+ rake
86
+ thor (>= 0.14.0)
87
+ base64 (0.3.0)
88
+ benchmark (0.5.0)
89
+ bigdecimal (4.0.1)
90
+ builder (3.3.0)
91
+ byebug (13.0.0)
92
+ reline (>= 0.6.0)
93
+ coderay (1.1.3)
94
+ concurrent-ruby (1.3.6)
95
+ connection_pool (3.0.2)
96
+ crass (1.0.6)
97
+ date (3.5.1)
98
+ diff-lcs (1.6.2)
99
+ drb (2.2.3)
100
+ erb (6.0.2)
101
+ erubi (1.13.1)
102
+ ffi (1.17.3-aarch64-linux-gnu)
103
+ ffi (1.17.3-aarch64-linux-musl)
104
+ ffi (1.17.3-arm-linux-gnu)
105
+ ffi (1.17.3-arm-linux-musl)
106
+ ffi (1.17.3-arm64-darwin)
107
+ ffi (1.17.3-x86_64-darwin)
108
+ ffi (1.17.3-x86_64-linux-gnu)
109
+ ffi (1.17.3-x86_64-linux-musl)
110
+ formatador (1.2.3)
111
+ reline
112
+ globalid (1.3.0)
113
+ activesupport (>= 6.1)
114
+ guard (2.20.1)
115
+ formatador (>= 0.2.4)
116
+ listen (>= 2.7, < 4.0)
117
+ logger (~> 1.6)
118
+ lumberjack (>= 1.0.12, < 2.0)
119
+ nenv (~> 0.1)
120
+ notiffany (~> 0.0)
121
+ pry (>= 0.13.0)
122
+ shellany (~> 0.0)
123
+ thor (>= 0.18.1)
124
+ guard-compat (1.2.1)
125
+ guard-rspec (4.7.3)
126
+ guard (~> 2.1)
127
+ guard-compat (~> 1.1)
128
+ rspec (>= 2.99.0, < 4.0)
129
+ i18n (1.14.8)
130
+ concurrent-ruby (~> 1.0)
131
+ io-console (0.8.2)
132
+ irb (1.17.0)
133
+ pp (>= 0.6.0)
134
+ prism (>= 1.3.0)
135
+ rdoc (>= 4.0.0)
136
+ reline (>= 0.4.2)
137
+ listen (3.10.0)
138
+ logger
139
+ rb-fsevent (~> 0.10, >= 0.10.3)
140
+ rb-inotify (~> 0.9, >= 0.9.10)
141
+ logger (1.7.0)
142
+ loofah (2.25.0)
143
+ crass (~> 1.0.2)
144
+ nokogiri (>= 1.12.0)
145
+ lumberjack (1.4.2)
146
+ mail (2.9.0)
147
+ logger
148
+ mini_mime (>= 0.1.1)
149
+ net-imap
150
+ net-pop
151
+ net-smtp
152
+ marcel (1.1.0)
153
+ memory_profiler (0.9.14)
154
+ method_source (1.1.0)
155
+ mini_mime (1.1.5)
156
+ minitest (6.0.2)
157
+ drb (~> 2.0)
158
+ prism (~> 1.5)
159
+ mutex_m (0.3.0)
160
+ nenv (0.3.0)
161
+ net-imap (0.6.3)
162
+ date
163
+ net-protocol
164
+ net-pop (0.1.2)
165
+ net-protocol
166
+ net-protocol (0.2.2)
167
+ timeout
168
+ net-smtp (0.5.1)
169
+ net-protocol
170
+ nio4r (2.7.5)
171
+ nokogiri (1.19.1-aarch64-linux-gnu)
172
+ racc (~> 1.4)
173
+ nokogiri (1.19.1-aarch64-linux-musl)
174
+ racc (~> 1.4)
175
+ nokogiri (1.19.1-arm-linux-gnu)
176
+ racc (~> 1.4)
177
+ nokogiri (1.19.1-arm-linux-musl)
178
+ racc (~> 1.4)
179
+ nokogiri (1.19.1-arm64-darwin)
180
+ racc (~> 1.4)
181
+ nokogiri (1.19.1-x86_64-darwin)
182
+ racc (~> 1.4)
183
+ nokogiri (1.19.1-x86_64-linux-gnu)
184
+ racc (~> 1.4)
185
+ nokogiri (1.19.1-x86_64-linux-musl)
186
+ racc (~> 1.4)
187
+ notiffany (0.1.3)
188
+ nenv (~> 0.1)
189
+ shellany (~> 0.0)
190
+ ostruct (0.6.1)
191
+ pp (0.6.3)
192
+ prettyprint
193
+ prettyprint (0.2.0)
194
+ prism (1.9.0)
195
+ pry (0.16.0)
196
+ coderay (~> 1.1)
197
+ method_source (~> 1.0)
198
+ reline (>= 0.6.0)
199
+ pry-byebug (3.12.0)
200
+ byebug (~> 13.0)
201
+ pry (>= 0.13, < 0.17)
202
+ psych (5.3.1)
203
+ date
204
+ stringio
205
+ puma (7.2.0)
206
+ nio4r (~> 2.0)
207
+ racc (1.8.1)
208
+ rack (3.2.5)
209
+ rack-session (2.1.1)
210
+ base64 (>= 0.1.0)
211
+ rack (>= 3.0.0)
212
+ rack-test (2.2.0)
213
+ rack (>= 1.3)
214
+ rackup (2.3.1)
215
+ rack (>= 3)
216
+ rails (8.0.4)
217
+ actioncable (= 8.0.4)
218
+ actionmailbox (= 8.0.4)
219
+ actionmailer (= 8.0.4)
220
+ actionpack (= 8.0.4)
221
+ actiontext (= 8.0.4)
222
+ actionview (= 8.0.4)
223
+ activejob (= 8.0.4)
224
+ activemodel (= 8.0.4)
225
+ activerecord (= 8.0.4)
226
+ activestorage (= 8.0.4)
227
+ activesupport (= 8.0.4)
228
+ bundler (>= 1.15.0)
229
+ railties (= 8.0.4)
230
+ rails-dom-testing (2.3.0)
231
+ activesupport (>= 5.0.0)
232
+ minitest
233
+ nokogiri (>= 1.6)
234
+ rails-html-sanitizer (1.7.0)
235
+ loofah (~> 2.25)
236
+ 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)
237
+ railties (8.0.4)
238
+ actionpack (= 8.0.4)
239
+ activesupport (= 8.0.4)
240
+ irb (~> 1.13)
241
+ rackup (>= 1.0.0)
242
+ rake (>= 12.2)
243
+ thor (~> 1.0, >= 1.2.2)
244
+ tsort (>= 0.2)
245
+ zeitwerk (~> 2.6)
246
+ rake (13.3.1)
247
+ rb-fsevent (0.11.2)
248
+ rb-inotify (0.11.1)
249
+ ffi (~> 1.0)
250
+ rdoc (7.2.0)
251
+ erb
252
+ psych (>= 4.0.0)
253
+ tsort
254
+ reline (0.6.3)
255
+ io-console (~> 0.5)
256
+ rspec (3.13.2)
257
+ rspec-core (~> 3.13.0)
258
+ rspec-expectations (~> 3.13.0)
259
+ rspec-mocks (~> 3.13.0)
260
+ rspec-core (3.13.6)
261
+ rspec-support (~> 3.13.0)
262
+ rspec-expectations (3.13.5)
263
+ diff-lcs (>= 1.2.0, < 2.0)
264
+ rspec-support (~> 3.13.0)
265
+ rspec-html-matchers (0.9.4)
266
+ nokogiri (~> 1)
267
+ rspec (>= 3.0.0.a, < 4)
268
+ rspec-mocks (3.13.8)
269
+ diff-lcs (>= 1.2.0, < 2.0)
270
+ rspec-support (~> 3.13.0)
271
+ rspec-rails (6.1.5)
272
+ actionpack (>= 6.1)
273
+ activesupport (>= 6.1)
274
+ railties (>= 6.1)
275
+ rspec-core (~> 3.13)
276
+ rspec-expectations (~> 3.13)
277
+ rspec-mocks (~> 3.13)
278
+ rspec-support (~> 3.13)
279
+ rspec-support (3.13.7)
280
+ securerandom (0.4.1)
281
+ shellany (0.0.1)
282
+ sprockets (4.2.2)
283
+ concurrent-ruby (~> 1.0)
284
+ logger
285
+ rack (>= 2.2.4, < 4)
286
+ sprockets-rails (3.5.2)
287
+ actionpack (>= 6.1)
288
+ activesupport (>= 6.1)
289
+ sprockets (>= 3.0.0)
290
+ sqlite3 (2.9.1-aarch64-linux-gnu)
291
+ sqlite3 (2.9.1-aarch64-linux-musl)
292
+ sqlite3 (2.9.1-arm-linux-gnu)
293
+ sqlite3 (2.9.1-arm-linux-musl)
294
+ sqlite3 (2.9.1-arm64-darwin)
295
+ sqlite3 (2.9.1-x86_64-darwin)
296
+ sqlite3 (2.9.1-x86_64-linux-gnu)
297
+ sqlite3 (2.9.1-x86_64-linux-musl)
298
+ stringio (3.2.0)
299
+ thor (1.5.0)
300
+ timeout (0.6.1)
301
+ tsort (0.2.0)
302
+ tzinfo (2.0.6)
303
+ concurrent-ruby (~> 1.0)
304
+ uri (1.1.1)
305
+ useragent (0.16.11)
306
+ websocket-driver (0.8.0)
307
+ base64
308
+ websocket-extensions (>= 0.1.0)
309
+ websocket-extensions (0.1.5)
310
+ zeitwerk (2.7.5)
311
+
312
+ PLATFORMS
313
+ aarch64-linux-gnu
314
+ aarch64-linux-musl
315
+ arm-linux-gnu
316
+ arm-linux-musl
317
+ arm64-darwin
318
+ x86_64-darwin
319
+ x86_64-linux-gnu
320
+ x86_64-linux-musl
321
+
322
+ DEPENDENCIES
323
+ appraisal (~> 2.2)
324
+ base64
325
+ benchmark
326
+ bigdecimal
327
+ drb
328
+ guard-rspec (~> 4.7, >= 4.7.3)
329
+ logger
330
+ memory_profiler (~> 0.9.14)
331
+ mutex_m
332
+ pry-byebug
333
+ puma
334
+ rails (~> 8.0.0)
335
+ rake
336
+ rbexy!
337
+ rspec (~> 3.12)
338
+ rspec-html-matchers (~> 0.9.3)
339
+ rspec-rails (~> 6.0, >= 6.0.3)
340
+ sprockets-rails (>= 2, < 4)
341
+ sqlite3 (~> 2.1)
342
+
343
+ BUNDLED WITH
344
+ 2.5.6
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 8.1.0"
6
+ gem "sqlite3", "~> 2.1"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,313 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ rbexy (2.0.0.rc5)
5
+ actionview (>= 6, < 8.2)
6
+ activesupport (>= 6, < 8.2)
7
+ ostruct
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ action_text-trix (2.1.17)
13
+ railties
14
+ actioncable (8.1.2)
15
+ actionpack (= 8.1.2)
16
+ activesupport (= 8.1.2)
17
+ nio4r (~> 2.0)
18
+ websocket-driver (>= 0.6.1)
19
+ zeitwerk (~> 2.6)
20
+ actionmailbox (8.1.2)
21
+ actionpack (= 8.1.2)
22
+ activejob (= 8.1.2)
23
+ activerecord (= 8.1.2)
24
+ activestorage (= 8.1.2)
25
+ activesupport (= 8.1.2)
26
+ mail (>= 2.8.0)
27
+ actionmailer (8.1.2)
28
+ actionpack (= 8.1.2)
29
+ actionview (= 8.1.2)
30
+ activejob (= 8.1.2)
31
+ activesupport (= 8.1.2)
32
+ mail (>= 2.8.0)
33
+ rails-dom-testing (~> 2.2)
34
+ actionpack (8.1.2)
35
+ actionview (= 8.1.2)
36
+ activesupport (= 8.1.2)
37
+ nokogiri (>= 1.8.5)
38
+ rack (>= 2.2.4)
39
+ rack-session (>= 1.0.1)
40
+ rack-test (>= 0.6.3)
41
+ rails-dom-testing (~> 2.2)
42
+ rails-html-sanitizer (~> 1.6)
43
+ useragent (~> 0.16)
44
+ actiontext (8.1.2)
45
+ action_text-trix (~> 2.1.15)
46
+ actionpack (= 8.1.2)
47
+ activerecord (= 8.1.2)
48
+ activestorage (= 8.1.2)
49
+ activesupport (= 8.1.2)
50
+ globalid (>= 0.6.0)
51
+ nokogiri (>= 1.8.5)
52
+ actionview (8.1.2)
53
+ activesupport (= 8.1.2)
54
+ builder (~> 3.1)
55
+ erubi (~> 1.11)
56
+ rails-dom-testing (~> 2.2)
57
+ rails-html-sanitizer (~> 1.6)
58
+ activejob (8.1.2)
59
+ activesupport (= 8.1.2)
60
+ globalid (>= 0.3.6)
61
+ activemodel (8.1.2)
62
+ activesupport (= 8.1.2)
63
+ activerecord (8.1.2)
64
+ activemodel (= 8.1.2)
65
+ activesupport (= 8.1.2)
66
+ timeout (>= 0.4.0)
67
+ activestorage (8.1.2)
68
+ actionpack (= 8.1.2)
69
+ activejob (= 8.1.2)
70
+ activerecord (= 8.1.2)
71
+ activesupport (= 8.1.2)
72
+ marcel (~> 1.0)
73
+ activesupport (8.1.2)
74
+ base64
75
+ bigdecimal
76
+ concurrent-ruby (~> 1.0, >= 1.3.1)
77
+ connection_pool (>= 2.2.5)
78
+ drb
79
+ i18n (>= 1.6, < 2)
80
+ json
81
+ logger (>= 1.4.2)
82
+ minitest (>= 5.1)
83
+ securerandom (>= 0.3)
84
+ tzinfo (~> 2.0, >= 2.0.5)
85
+ uri (>= 0.13.1)
86
+ appraisal (2.5.0)
87
+ bundler
88
+ rake
89
+ thor (>= 0.14.0)
90
+ base64 (0.3.0)
91
+ benchmark (0.5.0)
92
+ bigdecimal (4.0.1)
93
+ builder (3.3.0)
94
+ byebug (13.0.0)
95
+ reline (>= 0.6.0)
96
+ coderay (1.1.3)
97
+ concurrent-ruby (1.3.6)
98
+ connection_pool (3.0.2)
99
+ crass (1.0.6)
100
+ date (3.5.1)
101
+ diff-lcs (1.6.2)
102
+ drb (2.2.3)
103
+ erb (6.0.2)
104
+ erubi (1.13.1)
105
+ ffi (1.17.3-x86_64-darwin)
106
+ formatador (1.2.3)
107
+ reline
108
+ globalid (1.3.0)
109
+ activesupport (>= 6.1)
110
+ guard (2.20.1)
111
+ formatador (>= 0.2.4)
112
+ listen (>= 2.7, < 4.0)
113
+ logger (~> 1.6)
114
+ lumberjack (>= 1.0.12, < 2.0)
115
+ nenv (~> 0.1)
116
+ notiffany (~> 0.0)
117
+ pry (>= 0.13.0)
118
+ shellany (~> 0.0)
119
+ thor (>= 0.18.1)
120
+ guard-compat (1.2.1)
121
+ guard-rspec (4.7.3)
122
+ guard (~> 2.1)
123
+ guard-compat (~> 1.1)
124
+ rspec (>= 2.99.0, < 4.0)
125
+ i18n (1.14.8)
126
+ concurrent-ruby (~> 1.0)
127
+ io-console (0.8.2)
128
+ irb (1.17.0)
129
+ pp (>= 0.6.0)
130
+ prism (>= 1.3.0)
131
+ rdoc (>= 4.0.0)
132
+ reline (>= 0.4.2)
133
+ json (2.19.1)
134
+ listen (3.10.0)
135
+ logger
136
+ rb-fsevent (~> 0.10, >= 0.10.3)
137
+ rb-inotify (~> 0.9, >= 0.9.10)
138
+ logger (1.7.0)
139
+ loofah (2.25.0)
140
+ crass (~> 1.0.2)
141
+ nokogiri (>= 1.12.0)
142
+ lumberjack (1.4.2)
143
+ mail (2.9.0)
144
+ logger
145
+ mini_mime (>= 0.1.1)
146
+ net-imap
147
+ net-pop
148
+ net-smtp
149
+ marcel (1.1.0)
150
+ memory_profiler (0.9.14)
151
+ method_source (1.1.0)
152
+ mini_mime (1.1.5)
153
+ minitest (6.0.2)
154
+ drb (~> 2.0)
155
+ prism (~> 1.5)
156
+ mutex_m (0.3.0)
157
+ nenv (0.3.0)
158
+ net-imap (0.6.3)
159
+ date
160
+ net-protocol
161
+ net-pop (0.1.2)
162
+ net-protocol
163
+ net-protocol (0.2.2)
164
+ timeout
165
+ net-smtp (0.5.1)
166
+ net-protocol
167
+ nio4r (2.7.5)
168
+ nokogiri (1.19.1-x86_64-darwin)
169
+ racc (~> 1.4)
170
+ notiffany (0.1.3)
171
+ nenv (~> 0.1)
172
+ shellany (~> 0.0)
173
+ ostruct (0.6.3)
174
+ pp (0.6.3)
175
+ prettyprint
176
+ prettyprint (0.2.0)
177
+ prism (1.9.0)
178
+ pry (0.16.0)
179
+ coderay (~> 1.1)
180
+ method_source (~> 1.0)
181
+ reline (>= 0.6.0)
182
+ pry-byebug (3.12.0)
183
+ byebug (~> 13.0)
184
+ pry (>= 0.13, < 0.17)
185
+ psych (5.3.1)
186
+ date
187
+ stringio
188
+ puma (7.2.0)
189
+ nio4r (~> 2.0)
190
+ racc (1.8.1)
191
+ rack (3.2.5)
192
+ rack-session (2.1.1)
193
+ base64 (>= 0.1.0)
194
+ rack (>= 3.0.0)
195
+ rack-test (2.2.0)
196
+ rack (>= 1.3)
197
+ rackup (2.3.1)
198
+ rack (>= 3)
199
+ rails (8.1.2)
200
+ actioncable (= 8.1.2)
201
+ actionmailbox (= 8.1.2)
202
+ actionmailer (= 8.1.2)
203
+ actionpack (= 8.1.2)
204
+ actiontext (= 8.1.2)
205
+ actionview (= 8.1.2)
206
+ activejob (= 8.1.2)
207
+ activemodel (= 8.1.2)
208
+ activerecord (= 8.1.2)
209
+ activestorage (= 8.1.2)
210
+ activesupport (= 8.1.2)
211
+ bundler (>= 1.15.0)
212
+ railties (= 8.1.2)
213
+ rails-dom-testing (2.3.0)
214
+ activesupport (>= 5.0.0)
215
+ minitest
216
+ nokogiri (>= 1.6)
217
+ rails-html-sanitizer (1.7.0)
218
+ loofah (~> 2.25)
219
+ 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)
220
+ railties (8.1.2)
221
+ actionpack (= 8.1.2)
222
+ activesupport (= 8.1.2)
223
+ irb (~> 1.13)
224
+ rackup (>= 1.0.0)
225
+ rake (>= 12.2)
226
+ thor (~> 1.0, >= 1.2.2)
227
+ tsort (>= 0.2)
228
+ zeitwerk (~> 2.6)
229
+ rake (13.3.1)
230
+ rb-fsevent (0.11.2)
231
+ rb-inotify (0.11.1)
232
+ ffi (~> 1.0)
233
+ rdoc (7.2.0)
234
+ erb
235
+ psych (>= 4.0.0)
236
+ tsort
237
+ reline (0.6.3)
238
+ io-console (~> 0.5)
239
+ rspec (3.13.2)
240
+ rspec-core (~> 3.13.0)
241
+ rspec-expectations (~> 3.13.0)
242
+ rspec-mocks (~> 3.13.0)
243
+ rspec-core (3.13.6)
244
+ rspec-support (~> 3.13.0)
245
+ rspec-expectations (3.13.5)
246
+ diff-lcs (>= 1.2.0, < 2.0)
247
+ rspec-support (~> 3.13.0)
248
+ rspec-html-matchers (0.9.4)
249
+ nokogiri (~> 1)
250
+ rspec (>= 3.0.0.a, < 4)
251
+ rspec-mocks (3.13.8)
252
+ diff-lcs (>= 1.2.0, < 2.0)
253
+ rspec-support (~> 3.13.0)
254
+ rspec-rails (6.1.5)
255
+ actionpack (>= 6.1)
256
+ activesupport (>= 6.1)
257
+ railties (>= 6.1)
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)
264
+ shellany (0.0.1)
265
+ sprockets (4.2.2)
266
+ concurrent-ruby (~> 1.0)
267
+ logger
268
+ rack (>= 2.2.4, < 4)
269
+ sprockets-rails (3.5.2)
270
+ actionpack (>= 6.1)
271
+ activesupport (>= 6.1)
272
+ sprockets (>= 3.0.0)
273
+ sqlite3 (2.9.1-x86_64-darwin)
274
+ stringio (3.2.0)
275
+ thor (1.5.0)
276
+ timeout (0.6.1)
277
+ tsort (0.2.0)
278
+ tzinfo (2.0.6)
279
+ concurrent-ruby (~> 1.0)
280
+ uri (1.1.1)
281
+ useragent (0.16.11)
282
+ websocket-driver (0.8.0)
283
+ base64
284
+ websocket-extensions (>= 0.1.0)
285
+ websocket-extensions (0.1.5)
286
+ zeitwerk (2.7.5)
287
+
288
+ PLATFORMS
289
+ x86_64-darwin
290
+
291
+ DEPENDENCIES
292
+ appraisal (~> 2.2)
293
+ base64
294
+ benchmark
295
+ bigdecimal
296
+ drb
297
+ guard-rspec (~> 4.7, >= 4.7.3)
298
+ logger
299
+ memory_profiler (~> 0.9.14)
300
+ mutex_m
301
+ pry-byebug
302
+ puma
303
+ rails (~> 8.1.0)
304
+ rake
305
+ rbexy!
306
+ rspec (~> 3.12)
307
+ rspec-html-matchers (~> 0.9.3)
308
+ rspec-rails (~> 6.0, >= 6.0.3)
309
+ sprockets-rails (>= 2, < 4)
310
+ sqlite3 (~> 2.1)
311
+
312
+ BUNDLED WITH
313
+ 2.5.6
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", git: "https://github.com/rails/rails.git", branch: :main
6
+
7
+ gemspec path: "../"