hoc_utils 0.1.4 → 0.1.5
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d322af731840a53efc077f1b06c37855bf762f56
|
|
4
|
+
data.tar.gz: 55871f41c59f6ee90890b02c23210e65971cfc6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 905e4b59fc1e3f2e4aabaa4e992bd45f5f4e713f5334ba2a85ee1c48943e8861b2107184a639ae0d9aa78dba209873291bbb1bdbaf59bd2760e6a06f93cd9b69
|
|
7
|
+
data.tar.gz: f04a1678f3f7c778154f98a7a2ed18078b444a17bf0dfc1ff7d420b7fb3d7ebdbf143b278732e97007c919f7a6135257353d18775404264a8408399485b78ad5
|
|
@@ -102,17 +102,13 @@ ACTS
|
|
|
102
102
|
end
|
|
103
103
|
|
|
104
104
|
def salute
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
* #beAwesome
|
|
113
|
-
|
|
114
|
-
MSG
|
|
115
|
-
say msg, :green, :bold
|
|
105
|
+
say("Generation complete.", :green, :bold)
|
|
106
|
+
say("Next step is to customize the generated code.", :green)
|
|
107
|
+
say("* Open 'spec/swagger_helper.rb' and change the definitions #{singular_table_name}_input and #{singular_table_name}.", :green)
|
|
108
|
+
say("* Run 'rails rswag:specs:swaggerize' to update swagger.", :green)
|
|
109
|
+
say("* Make sure any referenced models are updated with eg. has_many :#{plural_table_name}", :green)
|
|
110
|
+
say("* Customize the table and form definition in 'app/admin/#{plural_table_name}_admin.rb'", :green)
|
|
111
|
+
say("* #beAwesome", :green)
|
|
116
112
|
end
|
|
117
113
|
|
|
118
114
|
end
|
data/lib/hoc_utils/version.rb
CHANGED