rspec-rails-api 0.8.2 → 0.8.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 331b6d7af2333dde18fea74c45a4e07b01fae9d276540298eed0e7505423ae51
4
- data.tar.gz: 1691d15f501cd1d9fd56059b3fea6c9c5b40e2fa21e29c5912ca30c34713b4ce
3
+ metadata.gz: a6196620d9b256a8ab9b95a82618671a1b3e12e26b01f1b99238512938fcab25
4
+ data.tar.gz: d6a70286ac640e5d6f2e0030316b786ecff6642ea3acb1c5ce70d31f6ece3fde
5
5
  SHA512:
6
- metadata.gz: ef79c2fba59a70e1dbd9406360aa321bd59d289da466963cb54c74078dd1b60ad632e711491dfd4e869ce0fe912e8b4d0f30cdf125333ea49bb20691f3f354a9
7
- data.tar.gz: bdc2ec91fcea8cd0b3a27bef42f9d83e7a6527c7ad3b4f096066f78eec50fccec35c2db23dbd067f5353dc4d1fed1ee5baf3a70118194a053538cca6f9f951ce
6
+ metadata.gz: f1e3e62a5a7d3b37c80b5fee37bcaed6a3d8c2cbe5de560b35c14f52e556e87c25eb980d03c7154a1ad809f1b4ef5974faa85d3c7edfd77be03cb8a1bb82c3e1
7
+ data.tar.gz: cf8e1745a4f9498062dd26495162c3a4f2ac6244850e0142106f0e27f2b4673393caf05bf1a647e55b3424901a02e32b9ab9cea32f387aaf3eac27e855f33709
data/CHANGELOG.md CHANGED
@@ -18,6 +18,12 @@ 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
+
21
27
  ## [0.8.2] - 2024-11-22
22
28
 
23
29
  ### Fixed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rspec-rails-api (0.8.2)
4
+ rspec-rails-api (0.8.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -235,11 +235,11 @@ module RSpec
235
235
  elsif field.type == :object && field.attributes.is_a?(Symbol)
236
236
  property = { '$ref' => "#/components/schemas/#{field.attributes}" }
237
237
  elsif field.type == :object && field.attributes
238
- property = { type: :object, properties: process_entity(field.attributes)[:properties] }
238
+ property = { type: :object, description: field.description, properties: process_entity(field.attributes)[:properties] }
239
239
  elsif field.type == :array && field.attributes.is_a?(Symbol)
240
- property = { type: :array, items: { '$ref' => "#/components/schemas/#{field.attributes}" } }
240
+ property = { type: :array, description: field.description, items: { '$ref' => "#/components/schemas/#{field.attributes}" } }
241
241
  elsif field.type == :array && field.attributes
242
- property = { type: :array, items: process_entity(field.attributes) }
242
+ property = { type: :array, description: field.description, items: process_entity(field.attributes) }
243
243
  end
244
244
 
245
245
  required.push name unless field.required == false
@@ -3,7 +3,7 @@
3
3
  module RSpec
4
4
  module Rails
5
5
  module Api
6
- VERSION = '0.8.2'
6
+ VERSION = '0.8.3'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-rails-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Tancoigne