innologix 0.0.18 → 0.0.19
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 +4 -0
- data/lib/innologix/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 411e4ed094778149dad9f4340d735bf354ccf3ef
|
4
|
+
data.tar.gz: 6715ec00ae2b63b08e1d639f4672c207c6042ed9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b86ac9eb452e36736f26ba6fdbfb2c962cf86b5f7f2383a5bc2938ec9c85d5735a81b00d7587c766eeb65c0bee1881dab9d03b366f02e06b09428e1c7606207
|
7
|
+
data.tar.gz: ad0b84b11196660d8c5694f9373d196c71218dcd184bc2e4dc2b39145ea2ba435c83cef78eeea33e90a44a2198a0d6f3798106a5528456daa484153fc6fd64b8
|
data/lib/innologix/device.rb
CHANGED
@@ -3,6 +3,8 @@ module Innologix
|
|
3
3
|
attr_accessor :id
|
4
4
|
attr_accessor :name
|
5
5
|
attr_accessor :address
|
6
|
+
attr_accessor :mac_address
|
7
|
+
attr_accessor :interval
|
6
8
|
attr_accessor :fwd_proto
|
7
9
|
attr_accessor :status
|
8
10
|
attr_accessor :device_type_id
|
@@ -131,6 +133,8 @@ module Innologix
|
|
131
133
|
device.id = attributes[:id]
|
132
134
|
device.name = attributes[:name]
|
133
135
|
device.address = attributes[:address]
|
136
|
+
device.mac_address = attributes[:mac_address]
|
137
|
+
device.interval = attributes[:interval]
|
134
138
|
device.fwd_proto = attributes[:fwd_proto]
|
135
139
|
device.status = attributes[:status]
|
136
140
|
device.device_type_id = attributes[:device_type_id]
|
data/lib/innologix/version.rb
CHANGED