servactory 2.9.0.rc6 → 2.9.0.rc7

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: c6a762f7cbe5f9ac88c14ef817109ee6b1e1f29e4c404ddd73b20520fd48705e
4
- data.tar.gz: 1205b74201b08c5191813f9c02e5da954609d20d66d9bbdb7815bbfeaa01a4c6
3
+ metadata.gz: fc0459a342f5c414049d7076a5528caffde75708da4db7dfbf87fe1fe391d9c1
4
+ data.tar.gz: b7c803517e06af791bd0fa3d3807b802b404603a1d0f7555d72349e5341c55c7
5
5
  SHA512:
6
- metadata.gz: c3a02731634fa02a71318580051704310519fcbbee287ecadfa15f31ae567e4015b08d30cfb30513d4a21df75a5457a22aec22a4afc46350401c5f1a43dda5fc
7
- data.tar.gz: 6e157f714eab85943554d2a02a061b82b681c85ce1b1dcaab396d0f67e209db7ab40c334047cb849b500be1d8794f02d73e1d93267d3c27f1707ca3f522f250e
6
+ metadata.gz: c9cf3ac1cc28007ab25711d1586f8ebfecc513f73858eec2cf46f7f3c9ff2f7a18b0a2d5ddb313ef111c00433194fb563158bb659b93a38fa97ae0e5e6ac9246
7
+ data.tar.gz: b76e44154fb22358c0b10d8c80909430d74d524c3a7a6013a669e2279244d9343d31007cc67a7d702284650f805a837f9f97a714abf6d9dc3de2f42854848199
@@ -38,7 +38,7 @@ module Servactory
38
38
  @nested = values
39
39
  end
40
40
 
41
- chain :with do |value|
41
+ chain :contains do |value|
42
42
  @value = value
43
43
  end
44
44
 
@@ -50,6 +50,12 @@ module Servactory
50
50
  def match_for(actual, output_name)
51
51
  given_value = actual.public_send(output_name)
52
52
 
53
+ if defined?(@instance_of)
54
+ expect(given_value).to(
55
+ RSpec::Matchers::BuiltIn::BeAnInstanceOf.new(@instance_of)
56
+ )
57
+ end
58
+
53
59
  if defined?(@nested) && @nested.present?
54
60
  @nested.each do |method_name|
55
61
  next unless given_value.respond_to?(method_name)
@@ -58,16 +64,17 @@ module Servactory
58
64
  end
59
65
  end
60
66
 
67
+ return true if !defined?(@value) && @value.nil?
68
+
61
69
  expect(given_value).to(
62
- if defined?(@instance_of)
63
- RSpec::Matchers::BuiltIn::BeAnInstanceOf.new(@instance_of)
64
- elsif @value.is_a?(Array)
70
+ case @value
71
+ when Array
65
72
  RSpec::Matchers::BuiltIn::ContainExactly.new(@value)
66
- elsif @value.is_a?(Hash)
73
+ when Hash
67
74
  RSpec::Matchers::BuiltIn::Match.new(@value)
68
- elsif @value.is_a?(TrueClass) || @value.is_a?(FalseClass)
75
+ when TrueClass, FalseClass
69
76
  RSpec::Matchers::BuiltIn::Equal.new(@value)
70
- elsif @value.is_a?(NilClass)
77
+ when NilClass
71
78
  RSpec::Matchers::BuiltIn::BeNil.new(@value)
72
79
  else
73
80
  RSpec::Matchers::BuiltIn::Eq.new(@value)
@@ -5,7 +5,7 @@ module Servactory
5
5
  MAJOR = 2
6
6
  MINOR = 9
7
7
  PATCH = 0
8
- PRE = "rc6"
8
+ PRE = "rc7"
9
9
 
10
10
  STRING = [MAJOR, MINOR, PATCH, PRE].compact.join(".")
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: servactory
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0.rc6
4
+ version: 2.9.0.rc7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Sokolov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-13 00:00:00.000000000 Z
11
+ date: 2024-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport