superview 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2a8124e9df0a2fcaed7dd467327cedc7a676117a54c47896ba436c7f6cdc97c4
4
+ data.tar.gz: 65bfc7d730a19ae0107519207dc4078a17772465305195186ddd5b3b152f6edb
5
+ SHA512:
6
+ metadata.gz: 8ca5b6d4459efebc79bc12dd3a4e99d39c14a200a4ad56d998bc784658d770526c78687121320b70a2a67beebe641d8ee247c149861205df7d60a3f59c640130
7
+ data.tar.gz: 3e6c2af610a5b8a7f6952425bef2c9be9d5e39a49fd6f0128f73923737fea2b6fc70954883e79a17e48534047512d17aae26da1b3adc6a4511efa079bd7073d0
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-08-17
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at bradgessler@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in superview.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rails", "~> 7.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,185 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ superview (0.1.0)
5
+ phlex-rails (~> 1.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.0.7)
11
+ actionpack (= 7.0.7)
12
+ activesupport (= 7.0.7)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (7.0.7)
16
+ actionpack (= 7.0.7)
17
+ activejob (= 7.0.7)
18
+ activerecord (= 7.0.7)
19
+ activestorage (= 7.0.7)
20
+ activesupport (= 7.0.7)
21
+ mail (>= 2.7.1)
22
+ net-imap
23
+ net-pop
24
+ net-smtp
25
+ actionmailer (7.0.7)
26
+ actionpack (= 7.0.7)
27
+ actionview (= 7.0.7)
28
+ activejob (= 7.0.7)
29
+ activesupport (= 7.0.7)
30
+ mail (~> 2.5, >= 2.5.4)
31
+ net-imap
32
+ net-pop
33
+ net-smtp
34
+ rails-dom-testing (~> 2.0)
35
+ actionpack (7.0.7)
36
+ actionview (= 7.0.7)
37
+ activesupport (= 7.0.7)
38
+ rack (~> 2.0, >= 2.2.4)
39
+ rack-test (>= 0.6.3)
40
+ rails-dom-testing (~> 2.0)
41
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
42
+ actiontext (7.0.7)
43
+ actionpack (= 7.0.7)
44
+ activerecord (= 7.0.7)
45
+ activestorage (= 7.0.7)
46
+ activesupport (= 7.0.7)
47
+ globalid (>= 0.6.0)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (7.0.7)
50
+ activesupport (= 7.0.7)
51
+ builder (~> 3.1)
52
+ erubi (~> 1.4)
53
+ rails-dom-testing (~> 2.0)
54
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
55
+ activejob (7.0.7)
56
+ activesupport (= 7.0.7)
57
+ globalid (>= 0.3.6)
58
+ activemodel (7.0.7)
59
+ activesupport (= 7.0.7)
60
+ activerecord (7.0.7)
61
+ activemodel (= 7.0.7)
62
+ activesupport (= 7.0.7)
63
+ activestorage (7.0.7)
64
+ actionpack (= 7.0.7)
65
+ activejob (= 7.0.7)
66
+ activerecord (= 7.0.7)
67
+ activesupport (= 7.0.7)
68
+ marcel (~> 1.0)
69
+ mini_mime (>= 1.1.0)
70
+ activesupport (7.0.7)
71
+ concurrent-ruby (~> 1.0, >= 1.0.2)
72
+ i18n (>= 1.6, < 2)
73
+ minitest (>= 5.1)
74
+ tzinfo (~> 2.0)
75
+ builder (3.2.4)
76
+ cgi (0.3.6)
77
+ concurrent-ruby (1.2.2)
78
+ crass (1.0.6)
79
+ date (3.3.3)
80
+ diff-lcs (1.5.0)
81
+ erb (4.0.2)
82
+ cgi (>= 0.3.3)
83
+ erubi (1.12.0)
84
+ globalid (1.1.0)
85
+ activesupport (>= 5.0)
86
+ i18n (1.14.1)
87
+ concurrent-ruby (~> 1.0)
88
+ loofah (2.21.3)
89
+ crass (~> 1.0.2)
90
+ nokogiri (>= 1.12.0)
91
+ mail (2.8.1)
92
+ mini_mime (>= 0.1.1)
93
+ net-imap
94
+ net-pop
95
+ net-smtp
96
+ marcel (1.0.2)
97
+ method_source (1.0.0)
98
+ mini_mime (1.1.5)
99
+ minitest (5.19.0)
100
+ net-imap (0.3.7)
101
+ date
102
+ net-protocol
103
+ net-pop (0.1.2)
104
+ net-protocol
105
+ net-protocol (0.2.1)
106
+ timeout
107
+ net-smtp (0.3.3)
108
+ net-protocol
109
+ nio4r (2.5.9)
110
+ nokogiri (1.15.4-arm64-darwin)
111
+ racc (~> 1.4)
112
+ phlex (1.8.1)
113
+ concurrent-ruby (~> 1.2)
114
+ erb (>= 4)
115
+ zeitwerk (~> 2.6)
116
+ phlex-rails (1.0.0)
117
+ phlex (~> 1.7)
118
+ rails (>= 6.1, < 8)
119
+ zeitwerk (~> 2.6)
120
+ racc (1.7.1)
121
+ rack (2.2.8)
122
+ rack-test (2.1.0)
123
+ rack (>= 1.3)
124
+ rails (7.0.7)
125
+ actioncable (= 7.0.7)
126
+ actionmailbox (= 7.0.7)
127
+ actionmailer (= 7.0.7)
128
+ actionpack (= 7.0.7)
129
+ actiontext (= 7.0.7)
130
+ actionview (= 7.0.7)
131
+ activejob (= 7.0.7)
132
+ activemodel (= 7.0.7)
133
+ activerecord (= 7.0.7)
134
+ activestorage (= 7.0.7)
135
+ activesupport (= 7.0.7)
136
+ bundler (>= 1.15.0)
137
+ railties (= 7.0.7)
138
+ rails-dom-testing (2.2.0)
139
+ activesupport (>= 5.0.0)
140
+ minitest
141
+ nokogiri (>= 1.6)
142
+ rails-html-sanitizer (1.6.0)
143
+ loofah (~> 2.21)
144
+ nokogiri (~> 1.14)
145
+ railties (7.0.7)
146
+ actionpack (= 7.0.7)
147
+ activesupport (= 7.0.7)
148
+ method_source
149
+ rake (>= 12.2)
150
+ thor (~> 1.0)
151
+ zeitwerk (~> 2.5)
152
+ rake (13.0.6)
153
+ rspec (3.12.0)
154
+ rspec-core (~> 3.12.0)
155
+ rspec-expectations (~> 3.12.0)
156
+ rspec-mocks (~> 3.12.0)
157
+ rspec-core (3.12.2)
158
+ rspec-support (~> 3.12.0)
159
+ rspec-expectations (3.12.3)
160
+ diff-lcs (>= 1.2.0, < 2.0)
161
+ rspec-support (~> 3.12.0)
162
+ rspec-mocks (3.12.6)
163
+ diff-lcs (>= 1.2.0, < 2.0)
164
+ rspec-support (~> 3.12.0)
165
+ rspec-support (3.12.1)
166
+ thor (1.2.2)
167
+ timeout (0.4.0)
168
+ tzinfo (2.0.6)
169
+ concurrent-ruby (~> 1.0)
170
+ websocket-driver (0.7.6)
171
+ websocket-extensions (>= 0.1.0)
172
+ websocket-extensions (0.1.5)
173
+ zeitwerk (2.6.11)
174
+
175
+ PLATFORMS
176
+ arm64-darwin-22
177
+
178
+ DEPENDENCIES
179
+ rails (~> 7.0)
180
+ rake (~> 13.0)
181
+ rspec (~> 3.0)
182
+ superview!
183
+
184
+ BUNDLED WITH
185
+ 2.4.8
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Brad Gessler
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,81 @@
1
+ # Superview
2
+
3
+ Include in controllers to map action names to class names. This makes it possible to embed Phlex components directly into Rails controllers without having to go through other templating systems like Erb.
4
+
5
+ Instance methods will be assigned to views that have `attr_accessor` methods.
6
+
7
+ Consider a blog post controller:
8
+
9
+ ```ruby
10
+ class PostsController < ApplicationController
11
+ include Superview::Actions
12
+
13
+ before_action :load_post
14
+
15
+ class Show < ApplicationComponent
16
+ attr_accessor :post
17
+
18
+ def template(&)
19
+ h1 { @post.title }
20
+ div(class: "prose") { @post.body }
21
+ end
22
+ end
23
+
24
+ private
25
+ def load_post
26
+ @post = Post.find(params[:id])
27
+ end
28
+ end
29
+ ```
30
+
31
+ The `@post` variable gets set in the `Show` view class via `Show#post=`.
32
+
33
+ ## Installation
34
+
35
+ Install the gem and add to the application's Gemfile by executing:
36
+
37
+ $ bundle add superview
38
+
39
+ If bundler is not being used to manage dependencies, install the gem by executing:
40
+
41
+ $ gem install superview
42
+
43
+ ## Usage
44
+
45
+ Install `phlex-rails` in your application.
46
+
47
+ $ bin/rails generate phlex:install
48
+
49
+ Then include the following any controller you'd like to render Phlex components.
50
+
51
+ ```ruby
52
+ class PostsController < ApplicationController
53
+ include Superview::Actions
54
+
55
+ class Show < ApplicationComponent
56
+ def template(&)
57
+ h1 { "Hello World" }
58
+ end
59
+ end
60
+ end
61
+ ```
62
+
63
+ The `Show` class will render when the `PostsController#show` action is called.
64
+
65
+ ## Development
66
+
67
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
68
+
69
+ 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).
70
+
71
+ ## Contributing
72
+
73
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/superview. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/superview/blob/main/CODE_OF_CONDUCT.md).
74
+
75
+ ## License
76
+
77
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
78
+
79
+ ## Code of Conduct
80
+
81
+ Everyone interacting in the Superview project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/superview/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Superview
4
+ VERSION = "0.1.0"
5
+ end
data/lib/superview.rb ADDED
@@ -0,0 +1,92 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "superview/version"
4
+ require "active_support/concern"
5
+
6
+ module Superview
7
+ class Error < StandardError; end
8
+ # Include in controllers to map action names to class names. This makes it possible to
9
+ # embed Phlex components directly into Rails controllers without having to go through
10
+ # other templating systems like Erb.
11
+ #
12
+ # Instance methods will be assigned to views that have `attr_accessor` methods.
13
+ #
14
+ # Consider a blog post controller:
15
+ #
16
+ # ```ruby
17
+ # class PostsController < ApplicationController
18
+ # include Superview::Actions
19
+ #
20
+ # before_action :load_post
21
+ #
22
+ # class Show < ApplicationComponent
23
+ # attr_accessor :post
24
+ #
25
+ # def template(&)
26
+ # h1 { @post.title }
27
+ # div(class: "prose") { @post.body }
28
+ # end
29
+ # end
30
+ #
31
+ # private
32
+ # def load_post
33
+ # @post = Post.find(params[:id])
34
+ # end
35
+ # end
36
+ # ```
37
+ #
38
+ # The `@post` variable gets set in the `Show` view class via `Show#post=`.
39
+ module Actions
40
+ extend ActiveSupport::Concern
41
+
42
+ class_methods do
43
+ # Finds a class on the controller with the same name as the action. For example,
44
+ # `def index` would find the `Index` constant on the controller class to render
45
+ # for the action `index`.
46
+ def phlex_action_class(action:)
47
+ action_class = action.to_s.camelcase
48
+ const_get action_class if const_defined? action_class
49
+ end
50
+ end
51
+
52
+ protected
53
+
54
+ # Assigns the instance variables that are set in the controller to setter method
55
+ # on Phlex. For example, if a controller defines @users and a Phlex class has
56
+ # `attr_writer :users`, `attr_accessor :user`, or `def users=`, it will be automatically
57
+ # set by this method.
58
+ def assign_phlex_accessors(phlex_view)
59
+ phlex_view.tap do |view|
60
+ view_assigns.each do |variable, value|
61
+ attr_writer_name = "#{variable}="
62
+ view.send attr_writer_name, value if view.respond_to? attr_writer_name
63
+ end
64
+ end
65
+ end
66
+
67
+ # Initializers a Phlex view based on the action name, then assigns `view_assigns`
68
+ # to the view.
69
+ def phlex_action(action)
70
+ assign_phlex_accessors self.class.phlex_action_class(action: action).new
71
+ end
72
+
73
+ # Phlex action for the current action.
74
+ def phlex
75
+ phlex_action(action_name)
76
+ end
77
+
78
+ # Try rendering with the regular Rails rendering methods; if those don't work
79
+ # then try finding the Phlex class that corresponds with the action_name. If that's
80
+ # found then tell Rails to call `default_phlex_render`.
81
+ def method_for_action(action_name)
82
+ super || if self.class.phlex_action_class action: action_name
83
+ "default_phlex_render"
84
+ end
85
+ end
86
+
87
+ # Renders a Phlex view for the given action, if it's present.
88
+ def default_phlex_render
89
+ render phlex
90
+ end
91
+ end
92
+ end
data/sig/superview.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Superview
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: superview
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Brad Gessler
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-08-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: phlex-rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ description: Build Rails applications entirely out of Phlex components.
28
+ email:
29
+ - bradgessler@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rspec"
35
+ - CHANGELOG.md
36
+ - CODE_OF_CONDUCT.md
37
+ - Gemfile
38
+ - Gemfile.lock
39
+ - LICENSE.txt
40
+ - README.md
41
+ - Rakefile
42
+ - lib/superview.rb
43
+ - lib/superview/version.rb
44
+ - sig/superview.rbs
45
+ homepage: https://github.com/rubymonolith/superview
46
+ licenses:
47
+ - MIT
48
+ metadata:
49
+ allowed_push_host: https://rubygems.org/
50
+ homepage_uri: https://github.com/rubymonolith/superview
51
+ source_code_uri: https://github.com/rubymonolith/superview
52
+ changelog_uri: https://github.com/rubymonolith/superview
53
+ post_install_message:
54
+ rdoc_options: []
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 2.6.0
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ requirements: []
68
+ rubygems_version: 3.4.6
69
+ signing_key:
70
+ specification_version: 4
71
+ summary: Build Rails applications entirely out of Phlex components.
72
+ test_files: []