ui_components 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +18 -11
- data/lib/ui_components/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e31ad6fe648a34de7a80d53704daf454b21fffd519709908acd89bc79ad36110
|
4
|
+
data.tar.gz: d9a518ee3ee2920ada5690a5408920762e826ac19df74937be18b261c3369a1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f84a0496d5eb96e925965eee822a7a5b6ab62c411f58d9e47903a898874c1b8caacaa7319cf47e4c0f4b8f626b8552c5f1b82705f1318a4333cae79238f8120c
|
7
|
+
data.tar.gz: 52682d5b85b9b114d06f62572dbe0cc9a657cb1a2f6473082e8b71ec50852141c6c4a4c02deb4a09e98c4090fb3920ea6cf6a33f465ce423f4735a13bdb83613
|
data/README.md
CHANGED
@@ -1,28 +1,35 @@
|
|
1
1
|
# UiComponents
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ui_components`. To experiment with that code, run `bin/console` for an interactive prompt.
|
3
|
+
This gem makes it easy to set up and view UI components using Daisy UI.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
9
|
-
|
10
|
-
|
11
|
-
Install the gem and add to the application's Gemfile by executing:
|
7
|
+
Add the gem to your Gemfile:
|
12
8
|
|
13
9
|
```bash
|
14
|
-
bundle add
|
10
|
+
bundle add ui_components
|
15
11
|
```
|
16
12
|
|
17
|
-
|
13
|
+
Or install it directly:
|
18
14
|
|
19
15
|
```bash
|
20
|
-
gem install
|
16
|
+
gem install ui_components
|
21
17
|
```
|
22
18
|
|
23
19
|
## Usage
|
24
20
|
|
25
|
-
|
21
|
+
To set up the gem and prepare the components, run:
|
22
|
+
```bash
|
23
|
+
bin/rails ui_components:setup
|
24
|
+
```
|
25
|
+
|
26
|
+
After setup, start your app:
|
27
|
+
```bash
|
28
|
+
bin/dev
|
29
|
+
```
|
30
|
+
|
31
|
+
>Then, open your browser and navigate to: [UI Components](http://localhost:3000/ui_components/daisy_ui)
|
32
|
+
|
26
33
|
|
27
34
|
## Development
|
28
35
|
|
@@ -40,4 +47,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
40
47
|
|
41
48
|
## Code of Conduct
|
42
49
|
|
43
|
-
Everyone interacting in the UiComponents project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/ui_components/blob/main/CODE_OF_CONDUCT.md).
|
50
|
+
Everyone interacting in the UiComponents project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/ui_components/blob/main/CODE_OF_CONDUCT.md).
|