Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruby-ui/web
Phlex components for your Rails app
https://github.com/ruby-ui/web
phlex rails ruby ruby-on-rails ruby-ui
Last synced: 4 days ago
JSON representation
Phlex components for your Rails app
- Host: GitHub
- URL: https://github.com/ruby-ui/web
- Owner: ruby-ui
- Created: 2023-10-10T19:56:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-30T16:52:49.000Z (11 days ago)
- Last Synced: 2025-02-06T09:07:22.311Z (5 days ago)
- Topics: phlex, rails, ruby, ruby-on-rails, ruby-ui
- Language: Ruby
- Homepage: https://rubyui.com
- Size: 10.9 MB
- Stars: 64
- Watchers: 4
- Forks: 16
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Rails need a plug n play system for creating streamlined ui components.
Phlex looks fun and fast, so I thought I'd start creating ui components with it.
## Contributing - Local Development Setup
### Install the Gem Locally
To contribute to this project, it's recommended to install the gem locally and point to it in your Gemfile:
```ruby
gem "ruby_ui", path: "../ruby_ui"
```## Working with Components
### Component Development Workflow
1. Eject the component you want to modify using the generator:
```bash
rails generate ruby_ui:component combobox
```
2. Make your desired changes to the ejected component
3. Once you're satisfied with the modifications, integrate the component back into the gem in the appropriate locationThis workflow allows you to iterate quickly on components while maintaining the gem's structure.
Would you like me to expand on any part of the contributing guide?