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,295 @@
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 (7.1.3.2)
13
+ actionpack (= 7.1.3.2)
14
+ activesupport (= 7.1.3.2)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ zeitwerk (~> 2.6)
18
+ actionmailbox (7.1.3.2)
19
+ actionpack (= 7.1.3.2)
20
+ activejob (= 7.1.3.2)
21
+ activerecord (= 7.1.3.2)
22
+ activestorage (= 7.1.3.2)
23
+ activesupport (= 7.1.3.2)
24
+ mail (>= 2.7.1)
25
+ net-imap
26
+ net-pop
27
+ net-smtp
28
+ actionmailer (7.1.3.2)
29
+ actionpack (= 7.1.3.2)
30
+ actionview (= 7.1.3.2)
31
+ activejob (= 7.1.3.2)
32
+ activesupport (= 7.1.3.2)
33
+ mail (~> 2.5, >= 2.5.4)
34
+ net-imap
35
+ net-pop
36
+ net-smtp
37
+ rails-dom-testing (~> 2.2)
38
+ actionpack (7.1.3.2)
39
+ actionview (= 7.1.3.2)
40
+ activesupport (= 7.1.3.2)
41
+ nokogiri (>= 1.8.5)
42
+ racc
43
+ rack (>= 2.2.4)
44
+ rack-session (>= 1.0.1)
45
+ rack-test (>= 0.6.3)
46
+ rails-dom-testing (~> 2.2)
47
+ rails-html-sanitizer (~> 1.6)
48
+ actiontext (7.1.3.2)
49
+ actionpack (= 7.1.3.2)
50
+ activerecord (= 7.1.3.2)
51
+ activestorage (= 7.1.3.2)
52
+ activesupport (= 7.1.3.2)
53
+ globalid (>= 0.6.0)
54
+ nokogiri (>= 1.8.5)
55
+ actionview (7.1.3.2)
56
+ activesupport (= 7.1.3.2)
57
+ builder (~> 3.1)
58
+ erubi (~> 1.11)
59
+ rails-dom-testing (~> 2.2)
60
+ rails-html-sanitizer (~> 1.6)
61
+ activejob (7.1.3.2)
62
+ activesupport (= 7.1.3.2)
63
+ globalid (>= 0.3.6)
64
+ activemodel (7.1.3.2)
65
+ activesupport (= 7.1.3.2)
66
+ activerecord (7.1.3.2)
67
+ activemodel (= 7.1.3.2)
68
+ activesupport (= 7.1.3.2)
69
+ timeout (>= 0.4.0)
70
+ activestorage (7.1.3.2)
71
+ actionpack (= 7.1.3.2)
72
+ activejob (= 7.1.3.2)
73
+ activerecord (= 7.1.3.2)
74
+ activesupport (= 7.1.3.2)
75
+ marcel (~> 1.0)
76
+ activesupport (7.1.3.2)
77
+ base64
78
+ bigdecimal
79
+ concurrent-ruby (~> 1.0, >= 1.0.2)
80
+ connection_pool (>= 2.2.5)
81
+ drb
82
+ i18n (>= 1.6, < 2)
83
+ minitest (>= 5.1)
84
+ mutex_m
85
+ tzinfo (~> 2.0)
86
+ appraisal (2.5.0)
87
+ bundler
88
+ rake
89
+ thor (>= 0.14.0)
90
+ base64 (0.2.0)
91
+ benchmark (0.5.0)
92
+ bigdecimal (3.1.6)
93
+ builder (3.2.4)
94
+ byebug (11.1.3)
95
+ coderay (1.1.3)
96
+ concurrent-ruby (1.2.3)
97
+ connection_pool (2.4.1)
98
+ crass (1.0.6)
99
+ date (3.3.4)
100
+ diff-lcs (1.5.1)
101
+ drb (2.2.0)
102
+ ruby2_keywords
103
+ erubi (1.12.0)
104
+ ffi (1.16.3)
105
+ formatador (1.1.0)
106
+ globalid (1.2.1)
107
+ activesupport (>= 6.1)
108
+ guard (2.18.1)
109
+ formatador (>= 0.2.4)
110
+ listen (>= 2.7, < 4.0)
111
+ lumberjack (>= 1.0.12, < 2.0)
112
+ nenv (~> 0.1)
113
+ notiffany (~> 0.0)
114
+ pry (>= 0.13.0)
115
+ shellany (~> 0.0)
116
+ thor (>= 0.18.1)
117
+ guard-compat (1.2.1)
118
+ guard-rspec (4.7.3)
119
+ guard (~> 2.1)
120
+ guard-compat (~> 1.1)
121
+ rspec (>= 2.99.0, < 4.0)
122
+ i18n (1.14.1)
123
+ concurrent-ruby (~> 1.0)
124
+ io-console (0.7.2)
125
+ irb (1.11.2)
126
+ rdoc
127
+ reline (>= 0.4.2)
128
+ listen (3.8.0)
129
+ rb-fsevent (~> 0.10, >= 0.10.3)
130
+ rb-inotify (~> 0.9, >= 0.9.10)
131
+ logger (1.7.0)
132
+ loofah (2.22.0)
133
+ crass (~> 1.0.2)
134
+ nokogiri (>= 1.12.0)
135
+ lumberjack (1.2.10)
136
+ mail (2.8.1)
137
+ mini_mime (>= 0.1.1)
138
+ net-imap
139
+ net-pop
140
+ net-smtp
141
+ marcel (1.0.2)
142
+ memory_profiler (0.9.14)
143
+ method_source (1.0.0)
144
+ mini_mime (1.1.5)
145
+ mini_portile2 (2.8.9)
146
+ minitest (5.22.2)
147
+ mutex_m (0.2.0)
148
+ nenv (0.3.0)
149
+ net-imap (0.4.10)
150
+ date
151
+ net-protocol
152
+ net-pop (0.1.2)
153
+ net-protocol
154
+ net-protocol (0.2.2)
155
+ timeout
156
+ net-smtp (0.4.0.1)
157
+ net-protocol
158
+ nio4r (2.7.0)
159
+ nokogiri (1.16.2)
160
+ mini_portile2 (~> 2.8.2)
161
+ racc (~> 1.4)
162
+ notiffany (0.1.3)
163
+ nenv (~> 0.1)
164
+ shellany (~> 0.0)
165
+ ostruct (0.6.3)
166
+ pry (0.14.2)
167
+ coderay (~> 1.1)
168
+ method_source (~> 1.0)
169
+ pry-byebug (3.10.1)
170
+ byebug (~> 11.0)
171
+ pry (>= 0.13, < 0.15)
172
+ psych (5.1.2)
173
+ stringio
174
+ puma (6.4.2)
175
+ nio4r (~> 2.0)
176
+ racc (1.7.3)
177
+ rack (3.0.9.1)
178
+ rack-session (2.0.0)
179
+ rack (>= 3.0.0)
180
+ rack-test (2.1.0)
181
+ rack (>= 1.3)
182
+ rackup (2.1.0)
183
+ rack (>= 3)
184
+ webrick (~> 1.8)
185
+ rails (7.1.3.2)
186
+ actioncable (= 7.1.3.2)
187
+ actionmailbox (= 7.1.3.2)
188
+ actionmailer (= 7.1.3.2)
189
+ actionpack (= 7.1.3.2)
190
+ actiontext (= 7.1.3.2)
191
+ actionview (= 7.1.3.2)
192
+ activejob (= 7.1.3.2)
193
+ activemodel (= 7.1.3.2)
194
+ activerecord (= 7.1.3.2)
195
+ activestorage (= 7.1.3.2)
196
+ activesupport (= 7.1.3.2)
197
+ bundler (>= 1.15.0)
198
+ railties (= 7.1.3.2)
199
+ rails-dom-testing (2.2.0)
200
+ activesupport (>= 5.0.0)
201
+ minitest
202
+ nokogiri (>= 1.6)
203
+ rails-html-sanitizer (1.6.0)
204
+ loofah (~> 2.21)
205
+ nokogiri (~> 1.14)
206
+ railties (7.1.3.2)
207
+ actionpack (= 7.1.3.2)
208
+ activesupport (= 7.1.3.2)
209
+ irb
210
+ rackup (>= 1.0.0)
211
+ rake (>= 12.2)
212
+ thor (~> 1.0, >= 1.2.2)
213
+ zeitwerk (~> 2.6)
214
+ rake (13.1.0)
215
+ rb-fsevent (0.11.2)
216
+ rb-inotify (0.10.1)
217
+ ffi (~> 1.0)
218
+ rdoc (6.6.2)
219
+ psych (>= 4.0.0)
220
+ reline (0.4.2)
221
+ io-console (~> 0.5)
222
+ rspec (3.13.0)
223
+ rspec-core (~> 3.13.0)
224
+ rspec-expectations (~> 3.13.0)
225
+ rspec-mocks (~> 3.13.0)
226
+ rspec-core (3.13.0)
227
+ rspec-support (~> 3.13.0)
228
+ rspec-expectations (3.13.0)
229
+ diff-lcs (>= 1.2.0, < 2.0)
230
+ rspec-support (~> 3.13.0)
231
+ rspec-html-matchers (0.9.4)
232
+ nokogiri (~> 1)
233
+ rspec (>= 3.0.0.a, < 4)
234
+ rspec-mocks (3.13.0)
235
+ diff-lcs (>= 1.2.0, < 2.0)
236
+ rspec-support (~> 3.13.0)
237
+ rspec-rails (6.1.1)
238
+ actionpack (>= 6.1)
239
+ activesupport (>= 6.1)
240
+ railties (>= 6.1)
241
+ rspec-core (~> 3.12)
242
+ rspec-expectations (~> 3.12)
243
+ rspec-mocks (~> 3.12)
244
+ rspec-support (~> 3.12)
245
+ rspec-support (3.13.0)
246
+ ruby2_keywords (0.0.5)
247
+ shellany (0.0.1)
248
+ sprockets (4.2.1)
249
+ concurrent-ruby (~> 1.0)
250
+ rack (>= 2.2.4, < 4)
251
+ sprockets-rails (3.4.2)
252
+ actionpack (>= 5.2)
253
+ activesupport (>= 5.2)
254
+ sprockets (>= 3.0.0)
255
+ sqlite3 (1.7.2)
256
+ mini_portile2 (~> 2.8.0)
257
+ stringio (3.1.0)
258
+ thor (1.3.0)
259
+ timeout (0.4.1)
260
+ tzinfo (2.0.6)
261
+ concurrent-ruby (~> 1.0)
262
+ webrick (1.8.1)
263
+ websocket-driver (0.7.6)
264
+ websocket-extensions (>= 0.1.0)
265
+ websocket-extensions (0.1.5)
266
+ zeitwerk (2.6.13)
267
+
268
+ PLATFORMS
269
+ arm64-darwin-23
270
+ x86_64-darwin-25
271
+ x86_64-linux
272
+
273
+ DEPENDENCIES
274
+ appraisal (~> 2.2)
275
+ base64
276
+ benchmark
277
+ bigdecimal
278
+ drb
279
+ guard-rspec (~> 4.7, >= 4.7.3)
280
+ logger
281
+ memory_profiler (~> 0.9.14)
282
+ mutex_m
283
+ pry-byebug
284
+ puma
285
+ rails (~> 7.1.0)
286
+ rake
287
+ rbexy!
288
+ rspec (~> 3.12)
289
+ rspec-html-matchers (~> 0.9.3)
290
+ rspec-rails (~> 6.0, >= 6.0.3)
291
+ sprockets-rails (>= 2, < 4)
292
+ sqlite3
293
+
294
+ BUNDLED WITH
295
+ 2.5.6
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 7.2.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,290 @@
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 (7.2.0)
13
+ actionpack (= 7.2.0)
14
+ activesupport (= 7.2.0)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ zeitwerk (~> 2.6)
18
+ actionmailbox (7.2.0)
19
+ actionpack (= 7.2.0)
20
+ activejob (= 7.2.0)
21
+ activerecord (= 7.2.0)
22
+ activestorage (= 7.2.0)
23
+ activesupport (= 7.2.0)
24
+ mail (>= 2.8.0)
25
+ actionmailer (7.2.0)
26
+ actionpack (= 7.2.0)
27
+ actionview (= 7.2.0)
28
+ activejob (= 7.2.0)
29
+ activesupport (= 7.2.0)
30
+ mail (>= 2.8.0)
31
+ rails-dom-testing (~> 2.2)
32
+ actionpack (7.2.0)
33
+ actionview (= 7.2.0)
34
+ activesupport (= 7.2.0)
35
+ nokogiri (>= 1.8.5)
36
+ racc
37
+ rack (>= 2.2.4, < 3.2)
38
+ rack-session (>= 1.0.1)
39
+ rack-test (>= 0.6.3)
40
+ rails-dom-testing (~> 2.2)
41
+ rails-html-sanitizer (~> 1.6)
42
+ useragent (~> 0.16)
43
+ actiontext (7.2.0)
44
+ actionpack (= 7.2.0)
45
+ activerecord (= 7.2.0)
46
+ activestorage (= 7.2.0)
47
+ activesupport (= 7.2.0)
48
+ globalid (>= 0.6.0)
49
+ nokogiri (>= 1.8.5)
50
+ actionview (7.2.0)
51
+ activesupport (= 7.2.0)
52
+ builder (~> 3.1)
53
+ erubi (~> 1.11)
54
+ rails-dom-testing (~> 2.2)
55
+ rails-html-sanitizer (~> 1.6)
56
+ activejob (7.2.0)
57
+ activesupport (= 7.2.0)
58
+ globalid (>= 0.3.6)
59
+ activemodel (7.2.0)
60
+ activesupport (= 7.2.0)
61
+ activerecord (7.2.0)
62
+ activemodel (= 7.2.0)
63
+ activesupport (= 7.2.0)
64
+ timeout (>= 0.4.0)
65
+ activestorage (7.2.0)
66
+ actionpack (= 7.2.0)
67
+ activejob (= 7.2.0)
68
+ activerecord (= 7.2.0)
69
+ activesupport (= 7.2.0)
70
+ marcel (~> 1.0)
71
+ activesupport (7.2.0)
72
+ base64
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
+ appraisal (2.5.0)
83
+ bundler
84
+ rake
85
+ thor (>= 0.14.0)
86
+ base64 (0.2.0)
87
+ benchmark (0.5.0)
88
+ bigdecimal (3.1.8)
89
+ builder (3.3.0)
90
+ byebug (11.1.3)
91
+ coderay (1.1.3)
92
+ concurrent-ruby (1.3.4)
93
+ connection_pool (2.4.1)
94
+ crass (1.0.6)
95
+ date (3.3.4)
96
+ diff-lcs (1.5.1)
97
+ drb (2.2.1)
98
+ erubi (1.13.0)
99
+ ffi (1.16.3)
100
+ formatador (1.1.0)
101
+ globalid (1.2.1)
102
+ activesupport (>= 6.1)
103
+ guard (2.18.1)
104
+ formatador (>= 0.2.4)
105
+ listen (>= 2.7, < 4.0)
106
+ lumberjack (>= 1.0.12, < 2.0)
107
+ nenv (~> 0.1)
108
+ notiffany (~> 0.0)
109
+ pry (>= 0.13.0)
110
+ shellany (~> 0.0)
111
+ thor (>= 0.18.1)
112
+ guard-compat (1.2.1)
113
+ guard-rspec (4.7.3)
114
+ guard (~> 2.1)
115
+ guard-compat (~> 1.1)
116
+ rspec (>= 2.99.0, < 4.0)
117
+ i18n (1.14.5)
118
+ concurrent-ruby (~> 1.0)
119
+ io-console (0.7.2)
120
+ irb (1.14.0)
121
+ rdoc (>= 4.0.0)
122
+ reline (>= 0.4.2)
123
+ listen (3.8.0)
124
+ rb-fsevent (~> 0.10, >= 0.10.3)
125
+ rb-inotify (~> 0.9, >= 0.9.10)
126
+ logger (1.6.0)
127
+ loofah (2.22.0)
128
+ crass (~> 1.0.2)
129
+ nokogiri (>= 1.12.0)
130
+ lumberjack (1.2.10)
131
+ mail (2.8.1)
132
+ mini_mime (>= 0.1.1)
133
+ net-imap
134
+ net-pop
135
+ net-smtp
136
+ marcel (1.0.4)
137
+ memory_profiler (0.9.14)
138
+ method_source (1.0.0)
139
+ mini_mime (1.1.5)
140
+ mini_portile2 (2.8.9)
141
+ minitest (5.25.1)
142
+ mutex_m (0.3.0)
143
+ nenv (0.3.0)
144
+ net-imap (0.4.14)
145
+ date
146
+ net-protocol
147
+ net-pop (0.1.2)
148
+ net-protocol
149
+ net-protocol (0.2.2)
150
+ timeout
151
+ net-smtp (0.5.0)
152
+ net-protocol
153
+ nio4r (2.7.3)
154
+ nokogiri (1.16.7)
155
+ mini_portile2 (~> 2.8.2)
156
+ racc (~> 1.4)
157
+ notiffany (0.1.3)
158
+ nenv (~> 0.1)
159
+ shellany (~> 0.0)
160
+ ostruct (0.6.3)
161
+ pry (0.14.2)
162
+ coderay (~> 1.1)
163
+ method_source (~> 1.0)
164
+ pry-byebug (3.10.1)
165
+ byebug (~> 11.0)
166
+ pry (>= 0.13, < 0.15)
167
+ psych (5.1.2)
168
+ stringio
169
+ puma (6.4.2)
170
+ nio4r (~> 2.0)
171
+ racc (1.8.1)
172
+ rack (3.1.7)
173
+ rack-session (2.0.0)
174
+ rack (>= 3.0.0)
175
+ rack-test (2.1.0)
176
+ rack (>= 1.3)
177
+ rackup (2.1.0)
178
+ rack (>= 3)
179
+ webrick (~> 1.8)
180
+ rails (7.2.0)
181
+ actioncable (= 7.2.0)
182
+ actionmailbox (= 7.2.0)
183
+ actionmailer (= 7.2.0)
184
+ actionpack (= 7.2.0)
185
+ actiontext (= 7.2.0)
186
+ actionview (= 7.2.0)
187
+ activejob (= 7.2.0)
188
+ activemodel (= 7.2.0)
189
+ activerecord (= 7.2.0)
190
+ activestorage (= 7.2.0)
191
+ activesupport (= 7.2.0)
192
+ bundler (>= 1.15.0)
193
+ railties (= 7.2.0)
194
+ rails-dom-testing (2.2.0)
195
+ activesupport (>= 5.0.0)
196
+ minitest
197
+ nokogiri (>= 1.6)
198
+ rails-html-sanitizer (1.6.0)
199
+ loofah (~> 2.21)
200
+ nokogiri (~> 1.14)
201
+ railties (7.2.0)
202
+ actionpack (= 7.2.0)
203
+ activesupport (= 7.2.0)
204
+ irb (~> 1.13)
205
+ rackup (>= 1.0.0)
206
+ rake (>= 12.2)
207
+ thor (~> 1.0, >= 1.2.2)
208
+ zeitwerk (~> 2.6)
209
+ rake (13.2.1)
210
+ rb-fsevent (0.11.2)
211
+ rb-inotify (0.10.1)
212
+ ffi (~> 1.0)
213
+ rdoc (6.7.0)
214
+ psych (>= 4.0.0)
215
+ reline (0.5.9)
216
+ io-console (~> 0.5)
217
+ rspec (3.13.0)
218
+ rspec-core (~> 3.13.0)
219
+ rspec-expectations (~> 3.13.0)
220
+ rspec-mocks (~> 3.13.0)
221
+ rspec-core (3.13.0)
222
+ rspec-support (~> 3.13.0)
223
+ rspec-expectations (3.13.0)
224
+ diff-lcs (>= 1.2.0, < 2.0)
225
+ rspec-support (~> 3.13.0)
226
+ rspec-html-matchers (0.9.4)
227
+ nokogiri (~> 1)
228
+ rspec (>= 3.0.0.a, < 4)
229
+ rspec-mocks (3.13.0)
230
+ diff-lcs (>= 1.2.0, < 2.0)
231
+ rspec-support (~> 3.13.0)
232
+ rspec-rails (6.1.1)
233
+ actionpack (>= 6.1)
234
+ activesupport (>= 6.1)
235
+ railties (>= 6.1)
236
+ rspec-core (~> 3.12)
237
+ rspec-expectations (~> 3.12)
238
+ rspec-mocks (~> 3.12)
239
+ rspec-support (~> 3.12)
240
+ rspec-support (3.13.0)
241
+ securerandom (0.3.1)
242
+ shellany (0.0.1)
243
+ sprockets (4.2.1)
244
+ concurrent-ruby (~> 1.0)
245
+ rack (>= 2.2.4, < 4)
246
+ sprockets-rails (3.4.2)
247
+ actionpack (>= 5.2)
248
+ activesupport (>= 5.2)
249
+ sprockets (>= 3.0.0)
250
+ sqlite3 (1.7.2)
251
+ mini_portile2 (~> 2.8.0)
252
+ stringio (3.1.1)
253
+ thor (1.3.1)
254
+ timeout (0.4.1)
255
+ tzinfo (2.0.6)
256
+ concurrent-ruby (~> 1.0)
257
+ useragent (0.16.10)
258
+ webrick (1.8.1)
259
+ websocket-driver (0.7.6)
260
+ websocket-extensions (>= 0.1.0)
261
+ websocket-extensions (0.1.5)
262
+ zeitwerk (2.6.17)
263
+
264
+ PLATFORMS
265
+ x86_64-darwin-25
266
+ x86_64-linux
267
+
268
+ DEPENDENCIES
269
+ appraisal (~> 2.2)
270
+ base64
271
+ benchmark
272
+ bigdecimal
273
+ drb
274
+ guard-rspec (~> 4.7, >= 4.7.3)
275
+ logger
276
+ memory_profiler (~> 0.9.14)
277
+ mutex_m
278
+ pry-byebug
279
+ puma
280
+ rails (~> 7.2.0)
281
+ rake
282
+ rbexy!
283
+ rspec (~> 3.12)
284
+ rspec-html-matchers (~> 0.9.3)
285
+ rspec-rails (~> 6.0, >= 6.0.3)
286
+ sprockets-rails (>= 2, < 4)
287
+ sqlite3
288
+
289
+ BUNDLED WITH
290
+ 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.0.0"
6
+ gem "sqlite3", "~> 2.1"
7
+
8
+ gemspec path: "../"