zabbixapi 0.5.1b11 → 0.5.1b12
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.
@@ -1,20 +1,12 @@
|
|
1
|
-
class Hash
|
2
|
-
|
3
|
-
def deep_include?(sub_hash)
|
4
|
-
sub_hash.keys.all? do |key|
|
5
|
-
self.has_key?(key) && if sub_hash[key].is_a?(Hash)
|
6
|
-
self[key].is_a?(Hash) && self[key].deep_include?(sub_hash[key])
|
7
|
-
else
|
8
|
-
self[key] == sub_hash[key]
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
end
|
14
|
-
|
15
1
|
class ZabbixApi
|
16
2
|
class Basic
|
17
3
|
|
4
|
+
def hash_equals?(a, b)
|
5
|
+
hash1 = a.merge(b)
|
6
|
+
hash2 = b.merge(a)
|
7
|
+
hash1 == hash2
|
8
|
+
end
|
9
|
+
|
18
10
|
def log(message)
|
19
11
|
puts "#{message}" if @client.options[:debug]
|
20
12
|
end
|
@@ -34,7 +34,11 @@ class ZabbixApi
|
|
34
34
|
dump = symbolize_keys(item) if item[key].to_i == data[key.to_sym].to_i
|
35
35
|
end
|
36
36
|
|
37
|
-
|
37
|
+
puts "dump: #{dump}"
|
38
|
+
puts "data: #{data}"
|
39
|
+
|
40
|
+
if hash_equals?(dump, data) #dump.deep_include?(data)
|
41
|
+
puts "eq keys!"
|
38
42
|
item_id
|
39
43
|
else
|
40
44
|
data_update = array_flag ? [data] : data
|
data/lib/zabbixapi/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zabbixapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1b12
|
5
5
|
prerelease: 5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -79,7 +79,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
79
79
|
version: '0'
|
80
80
|
segments:
|
81
81
|
- 0
|
82
|
-
hash:
|
82
|
+
hash: 2277446654334313109
|
83
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
84
|
none: false
|
85
85
|
requirements:
|