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