proscenium-phlex 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 362c1d7ebe79b27a2a0d7bde581227f0412cc62b07463a386ec8a9c5cca6c37f
4
+ data.tar.gz: f35cec8809b778c7ab18ea22e95f23f2db7ccd6455add0e331052aa1c296c556
5
+ SHA512:
6
+ metadata.gz: f1722c368979a3bb39f5d2c32b517683067efb6254c9e92f4258feed2b7c3adc93d9a157a5f523d73f84af32f11216d9b7e4d3ee9f293358fbce10bec2e5889e
7
+ data.tar.gz: 9da31084de861b849589a89efc16df65f705a4530959a95696cc6561d5275cbf0f1693d70d9e86245aad9b4d3472363ec7fb081ce75fb8ed89937f75c4a4c948
data/.rubocop.yml ADDED
@@ -0,0 +1,55 @@
1
+ plugins:
2
+ - rubocop-rails
3
+ - rubocop-minitest
4
+ - rubocop-disable_syntax
5
+ - rubocop-capybara
6
+ - rubocop-packaging
7
+ - rubocop-rake
8
+ - rubocop-performance
9
+
10
+ AllCops:
11
+ TargetRubyVersion: 3.3
12
+ NewCops: enable
13
+ SuggestExtensions: false
14
+ Exclude:
15
+ - "gemfiles/**/*"
16
+
17
+ Naming/FileName:
18
+ Exclude:
19
+ - "lib/proscenium-phlex.rb"
20
+
21
+ Layout/LineLength:
22
+ Max: 100
23
+ Layout/IndentationConsistency:
24
+ EnforcedStyle: indented_internal_methods
25
+
26
+ Lint/ConstantDefinitionInBlock:
27
+ Exclude:
28
+ - "test/**/*"
29
+ Lint/ItWithoutArgumentsInBlock:
30
+ Enabled: false
31
+ Lint/MissingSuper:
32
+ Enabled: false
33
+
34
+ Metrics:
35
+ Enabled: false
36
+
37
+ Style/DisableSyntax:
38
+ DisableSyntax:
39
+ - unless
40
+ - and_or_not
41
+ - numbered_parameters
42
+
43
+ Style/CaseEquality:
44
+ Enabled: false
45
+ Style/Documentation:
46
+ Enabled: false
47
+ Style/ClassAndModuleChildren:
48
+ Enabled: false
49
+ Style/NegatedIf:
50
+ Enabled: false
51
+
52
+ Minitest/EmptyLineBeforeAssertionMethods:
53
+ Enabled: false
54
+ Minitest/MultipleAssertions:
55
+ Enabled: false
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.4.2
data/Appraisals ADDED
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ appraise 'rails-7.1' do
4
+ gem 'rails', '~> 7.1.0'
5
+ end
6
+
7
+ appraise 'rails-7.2' do
8
+ gem 'rails', '~> 7.2.0'
9
+ end
10
+
11
+ appraise 'rails-8' do
12
+ gem 'rails', '~> 8.0.1'
13
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Joel Moss
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,112 @@
1
+ # Proscenium::Phlex
2
+
3
+ [Proscenium](https://proscenium.rocks/) integration for Phlex.
4
+
5
+ ## Usage
6
+
7
+ [Phlex](https://www.phlex.fun/) is a framework for building fast, reusable, testable views in pure Ruby. [Proscenium](https://proscenium.rocks/) works perfectly with [Phlex](https://www.phlex.fun), with support for side-loading, CSS modules, and more.
8
+
9
+ ### Include Assets
10
+
11
+ Include `Proscenium::Phlex::IncludeAssets`, and call the `include_assets` helper.
12
+
13
+ ```ruby
14
+ class ApplicationLayout < Phlex::HTML
15
+ include Proscenium::Phlex::IncludeAssets # <--
16
+
17
+ def view_template(&)
18
+ doctype
19
+ html do
20
+ head do
21
+ title { 'My Awesome App' }
22
+ include_assets # <--
23
+ end
24
+ body(&)
25
+ end
26
+ end
27
+ end
28
+ ```
29
+
30
+ You can specifically include CCS and JS assets using the `include_stylesheets` and `include_javascripts` helpers, allowing you to control where they are included in the HTML.
31
+
32
+ ### Side-loading
33
+
34
+ Include `Proscenium::Phlex::Sideload` in your components, and it will automatically be [side-loaded](https://github.com/joelmoss/proscenium?tab=readme-ov-file#side-loading).
35
+
36
+ ```ruby
37
+ class MyComponent < Phlex::HTML
38
+ include Proscenium::Phlex::Sideload # <--
39
+
40
+ def view_template(&)
41
+ # ...
42
+ end
43
+ end
44
+ ```
45
+
46
+ ### CSS Modules
47
+
48
+ [CSS Modules](https://github.com/joelmoss/proscenium?tab=readme-ov-file#css-modules) are fully supported in Phlex classes, with access to the [`css_module` helper](https://github.com/joelmoss/proscenium?tab=readme-ov-file#in-your-views) if you need it. However, there is a better and more seemless way to reference CSS module classes in your Phlex classes.
49
+
50
+ Within your Phlex classes, any class names that begin with `@` will be treated as a CSS module class.
51
+
52
+ ```ruby
53
+ # /app/views/users/show_view.rb
54
+ class Users::ShowView < Phlex::HTML
55
+ include Proscenium::Phlex::Sideload # <--
56
+
57
+ def view_template
58
+ h1 class: :@user_name do
59
+ @user.name
60
+ end
61
+ end
62
+ end
63
+ ```
64
+
65
+ ```css
66
+ /* /app/views/users/show_view.module.css */
67
+ .userName {
68
+ color: red;
69
+ font-size: 50px;
70
+ }
71
+ ```
72
+
73
+ In the above `Users::ShowView` Phlex class, the `@user_name` class will be resolved to the `userName` class in the `users/show_view.module.css` file.
74
+
75
+ The view above will be rendered something like this:
76
+
77
+ ```html
78
+ <h1 class="user_name-ABCD1234"></h1>
79
+ ```
80
+
81
+ You can of course continue to reference regular class names in your view, and they will be passed through as is. This will allow you to mix and match CSS modules and regular CSS classes in your views.
82
+
83
+ ```ruby
84
+ # /app/views/users/show_view.rb
85
+ class Users::ShowView < Phlex::HTML
86
+ include Proscenium::Phlex::Sideload
87
+
88
+ def view_template
89
+ h1 class: :[@user_name, :title] do
90
+ @user.name
91
+ end
92
+ end
93
+ end
94
+ ```
95
+
96
+ ```html
97
+ <h1 class="user_name-ABCD1234 title">Joel Moss</h1>
98
+ ```
99
+
100
+ ## Development
101
+
102
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
103
+
104
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
105
+
106
+ ## Contributing
107
+
108
+ Bug reports and pull requests are welcome on GitHub at https://github.com/joelmoss/proscenium-phlex.
109
+
110
+ ## License
111
+
112
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/setup'
4
+
5
+ APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
6
+ load 'rails/tasks/engine.rake'
7
+
8
+ load 'rails/tasks/statistics.rake'
9
+
10
+ require 'bundler/gem_tasks'
@@ -0,0 +1,25 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "proscenium", path: "../../proscenium"
6
+ gem "puma"
7
+ gem "sqlite3"
8
+ gem "amazing_print"
9
+ gem "debug"
10
+ gem "web-console", group: :development
11
+ gem "rubocop-capybara", require: false
12
+ gem "rubocop-disable_syntax", require: false
13
+ gem "rubocop-minitest", require: false
14
+ gem "rubocop-packaging", require: false
15
+ gem "rubocop-performance", require: false
16
+ gem "rubocop-rails", require: false
17
+ gem "rubocop-rake", require: false
18
+ gem "capybara"
19
+ gem "maxitest"
20
+ gem "minitest-focus"
21
+ gem "minitest-spec-rails"
22
+ gem "appraisal"
23
+ gem "rails", "~> 7.1.0"
24
+
25
+ gemspec path: "../"
@@ -0,0 +1,366 @@
1
+ PATH
2
+ remote: ../../proscenium
3
+ specs:
4
+ proscenium (0.19.0.beta19)
5
+ ffi (~> 1.17.0)
6
+ rails (>= 7.1.0, < 9.0)
7
+
8
+ PATH
9
+ remote: ..
10
+ specs:
11
+ proscenium-phlex (0.1.0)
12
+ phlex-rails (~> 1.2.2)
13
+ prism
14
+ proscenium (~> 0.19.0.beta19)
15
+ rails (>= 7.1.0, < 9.0)
16
+ require-hooks (~> 0.2)
17
+
18
+ GEM
19
+ remote: https://rubygems.org/
20
+ specs:
21
+ actioncable (7.1.5.1)
22
+ actionpack (= 7.1.5.1)
23
+ activesupport (= 7.1.5.1)
24
+ nio4r (~> 2.0)
25
+ websocket-driver (>= 0.6.1)
26
+ zeitwerk (~> 2.6)
27
+ actionmailbox (7.1.5.1)
28
+ actionpack (= 7.1.5.1)
29
+ activejob (= 7.1.5.1)
30
+ activerecord (= 7.1.5.1)
31
+ activestorage (= 7.1.5.1)
32
+ activesupport (= 7.1.5.1)
33
+ mail (>= 2.7.1)
34
+ net-imap
35
+ net-pop
36
+ net-smtp
37
+ actionmailer (7.1.5.1)
38
+ actionpack (= 7.1.5.1)
39
+ actionview (= 7.1.5.1)
40
+ activejob (= 7.1.5.1)
41
+ activesupport (= 7.1.5.1)
42
+ mail (~> 2.5, >= 2.5.4)
43
+ net-imap
44
+ net-pop
45
+ net-smtp
46
+ rails-dom-testing (~> 2.2)
47
+ actionpack (7.1.5.1)
48
+ actionview (= 7.1.5.1)
49
+ activesupport (= 7.1.5.1)
50
+ nokogiri (>= 1.8.5)
51
+ racc
52
+ rack (>= 2.2.4)
53
+ rack-session (>= 1.0.1)
54
+ rack-test (>= 0.6.3)
55
+ rails-dom-testing (~> 2.2)
56
+ rails-html-sanitizer (~> 1.6)
57
+ actiontext (7.1.5.1)
58
+ actionpack (= 7.1.5.1)
59
+ activerecord (= 7.1.5.1)
60
+ activestorage (= 7.1.5.1)
61
+ activesupport (= 7.1.5.1)
62
+ globalid (>= 0.6.0)
63
+ nokogiri (>= 1.8.5)
64
+ actionview (7.1.5.1)
65
+ activesupport (= 7.1.5.1)
66
+ builder (~> 3.1)
67
+ erubi (~> 1.11)
68
+ rails-dom-testing (~> 2.2)
69
+ rails-html-sanitizer (~> 1.6)
70
+ activejob (7.1.5.1)
71
+ activesupport (= 7.1.5.1)
72
+ globalid (>= 0.3.6)
73
+ activemodel (7.1.5.1)
74
+ activesupport (= 7.1.5.1)
75
+ activerecord (7.1.5.1)
76
+ activemodel (= 7.1.5.1)
77
+ activesupport (= 7.1.5.1)
78
+ timeout (>= 0.4.0)
79
+ activestorage (7.1.5.1)
80
+ actionpack (= 7.1.5.1)
81
+ activejob (= 7.1.5.1)
82
+ activerecord (= 7.1.5.1)
83
+ activesupport (= 7.1.5.1)
84
+ marcel (~> 1.0)
85
+ activesupport (7.1.5.1)
86
+ base64
87
+ benchmark (>= 0.3)
88
+ bigdecimal
89
+ concurrent-ruby (~> 1.0, >= 1.0.2)
90
+ connection_pool (>= 2.2.5)
91
+ drb
92
+ i18n (>= 1.6, < 2)
93
+ logger (>= 1.4.2)
94
+ minitest (>= 5.1)
95
+ mutex_m
96
+ securerandom (>= 0.3)
97
+ tzinfo (~> 2.0)
98
+ addressable (2.8.7)
99
+ public_suffix (>= 2.0.2, < 7.0)
100
+ amazing_print (1.8.1)
101
+ appraisal (2.5.0)
102
+ bundler
103
+ rake
104
+ thor (>= 0.14.0)
105
+ ast (2.4.3)
106
+ base64 (0.3.0)
107
+ benchmark (0.4.1)
108
+ bigdecimal (3.2.2)
109
+ bindex (0.8.1)
110
+ builder (3.3.0)
111
+ capybara (3.40.0)
112
+ addressable
113
+ matrix
114
+ mini_mime (>= 0.1.3)
115
+ nokogiri (~> 1.11)
116
+ rack (>= 1.6.0)
117
+ rack-test (>= 0.6.3)
118
+ regexp_parser (>= 1.5, < 3.0)
119
+ xpath (~> 3.2)
120
+ concurrent-ruby (1.3.5)
121
+ connection_pool (2.5.3)
122
+ crass (1.0.6)
123
+ date (3.4.1)
124
+ debug (1.11.0)
125
+ irb (~> 1.10)
126
+ reline (>= 0.3.8)
127
+ drb (2.2.3)
128
+ erb (5.0.2)
129
+ erubi (1.13.1)
130
+ ffi (1.17.2-aarch64-linux-gnu)
131
+ ffi (1.17.2-aarch64-linux-musl)
132
+ ffi (1.17.2-arm-linux-gnu)
133
+ ffi (1.17.2-arm-linux-musl)
134
+ ffi (1.17.2-arm64-darwin)
135
+ ffi (1.17.2-x86_64-darwin)
136
+ ffi (1.17.2-x86_64-linux-gnu)
137
+ ffi (1.17.2-x86_64-linux-musl)
138
+ globalid (1.2.1)
139
+ activesupport (>= 6.1)
140
+ i18n (1.14.7)
141
+ concurrent-ruby (~> 1.0)
142
+ io-console (0.8.1)
143
+ irb (1.15.2)
144
+ pp (>= 0.6.0)
145
+ rdoc (>= 4.0.0)
146
+ reline (>= 0.4.2)
147
+ json (2.13.0)
148
+ language_server-protocol (3.17.0.5)
149
+ lint_roller (1.1.0)
150
+ logger (1.7.0)
151
+ loofah (2.24.1)
152
+ crass (~> 1.0.2)
153
+ nokogiri (>= 1.12.0)
154
+ mail (2.8.1)
155
+ mini_mime (>= 0.1.1)
156
+ net-imap
157
+ net-pop
158
+ net-smtp
159
+ marcel (1.0.4)
160
+ matrix (0.4.3)
161
+ maxitest (6.0.0)
162
+ minitest (>= 5.20.0, < 5.26.0)
163
+ mini_mime (1.1.5)
164
+ minitest (5.25.5)
165
+ minitest-focus (1.4.0)
166
+ minitest (>= 4, < 6)
167
+ minitest-spec-rails (7.4.1)
168
+ minitest (>= 5.0)
169
+ railties (>= 4.1)
170
+ mutex_m (0.3.0)
171
+ net-imap (0.5.9)
172
+ date
173
+ net-protocol
174
+ net-pop (0.1.2)
175
+ net-protocol
176
+ net-protocol (0.2.2)
177
+ timeout
178
+ net-smtp (0.5.1)
179
+ net-protocol
180
+ nio4r (2.7.4)
181
+ nokogiri (1.18.8-aarch64-linux-gnu)
182
+ racc (~> 1.4)
183
+ nokogiri (1.18.8-aarch64-linux-musl)
184
+ racc (~> 1.4)
185
+ nokogiri (1.18.8-arm-linux-gnu)
186
+ racc (~> 1.4)
187
+ nokogiri (1.18.8-arm-linux-musl)
188
+ racc (~> 1.4)
189
+ nokogiri (1.18.8-arm64-darwin)
190
+ racc (~> 1.4)
191
+ nokogiri (1.18.8-x86_64-darwin)
192
+ racc (~> 1.4)
193
+ nokogiri (1.18.8-x86_64-linux-gnu)
194
+ racc (~> 1.4)
195
+ nokogiri (1.18.8-x86_64-linux-musl)
196
+ racc (~> 1.4)
197
+ parallel (1.27.0)
198
+ parser (3.3.8.0)
199
+ ast (~> 2.4.1)
200
+ racc
201
+ phlex (1.11.0)
202
+ phlex-rails (1.2.2)
203
+ phlex (>= 1.10, < 2)
204
+ railties (>= 6.1, < 9)
205
+ pp (0.6.2)
206
+ prettyprint
207
+ prettyprint (0.2.0)
208
+ prism (1.4.0)
209
+ psych (5.2.6)
210
+ date
211
+ stringio
212
+ public_suffix (6.0.2)
213
+ puma (6.6.0)
214
+ nio4r (~> 2.0)
215
+ racc (1.8.1)
216
+ rack (3.1.16)
217
+ rack-session (2.1.1)
218
+ base64 (>= 0.1.0)
219
+ rack (>= 3.0.0)
220
+ rack-test (2.2.0)
221
+ rack (>= 1.3)
222
+ rackup (2.2.1)
223
+ rack (>= 3)
224
+ rails (7.1.5.1)
225
+ actioncable (= 7.1.5.1)
226
+ actionmailbox (= 7.1.5.1)
227
+ actionmailer (= 7.1.5.1)
228
+ actionpack (= 7.1.5.1)
229
+ actiontext (= 7.1.5.1)
230
+ actionview (= 7.1.5.1)
231
+ activejob (= 7.1.5.1)
232
+ activemodel (= 7.1.5.1)
233
+ activerecord (= 7.1.5.1)
234
+ activestorage (= 7.1.5.1)
235
+ activesupport (= 7.1.5.1)
236
+ bundler (>= 1.15.0)
237
+ railties (= 7.1.5.1)
238
+ rails-dom-testing (2.3.0)
239
+ activesupport (>= 5.0.0)
240
+ minitest
241
+ nokogiri (>= 1.6)
242
+ rails-html-sanitizer (1.6.2)
243
+ loofah (~> 2.21)
244
+ 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)
245
+ railties (7.1.5.1)
246
+ actionpack (= 7.1.5.1)
247
+ activesupport (= 7.1.5.1)
248
+ irb
249
+ rackup (>= 1.0.0)
250
+ rake (>= 12.2)
251
+ thor (~> 1.0, >= 1.2.2)
252
+ zeitwerk (~> 2.6)
253
+ rainbow (3.1.1)
254
+ rake (13.3.0)
255
+ rdoc (6.14.2)
256
+ erb
257
+ psych (>= 4.0.0)
258
+ regexp_parser (2.10.0)
259
+ reline (0.6.1)
260
+ io-console (~> 0.5)
261
+ require-hooks (0.2.2)
262
+ rubocop (1.78.0)
263
+ json (~> 2.3)
264
+ language_server-protocol (~> 3.17.0.2)
265
+ lint_roller (~> 1.1.0)
266
+ parallel (~> 1.10)
267
+ parser (>= 3.3.0.2)
268
+ rainbow (>= 2.2.2, < 4.0)
269
+ regexp_parser (>= 2.9.3, < 3.0)
270
+ rubocop-ast (>= 1.45.1, < 2.0)
271
+ ruby-progressbar (~> 1.7)
272
+ unicode-display_width (>= 2.4.0, < 4.0)
273
+ rubocop-ast (1.46.0)
274
+ parser (>= 3.3.7.2)
275
+ prism (~> 1.4)
276
+ rubocop-capybara (2.22.1)
277
+ lint_roller (~> 1.1)
278
+ rubocop (~> 1.72, >= 1.72.1)
279
+ rubocop-disable_syntax (0.2.0)
280
+ lint_roller
281
+ rubocop (>= 1.72.0)
282
+ rubocop-minitest (0.38.1)
283
+ lint_roller (~> 1.1)
284
+ rubocop (>= 1.75.0, < 2.0)
285
+ rubocop-ast (>= 1.38.0, < 2.0)
286
+ rubocop-packaging (0.6.0)
287
+ lint_roller (~> 1.1.0)
288
+ rubocop (>= 1.72.1, < 2.0)
289
+ rubocop-performance (1.25.0)
290
+ lint_roller (~> 1.1)
291
+ rubocop (>= 1.75.0, < 2.0)
292
+ rubocop-ast (>= 1.38.0, < 2.0)
293
+ rubocop-rails (2.32.0)
294
+ activesupport (>= 4.2.0)
295
+ lint_roller (~> 1.1)
296
+ rack (>= 1.1)
297
+ rubocop (>= 1.75.0, < 2.0)
298
+ rubocop-ast (>= 1.44.0, < 2.0)
299
+ rubocop-rake (0.7.1)
300
+ lint_roller (~> 1.1)
301
+ rubocop (>= 1.72.1)
302
+ ruby-progressbar (1.13.0)
303
+ securerandom (0.4.1)
304
+ sqlite3 (2.7.3-aarch64-linux-gnu)
305
+ sqlite3 (2.7.3-aarch64-linux-musl)
306
+ sqlite3 (2.7.3-arm-linux-gnu)
307
+ sqlite3 (2.7.3-arm-linux-musl)
308
+ sqlite3 (2.7.3-arm64-darwin)
309
+ sqlite3 (2.7.3-x86_64-darwin)
310
+ sqlite3 (2.7.3-x86_64-linux-gnu)
311
+ sqlite3 (2.7.3-x86_64-linux-musl)
312
+ stringio (3.1.7)
313
+ thor (1.4.0)
314
+ timeout (0.4.3)
315
+ tzinfo (2.0.6)
316
+ concurrent-ruby (~> 1.0)
317
+ unicode-display_width (3.1.4)
318
+ unicode-emoji (~> 4.0, >= 4.0.4)
319
+ unicode-emoji (4.0.4)
320
+ web-console (4.2.1)
321
+ actionview (>= 6.0.0)
322
+ activemodel (>= 6.0.0)
323
+ bindex (>= 0.4.0)
324
+ railties (>= 6.0.0)
325
+ websocket-driver (0.8.0)
326
+ base64
327
+ websocket-extensions (>= 0.1.0)
328
+ websocket-extensions (0.1.5)
329
+ xpath (3.2.0)
330
+ nokogiri (~> 1.8)
331
+ zeitwerk (2.7.3)
332
+
333
+ PLATFORMS
334
+ aarch64-linux-gnu
335
+ aarch64-linux-musl
336
+ arm-linux-gnu
337
+ arm-linux-musl
338
+ arm64-darwin
339
+ x86_64-darwin
340
+ x86_64-linux-gnu
341
+ x86_64-linux-musl
342
+
343
+ DEPENDENCIES
344
+ amazing_print
345
+ appraisal
346
+ capybara
347
+ debug
348
+ maxitest
349
+ minitest-focus
350
+ minitest-spec-rails
351
+ proscenium!
352
+ proscenium-phlex!
353
+ puma
354
+ rails (~> 7.1.0)
355
+ rubocop-capybara
356
+ rubocop-disable_syntax
357
+ rubocop-minitest
358
+ rubocop-packaging
359
+ rubocop-performance
360
+ rubocop-rails
361
+ rubocop-rake
362
+ sqlite3
363
+ web-console
364
+
365
+ BUNDLED WITH
366
+ 2.6.8
@@ -0,0 +1,25 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "proscenium", path: "../../proscenium"
6
+ gem "puma"
7
+ gem "sqlite3"
8
+ gem "amazing_print"
9
+ gem "debug"
10
+ gem "web-console", group: :development
11
+ gem "rubocop-capybara", require: false
12
+ gem "rubocop-disable_syntax", require: false
13
+ gem "rubocop-minitest", require: false
14
+ gem "rubocop-packaging", require: false
15
+ gem "rubocop-performance", require: false
16
+ gem "rubocop-rails", require: false
17
+ gem "rubocop-rake", require: false
18
+ gem "capybara"
19
+ gem "maxitest"
20
+ gem "minitest-focus"
21
+ gem "minitest-spec-rails"
22
+ gem "appraisal"
23
+ gem "rails", "~> 7.2.0"
24
+
25
+ gemspec path: "../"