explicit 0.2.17 → 0.2.18
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/lib/explicit/documentation/output/swagger.rb +3 -3
- data/lib/explicit/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: 336334a1c2bd5bdde4580b2b3712618a7edacf3edfec03d1f96c44f704b09c3a
|
4
|
+
data.tar.gz: d756447ce81a13fb7bb7d722bdf7b89221bd556d16ea79bbe2dd39af3bda5e05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e574720e293d3bd0b1ed92a0a19dd83a8b1aa4fea48a2e2b3c1d5cffc2ead2a8d87bebabd5815a6d9752b4dee11a70f37a32f438f0c635e8b7f04015802d597d
|
7
|
+
data.tar.gz: d8c7391dd7b6f0a769d885984a2bb823784d7423540e6b07a4e2136d4ac2fe50e42ecc42b120bc3f687244755bc12539278d5f73f21e0c85e8f01325c973606c
|
@@ -158,7 +158,7 @@ module Explicit::Documentation::Output
|
|
158
158
|
in: "header",
|
159
159
|
required: type.required?,
|
160
160
|
schema: type.swagger_schema,
|
161
|
-
style: "
|
161
|
+
style: "form"
|
162
162
|
}
|
163
163
|
end
|
164
164
|
|
@@ -169,7 +169,7 @@ module Explicit::Documentation::Output
|
|
169
169
|
in: "path",
|
170
170
|
required: type.required?,
|
171
171
|
schema: type.swagger_schema,
|
172
|
-
style: "
|
172
|
+
style: "form"
|
173
173
|
}
|
174
174
|
end
|
175
175
|
|
@@ -180,7 +180,7 @@ module Explicit::Documentation::Output
|
|
180
180
|
in: "query",
|
181
181
|
required: type.required?,
|
182
182
|
schema: type.swagger_schema,
|
183
|
-
style: "
|
183
|
+
style: "form"
|
184
184
|
}
|
185
185
|
end
|
186
186
|
|
data/lib/explicit/version.rb
CHANGED