jsonapi-swagger-blocks-generator 0.1.1 → 0.1.2
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/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/generators/jsonapi/templates/model_template.template +33 -49
- data/lib/jsonapi/swagger/blocks/generator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 742c2f935861a3ea96177cc137ef93f18f36e8e5
|
4
|
+
data.tar.gz: c39792ac492988b5c7d9c0bbdf5da8d12456be6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8caaf3f23d5f3fc94b12b14ca48d198cff2faa218d5dd02cbdced2dd7b23d3d4ebb9a080372dbfe0d82fc068b063f8cc2205934e8f246b36aeb0697bc5bbcd98
|
7
|
+
data.tar.gz: 3093590ed562650781c624c91a9873da4253d112ab16a24d365f6e425bbcebba75f29d15e30ea0373e66853bcdb3fe24e6686b0f8387f1b598e2e23963bc2dc6
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# JSONAPI Swagger Blocks Generator
|
2
2
|
|
3
|
-
[](https://codeclimate.com/github/g13ydson/jsonapi-swagger-blocks-generator/maintainability) <a href="https://codeclimate.com/github/g13ydson/jsonapi-swagger-blocks-generator/test_coverage"><img src="https://api.codeclimate.com/v1/badges/2de3e3c4e8fb1543a687/test_coverage" /></a> [](https://travis-ci.org/g13ydson/jsonapi-swagger-blocks-generator)
|
3
|
+
[](https://badge.fury.io/rb/jsonapi-swagger-blocks-generator) [](https://badge.fury.io/rb/jsonapi-swagger-blocks-generator) [](https://codeclimate.com/github/g13ydson/jsonapi-swagger-blocks-generator/maintainability) <a href="https://codeclimate.com/github/g13ydson/jsonapi-swagger-blocks-generator/test_coverage"><img src="https://api.codeclimate.com/v1/badges/2de3e3c4e8fb1543a687/test_coverage" /></a> [](https://travis-ci.org/g13ydson/jsonapi-swagger-blocks-generator)
|
4
4
|
|
5
5
|
creates swagger blocks files based on the JSONAPI::Resource file http://jsonapi-resources.com/
|
6
6
|
|
@@ -16,13 +16,11 @@ class <%= model.camelcase %>
|
|
16
16
|
end
|
17
17
|
<%- if attributes -%>
|
18
18
|
property :attributes do
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
key :type, :string
|
23
|
-
end
|
24
|
-
<%- end -%>
|
19
|
+
<%- attributes.keys.each do |attribute| -%>
|
20
|
+
property :<%= attribute %> do
|
21
|
+
key :type, :string
|
25
22
|
end
|
23
|
+
<%- end -%>
|
26
24
|
end
|
27
25
|
<%- end -%>
|
28
26
|
<%- if relationships -%>
|
@@ -60,13 +58,11 @@ class <%= model.camelcase %>
|
|
60
58
|
end
|
61
59
|
<%- if attributes -%>
|
62
60
|
property :attributes do
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
key :type, :string
|
67
|
-
end
|
68
|
-
<%- end -%>
|
61
|
+
<%- attributes.keys.each do |attribute| -%>
|
62
|
+
property :<%= attribute %> do
|
63
|
+
key :type, :string
|
69
64
|
end
|
65
|
+
<%- end -%>
|
70
66
|
end
|
71
67
|
<%- end -%>
|
72
68
|
<%- if relationships -%>
|
@@ -103,13 +99,11 @@ class <%= model.camelcase %>
|
|
103
99
|
end
|
104
100
|
<%- if attributes -%>
|
105
101
|
property :attributes do
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
key :type, :string
|
110
|
-
end
|
111
|
-
<%- end -%>
|
102
|
+
<%- attributes.keys.each do |attribute| -%>
|
103
|
+
property :<%= attribute %> do
|
104
|
+
key :type, :string
|
112
105
|
end
|
106
|
+
<%- end -%>
|
113
107
|
end
|
114
108
|
<%- end -%>
|
115
109
|
<%- if relationships -%>
|
@@ -146,13 +140,11 @@ class <%= model.camelcase %>
|
|
146
140
|
end
|
147
141
|
<%- if attributes -%>
|
148
142
|
property :attributes do
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
key :type, :string
|
153
|
-
end
|
154
|
-
<%- end -%>
|
143
|
+
<%- attributes.keys.each do |attribute| -%>
|
144
|
+
property :<%= attribute %> do
|
145
|
+
key :type, :string
|
155
146
|
end
|
147
|
+
<%- end -%>
|
156
148
|
end
|
157
149
|
<%- end -%>
|
158
150
|
<%- if relationships -%>
|
@@ -181,13 +173,11 @@ class <%= model.camelcase %>
|
|
181
173
|
end
|
182
174
|
<%- if attributes -%>
|
183
175
|
property :attributes do
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
key :type, :string
|
188
|
-
end
|
189
|
-
<%- end -%>
|
176
|
+
<%- attributes.keys.each do |attribute| -%>
|
177
|
+
property :<%= attribute %> do
|
178
|
+
key :type, :string
|
190
179
|
end
|
180
|
+
<%- end -%>
|
191
181
|
end
|
192
182
|
<%- end -%>
|
193
183
|
<%- if relationships -%>
|
@@ -203,13 +193,11 @@ class <%= model.camelcase %>
|
|
203
193
|
key :type, :string
|
204
194
|
end
|
205
195
|
<%- elsif relationship[1].class.to_s == "JSONAPI::Relationship::ToMany" -%>
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
key :type, :string
|
212
|
-
end
|
196
|
+
property :type do
|
197
|
+
key :type, :string
|
198
|
+
end
|
199
|
+
property :id do
|
200
|
+
key :type, :string
|
213
201
|
end
|
214
202
|
<%- end -%>
|
215
203
|
end
|
@@ -227,13 +215,11 @@ class <%= model.camelcase %>
|
|
227
215
|
end
|
228
216
|
<%- if attributes -%>
|
229
217
|
property :attributes do
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
key :type, :string
|
234
|
-
end
|
235
|
-
<%- end -%>
|
218
|
+
<%- attributes.keys.each do |attribute| -%>
|
219
|
+
property :<%= attribute %> do
|
220
|
+
key :type, :string
|
236
221
|
end
|
222
|
+
<%- end -%>
|
237
223
|
end
|
238
224
|
<%- end -%>
|
239
225
|
end
|
@@ -255,13 +241,11 @@ class <%= model.camelcase %>
|
|
255
241
|
end
|
256
242
|
<%- if relation_attributes -%>
|
257
243
|
property :attributes do
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
key :type, :string
|
262
|
-
end
|
263
|
-
<%- end -%>
|
244
|
+
<%- relation_attributes.keys.each do |attribute| -%>
|
245
|
+
property :<%= attribute %> do
|
246
|
+
key :type, :string
|
264
247
|
end
|
248
|
+
<%- end -%>
|
265
249
|
end
|
266
250
|
<%- end -%>
|
267
251
|
<%- if relation_relationships -%>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jsonapi-swagger-blocks-generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gleydson Tavares
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|