1
1
# RubyUI (former PhlexUI) 🚀
2
2
3
- A UI component library, crafted precisely for Ruby devs who want to stay organized and build modern apps, fast. ✨
4
- ** Use this to build your own component library** 🛠️
3
+ Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source.
5
4
6
- ## About RubyUI 📚
5
+ This is NOT a component library. It's a collection of re-usable components that you can generate or copy and paste into your apps.
7
6
8
- RubyUI is a UI component library designed to let Ruby developers create modern, fast, and organized applications. 💎
7
+ Pick the components you need. Copy and paste the code into your project and customize to your needs. The code is yours.
8
+
9
+ Use this as a reference to build your own component libraries.
9
10
10
11
### Key Features:
11
12
@@ -28,13 +29,13 @@ RubyUI is a UI component library designed to let Ruby developers create modern,
28
29
### 1. Install the gem
29
30
30
31
``` bash
31
- bundle add ruby_ui
32
+ bundle add ruby_ui --group development --require false
32
33
```
33
34
34
35
or add it to your Gemfile:
35
36
36
37
``` ruby
37
- gem " ruby_ui"
38
+ gem " ruby_ui" , group: :development , require: false
38
39
```
39
40
40
41
### 2. Run the installer:
@@ -45,9 +46,15 @@ bin/rails g ruby_ui:install
45
46
46
47
### 3. Done! 🎉
47
48
49
+ You can generate your components using ` ruby_ui:component ` generator.
50
+
51
+ ``` bash
52
+ bin/rails g ruby_ui:component Accordion
53
+ ```
54
+
48
55
## Documentation 📖
49
56
50
- Visit https://ruby_ui.dev/docs/introduction to view the full documentation, including:
57
+ Visit https://rubyui.com to view the full documentation, including:
51
58
52
59
- Detailed component guides
53
60
- Themes
0 commit comments