rspec-rails-api 0.8.1 → 0.8.3
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/CHANGELOG.md +12 -0
- data/Gemfile.lock +1 -1
- data/lib/rspec/rails/api/open_api_renderer.rb +4 -2
- data/lib/rspec/rails/api/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6196620d9b256a8ab9b95a82618671a1b3e12e26b01f1b99238512938fcab25
|
|
4
|
+
data.tar.gz: d6a70286ac640e5d6f2e0030316b786ecff6642ea3acb1c5ce70d31f6ece3fde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1e3e62a5a7d3b37c80b5fee37bcaed6a3d8c2cbe5de560b35c14f52e556e87c25eb980d03c7154a1ad809f1b4ef5974faa85d3c7edfd77be03cb8a1bb82c3e1
|
|
7
|
+
data.tar.gz: cf8e1745a4f9498062dd26495162c3a4f2ac6244850e0142106f0e27f2b4673393caf05bf1a647e55b3424901a02e32b9ab9cea32f387aaf3eac27e855f33709
|
data/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,18 @@ Maintenance, in case of rework, dependencies change
|
|
|
18
18
|
|
|
19
19
|
## [Unreleased]
|
|
20
20
|
|
|
21
|
+
## [0.8.3] - 2024-11-22
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Fixed documentation generation of the description on objects and arrays
|
|
26
|
+
|
|
27
|
+
## [0.8.2] - 2024-11-22
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- Fixed documentation generation of object's attributes when they are not passed as reference.
|
|
32
|
+
|
|
21
33
|
## [0.8.1] - 2024-10-16
|
|
22
34
|
|
|
23
35
|
### Fixed
|
data/Gemfile.lock
CHANGED
|
@@ -234,10 +234,12 @@ module RSpec
|
|
|
234
234
|
property[:items] = { type: field.attributes }
|
|
235
235
|
elsif field.type == :object && field.attributes.is_a?(Symbol)
|
|
236
236
|
property = { '$ref' => "#/components/schemas/#{field.attributes}" }
|
|
237
|
+
elsif field.type == :object && field.attributes
|
|
238
|
+
property = { type: :object, description: field.description, properties: process_entity(field.attributes)[:properties] }
|
|
237
239
|
elsif field.type == :array && field.attributes.is_a?(Symbol)
|
|
238
|
-
property = { type: :array, items: { '$ref' => "#/components/schemas/#{field.attributes}" } }
|
|
240
|
+
property = { type: :array, description: field.description, items: { '$ref' => "#/components/schemas/#{field.attributes}" } }
|
|
239
241
|
elsif field.type == :array && field.attributes
|
|
240
|
-
property = { type: :array, items: process_entity(field.attributes) }
|
|
242
|
+
property = { type: :array, description: field.description, items: process_entity(field.attributes) }
|
|
241
243
|
end
|
|
242
244
|
|
|
243
245
|
required.push name unless field.required == false
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-rails-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Manuel Tancoigne
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
Create acceptance tests to check the Rails API responses and generate
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
72
|
+
rubygems_version: 3.3.7
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Tests standard Rails API responses and generate doc
|