innologix 0.0.41 → 0.0.42
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 +4 -4
- data/lib/innologix/device.rb +5 -0
- data/lib/innologix/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 196b9f08016c20ccd41fd79599264121c6b58dfb
|
4
|
+
data.tar.gz: 2ffda6dd7411a21ecff62eb06f1c9a1744fe4638
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db0b4db69a950b59d45cef5fa89a925e7a8eab8080b9aa51a7c0bd60f7bbf867d576d27463fbf0e0603b27284214633e3152c0a283245cfeb7fc1c2d091e2673
|
7
|
+
data.tar.gz: 958b53ac1e0ea1fe68f7e16353249ce85087fe3b043a9b1f2322a531976434fb3a3dca31da5e3326fe36962714a21be0ee936366773f10f2051c51512fa1338b
|
data/lib/innologix/device.rb
CHANGED
@@ -20,6 +20,7 @@ module Innologix
|
|
20
20
|
attr_accessor :group
|
21
21
|
attr_accessor :m2m
|
22
22
|
attr_accessor :device_type
|
23
|
+
attr_accessor :sla_group
|
23
24
|
|
24
25
|
attr_accessor :client
|
25
26
|
attr_accessor :error
|
@@ -204,6 +205,10 @@ module Innologix
|
|
204
205
|
if attributes[:device_type] != nil
|
205
206
|
device.device_type = DeviceType.new(attributes[:device_type])
|
206
207
|
end
|
208
|
+
|
209
|
+
if attributes[:sla_group] != nil
|
210
|
+
device.sla_group = SlaGroup.new(attributes[:sla_group])
|
211
|
+
end
|
207
212
|
device
|
208
213
|
end
|
209
214
|
end
|
data/lib/innologix/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: innologix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.42
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SkyLab Innogram
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-09-
|
11
|
+
date: 2018-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|