rspec-rails-api 0.8.0 → 0.8.1

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: bb2d9a9837952843bbacdc2b355dd3e1625060a114f609cf1f3396e33b5132d2
4
- data.tar.gz: f9f914d1a513f6a6453477cfa68f79b0842f7a6002a5ce55a97bd7705d068749
3
+ metadata.gz: 5f3ec1cf7d649accd5699f84d2f2e7162e830bc4071b50433dc179d69028451d
4
+ data.tar.gz: b612884d3574e170f737fc080e58b19f7ca4485104b14a3ca884570e5e3ac0a5
5
5
  SHA512:
6
- metadata.gz: a4514ec049d648ccd1ad00a441a0f1dd208f53b7e1a769efcbb46e8feb0b086cf0b336da138b643986292f1f04d0afe0827f2784f5faa2e7cb5ed4746d611c0d
7
- data.tar.gz: a9c1959eaa5596f6b1501fe11f0a325481efa074b6163edbd7f922bf423130f3171f19c3158d317514a54adeea6ffb29f9b8fcc4287e3c25165a217ec0397f37
6
+ metadata.gz: 35cd6e4ed48cd3cf05e950c8a98dcc030efdf82da422803818082d4af7eeb936bac6a6ae6341fc6495dbc944797212750fc14384d3aa73e78e81e0588724d01f
7
+ data.tar.gz: 01daf64801e027024566367126f4f2a3767be1957932d540384517e9a1369296bfa649b5473badab670969416e380f8ab6532f88c2deffb4790b6e750d7afbda
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.1] - 2024-10-16
22
+
23
+ ### Fixed
24
+
25
+ - Fixed expansion of nested object attributes defined with a symbol
26
+
21
27
  ## [0.8.0] - 2024-09-28
22
28
 
23
29
  ### Added
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rspec-rails-api (0.8.0)
4
+ rspec-rails-api (0.8.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -41,9 +41,11 @@ module RSpec
41
41
  next unless %i[array object].include? config[:type]
42
42
 
43
43
  attribute = config[:attributes]
44
- next unless attribute.is_a? Symbol
45
-
46
- hash[field][:attributes] = expand_attribute attribute, entities
44
+ hash[field][:attributes] = if attribute.is_a? Symbol
45
+ expand_attribute attribute, entities
46
+ elsif @fields[field].attributes
47
+ @fields[field].attributes.expand_with entities
48
+ end
47
49
  end
48
50
  end
49
51
 
@@ -3,7 +3,7 @@
3
3
  module RSpec
4
4
  module Rails
5
5
  module Api
6
- VERSION = '0.8.0'
6
+ VERSION = '0.8.1'
7
7
  end
8
8
  end
9
9
  end
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.0
4
+ version: 0.8.1
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-09-28 00:00:00.000000000 Z
11
+ date: 2024-10-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Create acceptance tests to check the Rails API responses and generate