SensorStream 0.0.2 → 0.0.3
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/SensorStream.rb +2 -2
- 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: a0c287c4b943c818fcd69533090df59c8894a765
|
4
|
+
data.tar.gz: 0dedfbedbc02e2bc12c331a3f4a05dd9c8404589
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b413eb5e7582b48118e752df95ba12fef37e2ab656987956bf86145bf4e4c6f36a24ef1789cef50ee6b15b09ccabf2d01f7be06b946271406fc4eabc548e67c8
|
7
|
+
data.tar.gz: dffa95891cbab315f46285e0aefd0e1301f4cbfe9861ac3286328595f5be1d2b581a89e5d22e41f67abc537c0c4e5fb38b22bfe46b07799976bca6da78a83d26
|
data/lib/SensorStream.rb
CHANGED
@@ -110,8 +110,8 @@ module SensorStream
|
|
110
110
|
class Device
|
111
111
|
# Each of the qualities of a device are immutable.
|
112
112
|
# The sensor stream API does not support changing device attributes.
|
113
|
-
attr_reader :user_name, :device_name, :
|
114
|
-
attr_accessor :streams
|
113
|
+
attr_reader :user_name, :device_name, :description
|
114
|
+
attr_accessor :streams, :key
|
115
115
|
|
116
116
|
def initialize(newUserName, newDeviceName, newDescription, newStreams = [], newKey = "")
|
117
117
|
@key = newKey
|