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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f752d6e331ad40ab0e7d5feb816791d087d75560
4
- data.tar.gz: 237941d762a4392b969669ba1669371c47e009a8
3
+ metadata.gz: 742c2f935861a3ea96177cc137ef93f18f36e8e5
4
+ data.tar.gz: c39792ac492988b5c7d9c0bbdf5da8d12456be6c
5
5
  SHA512:
6
- metadata.gz: aef7de674a572c5d90943882e8086dfe4a58b89a70b75e694be931888f743ecefeac0741eccabdce1a5870bc0a2ed9b30038428b1cd781c90fad1fbfadef8edd
7
- data.tar.gz: 0fe65439073ae47606ec9c0dd9afc3f71cc054b02d65021269580149207e4e2a74f8a47b34c904cab4814b965dd702e46390abdb2b2ae0c6cdcef77888b02daa
6
+ metadata.gz: 8caaf3f23d5f3fc94b12b14ca48d198cff2faa218d5dd02cbdced2dd7b23d3d4ebb9a080372dbfe0d82fc068b063f8cc2205934e8f246b36aeb0697bc5bbcd98
7
+ data.tar.gz: 3093590ed562650781c624c91a9873da4253d112ab16a24d365f6e425bbcebba75f29d15e30ea0373e66853bcdb3fe24e6686b0f8387f1b598e2e23963bc2dc6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jsonapi-swagger-blocks-generator (0.1.0)
4
+ jsonapi-swagger-blocks-generator (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # JSONAPI Swagger Blocks Generator
2
2
 
3
- [![Maintainability](https://api.codeclimate.com/v1/badges/2de3e3c4e8fb1543a687/maintainability)](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> [![Build Status](https://travis-ci.org/g13ydson/jsonapi-swagger-blocks-generator.svg?branch=master)](https://travis-ci.org/g13ydson/jsonapi-swagger-blocks-generator)
3
+ [![Gem Version](https://badge.fury.io/rb/jsonapi-swagger-blocks-generator.svg)](https://badge.fury.io/rb/jsonapi-swagger-blocks-generator) [![Gem Version](https://badge.fury.io/rb/jsonapi-swagger-blocks-generator.svg)](https://badge.fury.io/rb/jsonapi-swagger-blocks-generator) [![Maintainability](https://api.codeclimate.com/v1/badges/2de3e3c4e8fb1543a687/maintainability)](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> [![Build Status](https://travis-ci.org/g13ydson/jsonapi-swagger-blocks-generator.svg?branch=master)](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
- items do
20
- <%- attributes.keys.each do |attribute| -%>
21
- property :<%= attribute %> do
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
- items do
64
- <%- attributes.keys.each do |attribute| -%>
65
- property :<%= attribute %> do
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
- items do
107
- <%- attributes.keys.each do |attribute| -%>
108
- property :<%= attribute %> do
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
- items do
150
- <%- attributes.keys.each do |attribute| -%>
151
- property :<%= attribute %> do
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
- items do
185
- <%- attributes.keys.each do |attribute| -%>
186
- property :<%= attribute %> do
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
- items do
207
- property :type do
208
- key :type, :string
209
- end
210
- property :id do
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
- items do
231
- <%- attributes.keys.each do |attribute| -%>
232
- property :<%= attribute %> do
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
- items do
259
- <%- relation_attributes.keys.each do |attribute| -%>
260
- property :<%= attribute %> do
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 -%>
@@ -4,7 +4,7 @@ module Jsonapi
4
4
  module Swagger
5
5
  module Blocks
6
6
  module Generator
7
- VERSION = "0.1.1".freeze
7
+ VERSION = "0.1.2".freeze
8
8
  end
9
9
  end
10
10
  end
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.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-08-20 00:00:00.000000000 Z
11
+ date: 2018-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler