next_rails_scaffold 0.1.10 → 0.1.11
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f03d199ec6a029410c9c0626e7eaa604e8e454c772b161a5ef884e5503d4e284
|
4
|
+
data.tar.gz: c0c56ac0d95b65e3979c0120f59db0f494a980fdcd8f4138c037b74ce43aff5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b3369a429e58f2739888d89ef20fa368124b27e5cfcd302eaedc9d09173391ef42a46ce3d99be58320a3fb22782e92545182b3ff19e160c162f3aed34d3750c
|
7
|
+
data.tar.gz: 87dcb6bc580cc1a9aa8afd0aa0314ff037ae0d7f31cad7a35a653862f46ea3f4c472f84a6faabc8c2780d95e7bf7905e8cbe03811345f414492eef05b514bd1e
|
data/README.md
CHANGED
@@ -41,6 +41,10 @@ The `next_rails_scaffold` gem enhances the default Ruby on Rails scaffold genera
|
|
41
41
|
Example:
|
42
42
|
|
43
43
|
```
|
44
|
+
# Appending the `next_rails_scaffold` generator steps to the to the Rails' scaffold generator.
|
45
|
+
bin/rails generate next_rails_scaffold:install
|
46
|
+
|
47
|
+
# Generate the RESfull API endpoints and Next.js app with respective components and pages.
|
44
48
|
bin/rails generate scaffold Post tile:string body:text
|
45
49
|
```
|
46
50
|
|