eyes_core 3.17.9 → 3.17.10
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f8a78d42ef8b1b82f7ed13b3fb4d309e6415d45c4c9c9cf4b3ee016f5e6e106
|
4
|
+
data.tar.gz: 5e25e347613a02d1dac54e9fb6d10e805401aba89ecccb0c617bedafba524659
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1acc7b42d07e261e743f45f9bda93236e19cef7b6ea69bf49ca3c8f7e1707ef531b60061b28fef7a82409749417f79d2cbc318acc9515a0ce14f28039583d377
|
7
|
+
data.tar.gz: aa47f28301bfd0505ff172a515115ac3ce3b65829a4fe87b49cbacb3332775397cff906b9cbf1be7fd3ed0232d26192b5b28ce50c5773b953c8c6483a820822b
|
@@ -14,7 +14,11 @@ module Applitools
|
|
14
14
|
if self.class.respond_to? :default_config
|
15
15
|
default_config = self.class.default_config
|
16
16
|
default_config.keys.each do |k|
|
17
|
-
|
17
|
+
unless default_config[k].nil?
|
18
|
+
send "#{k}=", default_config[k].deep_clone if default_config[k].respond_to?(:deep_clone)
|
19
|
+
send "#{k}=", default_config[k].clone if default_config[k].respond_to?(:clone)
|
20
|
+
send "#{k}=", default_config[k].clone unless default_config[k].respond_to?(:clone) || default_config[k].respond_to?(:deep_clone)
|
21
|
+
end
|
18
22
|
end
|
19
23
|
end
|
20
24
|
end
|
@@ -58,6 +58,18 @@ module Applitools
|
|
58
58
|
self.accessibility_settings = value
|
59
59
|
end
|
60
60
|
|
61
|
+
def ==(other)
|
62
|
+
return true if other.object_id == object_id
|
63
|
+
result = true
|
64
|
+
self.class.json_methods.keys.each do |f|
|
65
|
+
result = send(f) == other.send(f)
|
66
|
+
break unless result
|
67
|
+
end
|
68
|
+
result
|
69
|
+
end
|
70
|
+
|
71
|
+
alias deep_clone deep_dup
|
72
|
+
|
61
73
|
class Exact
|
62
74
|
include Applitools::Jsonable
|
63
75
|
json_fields :MinDiffIntensity, :MinDiffWidth, :MinDiffHeight, :MatchThreshold
|
@@ -68,7 +68,7 @@ module Applitools
|
|
68
68
|
@need_convert_content_regions_coordinates = false
|
69
69
|
@need_convert_layout_regions_coordinates = false
|
70
70
|
@need_convert_accessibility_regions_coordinates = false
|
71
|
-
self.default_image_match_settings = default_image_match_settings.
|
71
|
+
self.default_image_match_settings = default_image_match_settings.nil? ? Applitools::ImageMatchSettings.new : default_image_match_settings.deep_dup
|
72
72
|
end
|
73
73
|
|
74
74
|
def screenshot
|
data/lib/applitools/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eyes_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.17.
|
4
|
+
version: 3.17.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Applitools Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oily_png
|